org-agenda.el 396 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2019 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. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  48. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  49. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  50. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  51. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-french-date-string "cal-french" (&optional date))
  54. (declare-function calendar-goto-date "cal-move" (date))
  55. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  56. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  57. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  58. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  59. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  60. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  61. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  62. (declare-function calendar-check-holidays "holidays" (date))
  63. (declare-function org-columns-remove-overlays "org-colview" ())
  64. (declare-function org-datetree-find-date-create "org-datetree"
  65. (date &optional keep-restriction))
  66. (declare-function org-columns-quit "org-colview" ())
  67. (declare-function diary-date-display-form "diary-lib" (&optional type))
  68. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  69. (declare-function org-habit-insert-consistency-graphs
  70. "org-habit" (&optional line))
  71. (declare-function org-is-habit-p "org-habit" (&optional pom))
  72. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  73. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  74. (declare-function org-agenda-columns "org-colview" ())
  75. (declare-function org-add-archive-files "org-archive" (files))
  76. (declare-function org-capture "org-capture" (&optional goto keys))
  77. (defvar calendar-mode-map)
  78. (defvar org-clock-current-task)
  79. (defvar org-current-tag-alist)
  80. (defvar org-mobile-force-id-on-agenda-items)
  81. (defvar org-habit-show-habits)
  82. (defvar org-habit-show-habits-only-for-today)
  83. (defvar org-habit-show-all-today)
  84. (defvar org-habit-scheduled-past-days)
  85. ;; Defined somewhere in this file, but used before definition.
  86. (defvar org-agenda-buffer-name "*Org Agenda*")
  87. (defvar org-agenda-overriding-header nil)
  88. (defvar org-agenda-title-append nil)
  89. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  90. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  91. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  92. (defvar org-agenda-undo-list nil
  93. "List of undoable operations in the agenda since last refresh.")
  94. (defvar org-agenda-pending-undo-list nil
  95. "In a series of undo commands, this is the list of remaining undo items.")
  96. (defcustom org-agenda-confirm-kill 1
  97. "When set, remote killing from the agenda buffer needs confirmation.
  98. When t, a confirmation is always needed. When a number N, confirmation is
  99. only needed when the text to be killed contains more than N non-white lines."
  100. :group 'org-agenda
  101. :type '(choice
  102. (const :tag "Never" nil)
  103. (const :tag "Always" t)
  104. (integer :tag "When more than N lines")))
  105. (defcustom org-agenda-compact-blocks nil
  106. "Non-nil means make the block agenda more compact.
  107. This is done globally by leaving out lines like the agenda span
  108. name and week number or the separator lines."
  109. :group 'org-agenda
  110. :type 'boolean)
  111. (defcustom org-agenda-block-separator ?=
  112. "The separator between blocks in the agenda.
  113. If this is a string, it will be used as the separator, with a newline added.
  114. If it is a character, it will be repeated to fill the window width.
  115. If nil the separator is disabled. In `org-agenda-custom-commands' this
  116. addresses the separator between the current and the previous block."
  117. :group 'org-agenda
  118. :type '(choice
  119. (const :tag "Disabled" nil)
  120. (character)
  121. (string)))
  122. (defgroup org-agenda-export nil
  123. "Options concerning exporting agenda views in Org mode."
  124. :tag "Org Agenda Export"
  125. :group 'org-agenda)
  126. (defcustom org-agenda-with-colors t
  127. "Non-nil means use colors in agenda views."
  128. :group 'org-agenda-export
  129. :type 'boolean)
  130. (defcustom org-agenda-exporter-settings nil
  131. "Alist of variable/value pairs that should be active during agenda export.
  132. This is a good place to set options for ps-print and for htmlize.
  133. Note that the way this is implemented, the values will be evaluated
  134. before assigned to the variables. So make sure to quote values you do
  135. *not* want evaluated, for example
  136. (setq org-agenda-exporter-settings
  137. \\='((ps-print-color-p \\='black-white)))"
  138. :group 'org-agenda-export
  139. :type '(repeat
  140. (list
  141. (variable)
  142. (sexp :tag "Value"))))
  143. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  144. "Hook run in a temporary buffer before writing the agenda to an export file.
  145. A useful function for this hook is `org-agenda-add-entry-text'."
  146. :group 'org-agenda-export
  147. :type 'hook
  148. :options '(org-agenda-add-entry-text))
  149. (defcustom org-agenda-add-entry-text-maxlines 0
  150. "Maximum number of entry text lines to be added to agenda.
  151. This is only relevant when `org-agenda-add-entry-text' is part of
  152. `org-agenda-before-write-hook', which is the default.
  153. When this is 0, nothing will happen. When it is greater than 0, it
  154. specifies the maximum number of lines that will be added for each entry
  155. that is listed in the agenda view.
  156. Note that this variable is not used during display, only when exporting
  157. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  158. and `org-agenda-entry-text-maxlines'."
  159. :group 'org-agenda
  160. :type 'integer)
  161. (defcustom org-agenda-add-entry-text-descriptive-links t
  162. "Non-nil means export org-links as descriptive links in agenda added text.
  163. This variable applies to the text added to the agenda when
  164. `org-agenda-add-entry-text-maxlines' is larger than 0.
  165. When this variable nil, the URL will (also) be shown."
  166. :group 'org-agenda
  167. :type 'boolean)
  168. (defcustom org-agenda-export-html-style nil
  169. "The style specification for exported HTML Agenda files.
  170. If this variable contains a string, it will replace the default <style>
  171. section as produced by `htmlize'.
  172. Since there are different ways of setting style information, this variable
  173. needs to contain the full HTML structure to provide a style, including the
  174. surrounding HTML tags. The style specifications should include definitions
  175. the fonts used by the agenda, here is an example:
  176. <style type=\"text/css\">
  177. p { font-weight: normal; color: gray; }
  178. .org-agenda-structure {
  179. font-size: 110%;
  180. color: #003399;
  181. font-weight: 600;
  182. }
  183. .org-todo {
  184. color: #cc6666;
  185. font-weight: bold;
  186. }
  187. .org-agenda-done {
  188. color: #339933;
  189. }
  190. .org-done {
  191. color: #339933;
  192. }
  193. .title { text-align: center; }
  194. .todo, .deadline { color: red; }
  195. .done { color: green; }
  196. </style>
  197. or, if you want to keep the style in a file,
  198. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  199. As the value of this option simply gets inserted into the HTML <head> header,
  200. you can \"misuse\" it to also add other text to the header."
  201. :group 'org-agenda-export
  202. :group 'org-export-html
  203. :type '(choice
  204. (const nil)
  205. (string)))
  206. (defcustom org-agenda-persistent-filter nil
  207. "When set, keep filters from one agenda view to the next."
  208. :group 'org-agenda
  209. :type 'boolean)
  210. (defgroup org-agenda-custom-commands nil
  211. "Options concerning agenda views in Org mode."
  212. :tag "Org Agenda Custom Commands"
  213. :group 'org-agenda)
  214. (defconst org-sorting-choice
  215. '(choice
  216. (const time-up) (const time-down)
  217. (const timestamp-up) (const timestamp-down)
  218. (const scheduled-up) (const scheduled-down)
  219. (const deadline-up) (const deadline-down)
  220. (const ts-up) (const ts-down)
  221. (const tsia-up) (const tsia-down)
  222. (const category-keep) (const category-up) (const category-down)
  223. (const tag-down) (const tag-up)
  224. (const priority-up) (const priority-down)
  225. (const todo-state-up) (const todo-state-down)
  226. (const effort-up) (const effort-down)
  227. (const habit-up) (const habit-down)
  228. (const alpha-up) (const alpha-down)
  229. (const user-defined-up) (const user-defined-down))
  230. "Sorting choices.")
  231. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  232. ;; the new variable `org-agenda-tag-filter-preset'.
  233. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  234. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  235. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  236. "List of types searched for when creating the daily/weekly agenda.
  237. This variable is a list of symbols that controls the types of
  238. items that appear in the daily/weekly agenda. Allowed symbols in this
  239. list are are
  240. :timestamp List items containing a date stamp or date range matching
  241. the selected date. This includes sexp entries in angular
  242. brackets.
  243. :sexp List entries resulting from plain diary-like sexps.
  244. :deadline List deadline due on that date. When the date is today,
  245. also list any deadlines past due, or due within
  246. `org-deadline-warning-days'.
  247. :deadline* Same as above, but only include the deadline if it has an
  248. hour specification as [h]h:mm.
  249. :scheduled List all items which are scheduled for the given date.
  250. The diary for *today* also contains items which were
  251. scheduled earlier and are not yet marked DONE.
  252. :scheduled* Same as above, but only include the scheduled item if it
  253. has an hour specification as [h]h:mm.
  254. By default, all four non-starred types are turned on.
  255. When :scheduled* or :deadline* are included, :schedule or :deadline
  256. will be ignored.
  257. Never set this variable globally using `setq', because then it
  258. will apply to all future agenda commands. Instead, bind it with
  259. `let' to scope it dynamically into the agenda-constructing
  260. command. A good way to set it is through options in
  261. `org-agenda-custom-commands'. For a more flexible (though
  262. somewhat less efficient) way of determining what is included in
  263. the daily/weekly agenda, see `org-agenda-skip-function'.")
  264. (defconst org-agenda-custom-commands-local-options
  265. `(repeat :tag "Local settings for this command. Remember to quote values"
  266. (choice :tag "Setting"
  267. (list :tag "Heading for this block"
  268. (const org-agenda-overriding-header)
  269. (string :tag "Headline"))
  270. (list :tag "Files to be searched"
  271. (const org-agenda-files)
  272. (list
  273. (const :format "" quote)
  274. (repeat (file))))
  275. (list :tag "Sorting strategy"
  276. (const org-agenda-sorting-strategy)
  277. (list
  278. (const :format "" quote)
  279. (repeat
  280. ,org-sorting-choice)))
  281. (list :tag "Prefix format"
  282. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  283. (string))
  284. (list :tag "Number of days in agenda"
  285. (const org-agenda-span)
  286. (list
  287. (const :format "" quote)
  288. (choice (const :tag "Day" day)
  289. (const :tag "Week" week)
  290. (const :tag "Fortnight" fortnight)
  291. (const :tag "Month" month)
  292. (const :tag "Year" year)
  293. (integer :tag "Custom"))))
  294. (list :tag "Fixed starting date"
  295. (const org-agenda-start-day)
  296. (string :value "2007-11-01"))
  297. (list :tag "Start on day of week"
  298. (const org-agenda-start-on-weekday)
  299. (choice :value 1
  300. (const :tag "Today" nil)
  301. (integer :tag "Weekday No.")))
  302. (list :tag "Include data from diary"
  303. (const org-agenda-include-diary)
  304. (boolean))
  305. (list :tag "Deadline Warning days"
  306. (const org-deadline-warning-days)
  307. (integer :value 1))
  308. (list :tag "Category filter preset"
  309. (const org-agenda-category-filter-preset)
  310. (list
  311. (const :format "" quote)
  312. (repeat
  313. (string :tag "+category or -category"))))
  314. (list :tag "Tags filter preset"
  315. (const org-agenda-tag-filter-preset)
  316. (list
  317. (const :format "" quote)
  318. (repeat
  319. (string :tag "+tag or -tag"))))
  320. (list :tag "Effort filter preset"
  321. (const org-agenda-effort-filter-preset)
  322. (list
  323. (const :format "" quote)
  324. (repeat
  325. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  326. (list :tag "Regexp filter preset"
  327. (const org-agenda-regexp-filter-preset)
  328. (list
  329. (const :format "" quote)
  330. (repeat
  331. (string :tag "+regexp or -regexp"))))
  332. (list :tag "Set daily/weekly entry types"
  333. (const org-agenda-entry-types)
  334. (list
  335. (const :format "" quote)
  336. (set :greedy t :value ,org-agenda-entry-types
  337. (const :deadline)
  338. (const :scheduled)
  339. (const :deadline*)
  340. (const :scheduled*)
  341. (const :timestamp)
  342. (const :sexp))))
  343. (list :tag "Standard skipping condition"
  344. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  345. (const org-agenda-skip-function)
  346. (list
  347. (const :format "" quote)
  348. (list
  349. (choice
  350. :tag "Skipping range"
  351. (const :tag "Skip entry" org-agenda-skip-entry-if)
  352. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  353. (repeat :inline t :tag "Conditions for skipping"
  354. (choice
  355. :tag "Condition type"
  356. (list :tag "Regexp matches" :inline t
  357. (const :format "" regexp)
  358. (regexp))
  359. (list :tag "Regexp does not match" :inline t
  360. (const :format "" notregexp)
  361. (regexp))
  362. (list :tag "TODO state is" :inline t
  363. (const todo)
  364. (choice
  365. (const :tag "Any not-done state" todo)
  366. (const :tag "Any done state" done)
  367. (const :tag "Any state" any)
  368. (list :tag "Keyword list"
  369. (const :format "" quote)
  370. (repeat (string :tag "Keyword")))))
  371. (list :tag "TODO state is not" :inline t
  372. (const nottodo)
  373. (choice
  374. (const :tag "Any not-done state" todo)
  375. (const :tag "Any done state" done)
  376. (const :tag "Any state" any)
  377. (list :tag "Keyword list"
  378. (const :format "" quote)
  379. (repeat (string :tag "Keyword")))))
  380. (const :tag "scheduled" scheduled)
  381. (const :tag "not scheduled" notscheduled)
  382. (const :tag "deadline" deadline)
  383. (const :tag "no deadline" notdeadline)
  384. (const :tag "timestamp" timestamp)
  385. (const :tag "no timestamp" nottimestamp))))))
  386. (list :tag "Non-standard skipping condition"
  387. :value (org-agenda-skip-function)
  388. (const org-agenda-skip-function)
  389. (sexp :tag "Function or form (quoted!)"))
  390. (list :tag "Any variable"
  391. (variable :tag "Variable")
  392. (sexp :tag "Value (sexp)"))))
  393. "Selection of examples for agenda command settings.
  394. This will be spliced into the custom type of
  395. `org-agenda-custom-commands'.")
  396. (defcustom org-agenda-custom-commands
  397. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  398. "Custom commands for the agenda.
  399. \\<org-mode-map>
  400. These commands will be offered on the splash screen displayed by the
  401. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  402. (key desc type match settings files)
  403. key The key (one or more characters as a string) to be associated
  404. with the command.
  405. desc A description of the command, when omitted or nil, a default
  406. description is built using MATCH.
  407. type The command type, any of the following symbols:
  408. agenda The daily/weekly agenda.
  409. todo Entries with a specific TODO keyword, in all agenda files.
  410. search Entries containing search words entry or headline.
  411. tags Tags/Property/TODO match in all agenda files.
  412. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  413. todo-tree Sparse tree of specific TODO keyword in *current* file.
  414. tags-tree Sparse tree with all tags matches in *current* file.
  415. occur-tree Occur sparse tree for *current* file.
  416. ... A user-defined function.
  417. match What to search for:
  418. - a single keyword for TODO keyword searches
  419. - a tags match expression for tags searches
  420. - a word search expression for text searches.
  421. - a regular expression for occur searches
  422. For all other commands, this should be the empty string.
  423. settings A list of option settings, similar to that in a let form, so like
  424. this: ((opt1 val1) (opt2 val2) ...). The values will be
  425. evaluated at the moment of execution, so quote them when needed.
  426. files A list of files to write the produced agenda buffer to with
  427. the command `org-store-agenda-views'.
  428. If a file name ends in \".html\", an HTML version of the buffer
  429. is written out. If it ends in \".ps\", a postscript version is
  430. produced. Otherwise, only the plain text is written to the file.
  431. You can also define a set of commands, to create a composite agenda buffer.
  432. In this case, an entry looks like this:
  433. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  434. where
  435. desc A description string to be displayed in the dispatcher menu.
  436. cmd An agenda command, similar to the above. However, tree commands
  437. are not allowed, but instead you can get agenda and global todo list.
  438. So valid commands for a set are:
  439. (agenda \"\" settings)
  440. (alltodo \"\" settings)
  441. (stuck \"\" settings)
  442. (todo \"match\" settings files)
  443. (search \"match\" settings files)
  444. (tags \"match\" settings files)
  445. (tags-todo \"match\" settings files)
  446. Each command can carry a list of options, and another set of options can be
  447. given for the whole set of commands. Individual command options take
  448. precedence over the general options.
  449. When using several characters as key to a command, the first characters
  450. are prefix commands. For the dispatcher to display useful information, you
  451. should provide a description for the prefix, like
  452. (setq org-agenda-custom-commands
  453. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  454. (\"hl\" tags \"+HOME+Lisa\")
  455. (\"hp\" tags \"+HOME+Peter\")
  456. (\"hk\" tags \"+HOME+Kim\")))"
  457. :group 'org-agenda-custom-commands
  458. :type `(repeat
  459. (choice :value ("x" "Describe command here" tags "" nil)
  460. (list :tag "Single command"
  461. (string :tag "Access Key(s) ")
  462. (option (string :tag "Description"))
  463. (choice
  464. (const :tag "Agenda" agenda)
  465. (const :tag "TODO list" alltodo)
  466. (const :tag "Search words" search)
  467. (const :tag "Stuck projects" stuck)
  468. (const :tag "Tags/Property match (all agenda files)" tags)
  469. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  470. (const :tag "TODO keyword search (all agenda files)" todo)
  471. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  472. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  473. (const :tag "Occur tree (current buffer)" occur-tree)
  474. (sexp :tag "Other, user-defined function"))
  475. (string :tag "Match (only for some commands)")
  476. ,org-agenda-custom-commands-local-options
  477. (option (repeat :tag "Export" (file :tag "Export to"))))
  478. (list :tag "Command series, all agenda files"
  479. (string :tag "Access Key(s)")
  480. (string :tag "Description ")
  481. (repeat :tag "Component"
  482. (choice
  483. (list :tag "Agenda"
  484. (const :format "" agenda)
  485. (const :tag "" :format "" "")
  486. ,org-agenda-custom-commands-local-options)
  487. (list :tag "TODO list (all keywords)"
  488. (const :format "" alltodo)
  489. (const :tag "" :format "" "")
  490. ,org-agenda-custom-commands-local-options)
  491. (list :tag "Search words"
  492. (const :format "" search)
  493. (string :tag "Match")
  494. ,org-agenda-custom-commands-local-options)
  495. (list :tag "Stuck projects"
  496. (const :format "" stuck)
  497. (const :tag "" :format "" "")
  498. ,org-agenda-custom-commands-local-options)
  499. (list :tag "Tags search"
  500. (const :format "" tags)
  501. (string :tag "Match")
  502. ,org-agenda-custom-commands-local-options)
  503. (list :tag "Tags search, TODO entries only"
  504. (const :format "" tags-todo)
  505. (string :tag "Match")
  506. ,org-agenda-custom-commands-local-options)
  507. (list :tag "TODO keyword search"
  508. (const :format "" todo)
  509. (string :tag "Match")
  510. ,org-agenda-custom-commands-local-options)
  511. (list :tag "Other, user-defined function"
  512. (symbol :tag "function")
  513. (string :tag "Match")
  514. ,org-agenda-custom-commands-local-options)))
  515. (repeat :tag "Settings for entire command set"
  516. (list (variable :tag "Any variable")
  517. (sexp :tag "Value")))
  518. (option (repeat :tag "Export" (file :tag "Export to"))))
  519. (cons :tag "Prefix key documentation"
  520. (string :tag "Access Key(s)")
  521. (string :tag "Description ")))))
  522. (defcustom org-agenda-query-register ?o
  523. "The register holding the current query string.
  524. The purpose of this is that if you construct a query string interactively,
  525. you can then use it to define a custom command."
  526. :group 'org-agenda-custom-commands
  527. :type 'character)
  528. (defcustom org-stuck-projects
  529. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  530. "How to identify stuck projects.
  531. This is a list of four items:
  532. 1. A tags/todo/property matcher string that is used to identify a project.
  533. See the manual for a description of tag and property searches.
  534. The entire tree below a headline matched by this is considered one project.
  535. 2. A list of TODO keywords identifying non-stuck projects.
  536. If the project subtree contains any headline with one of these todo
  537. keywords, the project is considered to be not stuck. If you specify
  538. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  539. 3. A list of tags identifying non-stuck projects.
  540. If the project subtree contains any headline with one of these tags,
  541. the project is considered to be not stuck. If you specify \"*\" as
  542. a tag, any tag will mark the project unstuck. Note that this is about
  543. the explicit presence of a tag somewhere in the subtree, inherited
  544. tags do not count here. If inherited tags make a project not stuck,
  545. use \"-TAG\" in the tags part of the matcher under (1.) above.
  546. 4. An arbitrary regular expression matching non-stuck projects.
  547. If the project turns out to be not stuck, search continues also in the
  548. subtree to see if any of the subtasks have project status.
  549. See also the variable `org-tags-match-list-sublevels' which applies
  550. to projects matched by this search as well.
  551. After defining this variable, you may use `org-agenda-list-stuck-projects'
  552. \(bound to `\\[org-agenda] #') to produce the list."
  553. :group 'org-agenda-custom-commands
  554. :type '(list
  555. (string :tag "Tags/TODO match to identify a project")
  556. (repeat :tag "Projects are *not* stuck if they have an entry with \
  557. TODO keyword any of" (string))
  558. (repeat :tag "Projects are *not* stuck if they have an entry with \
  559. TAG being any of" (string))
  560. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  561. the subtree")))
  562. (defgroup org-agenda-skip nil
  563. "Options concerning skipping parts of agenda files."
  564. :tag "Org Agenda Skip"
  565. :group 'org-agenda)
  566. (defcustom org-agenda-skip-function-global nil
  567. "Function to be called at each match during agenda construction.
  568. If this function returns nil, the current match should not be skipped.
  569. If the function decided to skip an agenda match, is must return the
  570. buffer position from which the search should be continued.
  571. This may also be a Lisp form, which will be evaluated.
  572. This variable will be applied to every agenda match, including
  573. tags/property searches and TODO lists. So try to make the test function
  574. do its checking as efficiently as possible. To implement a skipping
  575. condition just for specific agenda commands, use the variable
  576. `org-agenda-skip-function' which can be set in the options section
  577. of custom agenda commands."
  578. :group 'org-agenda-skip
  579. :type 'sexp)
  580. (defgroup org-agenda-daily/weekly nil
  581. "Options concerning the daily/weekly agenda."
  582. :tag "Org Agenda Daily/Weekly"
  583. :group 'org-agenda)
  584. (defgroup org-agenda-todo-list nil
  585. "Options concerning the global todo list agenda view."
  586. :tag "Org Agenda Todo List"
  587. :group 'org-agenda)
  588. (defgroup org-agenda-match-view nil
  589. "Options concerning the general tags/property/todo match agenda view."
  590. :tag "Org Agenda Match View"
  591. :group 'org-agenda)
  592. (defgroup org-agenda-search-view nil
  593. "Options concerning the search agenda view."
  594. :tag "Org Agenda Search View"
  595. :group 'org-agenda)
  596. (defvar org-agenda-archives-mode nil
  597. "Non-nil means the agenda will include archived items.
  598. If this is the symbol `trees', trees in the selected agenda scope
  599. that are marked with the ARCHIVE tag will be included anyway. When this is
  600. t, also all archive files associated with the current selection of agenda
  601. files will be included.")
  602. (defcustom org-agenda-restriction-lock-highlight-subtree t
  603. "Non-nil means highlight the whole subtree when restriction is active.
  604. Otherwise only highlight the headline. Highlighting the whole subtree is
  605. useful to ensure no edits happen beyond the restricted region."
  606. :group 'org-agenda
  607. :type 'boolean)
  608. (defcustom org-agenda-skip-comment-trees t
  609. "Non-nil means skip trees that start with the COMMENT keyword.
  610. When nil, these trees are also scanned by agenda commands."
  611. :group 'org-agenda-skip
  612. :type 'boolean)
  613. (defcustom org-agenda-todo-list-sublevels t
  614. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  615. When nil, the sublevels of a TODO entry are not checked, resulting in
  616. potentially much shorter TODO lists."
  617. :group 'org-agenda-skip
  618. :group 'org-agenda-todo-list
  619. :type 'boolean)
  620. (defcustom org-agenda-todo-ignore-with-date nil
  621. "Non-nil means don't show entries with a date in the global todo list.
  622. You can use this if you prefer to mark mere appointments with a TODO keyword,
  623. but don't want them to show up in the TODO list.
  624. When this is set, it also covers deadlines and scheduled items, the settings
  625. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  626. will be ignored.
  627. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  628. :group 'org-agenda-skip
  629. :group 'org-agenda-todo-list
  630. :type 'boolean)
  631. (defcustom org-agenda-todo-ignore-timestamp nil
  632. "Non-nil means don't show entries with a timestamp.
  633. This applies when creating the global todo list.
  634. Valid values are:
  635. past Don't show entries for today or in the past.
  636. future Don't show entries with a timestamp in the future.
  637. The idea behind this is that if it has a future
  638. timestamp, you don't want to think about it until the
  639. date.
  640. all Don't show any entries with a timestamp in the global todo list.
  641. The idea behind this is that by setting a timestamp, you
  642. have already \"taken care\" of this item.
  643. This variable can also have an integer as a value. If positive (N),
  644. todos with a timestamp N or more days in the future will be ignored. If
  645. negative (-N), todos with a timestamp N or more days in the past will be
  646. ignored. If 0, todos with a timestamp either today or in the future will
  647. be ignored. For example, a value of -1 will exclude todos with a
  648. timestamp in the past (yesterday or earlier), while a value of 7 will
  649. exclude todos with a timestamp a week or more in the future.
  650. See also `org-agenda-todo-ignore-with-date'.
  651. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  652. to make his option also apply to the tags-todo list."
  653. :group 'org-agenda-skip
  654. :group 'org-agenda-todo-list
  655. :version "24.1"
  656. :type '(choice
  657. (const :tag "Ignore future timestamp todos" future)
  658. (const :tag "Ignore past or present timestamp todos" past)
  659. (const :tag "Ignore all timestamp todos" all)
  660. (const :tag "Show timestamp todos" nil)
  661. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  662. (defcustom org-agenda-todo-ignore-scheduled nil
  663. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  664. This applies when creating the global todo list.
  665. Valid values are:
  666. past Don't show entries scheduled today or in the past.
  667. future Don't show entries scheduled in the future.
  668. The idea behind this is that by scheduling it, you don't want to
  669. think about it until the scheduled date.
  670. all Don't show any scheduled entries in the global todo list.
  671. The idea behind this is that by scheduling it, you have already
  672. \"taken care\" of this item.
  673. t Same as `all', for backward compatibility.
  674. This variable can also have an integer as a value. See
  675. `org-agenda-todo-ignore-timestamp' for more details.
  676. See also `org-agenda-todo-ignore-with-date'.
  677. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  678. to make his option also apply to the tags-todo list."
  679. :group 'org-agenda-skip
  680. :group 'org-agenda-todo-list
  681. :type '(choice
  682. (const :tag "Ignore future-scheduled todos" future)
  683. (const :tag "Ignore past- or present-scheduled todos" past)
  684. (const :tag "Ignore all scheduled todos" all)
  685. (const :tag "Ignore all scheduled todos (compatibility)" t)
  686. (const :tag "Show scheduled todos" nil)
  687. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  688. (defcustom org-agenda-todo-ignore-deadlines nil
  689. "Non-nil means ignore some deadline TODO items when making TODO list.
  690. There are different motivations for using different values, please think
  691. carefully when configuring this variable.
  692. This applies when creating the global TODO list.
  693. Valid values are:
  694. near Don't show near deadline entries. A deadline is near when it is
  695. closer than `org-deadline-warning-days' days. The idea behind this
  696. is that such items will appear in the agenda anyway.
  697. far Don't show TODO entries where a deadline has been defined, but
  698. is not going to happen anytime soon. This is useful if you want to use
  699. the TODO list to figure out what to do now.
  700. past Don't show entries with a deadline timestamp for today or in the past.
  701. future Don't show entries with a deadline timestamp in the future, not even
  702. when they become `near' ones. Use it with caution.
  703. all Ignore all TODO entries that do have a deadline.
  704. t Same as `near', for backward compatibility.
  705. This variable can also have an integer as a value. See
  706. `org-agenda-todo-ignore-timestamp' for more details.
  707. See also `org-agenda-todo-ignore-with-date'.
  708. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  709. to make his option also apply to the tags-todo list."
  710. :group 'org-agenda-skip
  711. :group 'org-agenda-todo-list
  712. :type '(choice
  713. (const :tag "Ignore near deadlines" near)
  714. (const :tag "Ignore near deadlines (compatibility)" t)
  715. (const :tag "Ignore far deadlines" far)
  716. (const :tag "Ignore all TODOs with a deadlines" all)
  717. (const :tag "Show all TODOs, even if they have a deadline" nil)
  718. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  719. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  720. "Time unit to use when possibly ignoring an agenda item.
  721. See the docstring of various `org-agenda-todo-ignore-*' options.
  722. The default is to compare time stamps using days. An item is thus
  723. considered to be in the future if it is at least one day after today.
  724. Non-nil means to compare time stamps using seconds. An item is then
  725. considered future if it has a time value later than current time."
  726. :group 'org-agenda-skip
  727. :group 'org-agenda-todo-list
  728. :version "24.4"
  729. :package-version '(Org . "8.0")
  730. :type '(choice
  731. (const :tag "Compare time with days" nil)
  732. (const :tag "Compare time with seconds" t)))
  733. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  734. "Non-nil means honor todo-list ignores options also in tags-todo search.
  735. The variables
  736. `org-agenda-todo-ignore-with-date',
  737. `org-agenda-todo-ignore-timestamp',
  738. `org-agenda-todo-ignore-scheduled',
  739. `org-agenda-todo-ignore-deadlines'
  740. make the global TODO list skip entries that have time stamps of certain
  741. kinds. If this option is set, the same options will also apply for the
  742. tags-todo search, which is the general tags/property matcher
  743. restricted to unfinished TODO entries only."
  744. :group 'org-agenda-skip
  745. :group 'org-agenda-todo-list
  746. :group 'org-agenda-match-view
  747. :type 'boolean)
  748. (defcustom org-agenda-skip-scheduled-if-done nil
  749. "Non-nil means don't show scheduled items in agenda when they are done.
  750. This is relevant for the daily/weekly agenda, not for the TODO list. It
  751. applies only to the actual date of the scheduling. Warnings about an item
  752. with a past scheduling dates are always turned off when the item is DONE."
  753. :group 'org-agenda-skip
  754. :group 'org-agenda-daily/weekly
  755. :type 'boolean)
  756. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  757. "Non-nil means skip scheduling line if same entry shows because of deadline.
  758. In the agenda of today, an entry can show up multiple times
  759. because it is both scheduled and has a nearby deadline, and maybe
  760. a plain time stamp as well.
  761. When this variable is nil, the entry will be shown several times.
  762. When set to t, then only the deadline is shown and the fact that
  763. the entry is scheduled today or was scheduled previously is not
  764. shown.
  765. When set to the symbol `not-today', skip scheduled previously,
  766. but not scheduled today.
  767. When set to the symbol `repeated-after-deadline', skip scheduled
  768. items if they are repeated beyond the current deadline."
  769. :group 'org-agenda-skip
  770. :group 'org-agenda-daily/weekly
  771. :type '(choice
  772. (const :tag "Never" nil)
  773. (const :tag "Always" t)
  774. (const :tag "Not when scheduled today" not-today)
  775. (const :tag "When repeated past deadline" repeated-after-deadline)))
  776. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  777. "Non-nil means skip timestamp line if same entry shows because of deadline.
  778. In the agenda of today, an entry can show up multiple times
  779. because it has both a plain timestamp and has a nearby deadline.
  780. When this variable is t, then only the deadline is shown and the
  781. fact that the entry has a timestamp for or including today is not
  782. shown. When this variable is nil, the entry will be shown
  783. several times."
  784. :group 'org-agenda-skip
  785. :group 'org-agenda-daily/weekly
  786. :version "24.1"
  787. :type '(choice
  788. (const :tag "Never" nil)
  789. (const :tag "Always" t)))
  790. (defcustom org-agenda-skip-deadline-if-done nil
  791. "Non-nil means don't show deadlines when the corresponding item is done.
  792. When nil, the deadline is still shown and should give you a happy feeling.
  793. This is relevant for the daily/weekly agenda. It applies only to the
  794. actual date of the deadline. Warnings about approaching and past-due
  795. deadlines are always turned off when the item is DONE."
  796. :group 'org-agenda-skip
  797. :group 'org-agenda-daily/weekly
  798. :type 'boolean)
  799. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  800. "Non-nil means skip deadline prewarning when entry is also scheduled.
  801. This will apply on all days where a prewarning for the deadline would
  802. be shown, but not at the day when the entry is actually due. On that day,
  803. the deadline will be shown anyway.
  804. This variable may be set to nil, t, the symbol `pre-scheduled',
  805. or a number which will then give the number of days before the actual
  806. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  807. eliminates the deadline prewarning only prior to the scheduled date.
  808. This can be used in a workflow where the first showing of the deadline will
  809. trigger you to schedule it, and then you don't want to be reminded of it
  810. because you will take care of it on the day when scheduled."
  811. :group 'org-agenda-skip
  812. :group 'org-agenda-daily/weekly
  813. :version "24.1"
  814. :type '(choice
  815. (const :tag "Always show prewarning" nil)
  816. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  817. (const :tag "Remove prewarning if entry is scheduled" t)
  818. (integer :tag "Restart prewarning N days before deadline")))
  819. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  820. "Non-nil means skip scheduled delay when entry also has a deadline.
  821. This variable may be set to nil, t, the symbol `post-deadline',
  822. or a number which will then give the number of days after the actual
  823. scheduled date when the delay should expire. The symbol `post-deadline'
  824. eliminates the schedule delay when the date is posterior to the deadline."
  825. :group 'org-agenda-skip
  826. :group 'org-agenda-daily/weekly
  827. :version "24.4"
  828. :package-version '(Org . "8.0")
  829. :type '(choice
  830. (const :tag "Always honor delay" nil)
  831. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  832. (const :tag "Ignore delay if entry has a deadline" t)
  833. (integer :tag "Honor delay up until N days after the scheduled date")))
  834. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  835. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  836. When non-nil, after the search for timestamps has matched once in an
  837. entry, the rest of the entry will not be searched."
  838. :group 'org-agenda-skip
  839. :type 'boolean)
  840. (defcustom org-agenda-skip-timestamp-if-done nil
  841. "Non-nil means don't select item by timestamp or -range if it is DONE."
  842. :group 'org-agenda-skip
  843. :group 'org-agenda-daily/weekly
  844. :type 'boolean)
  845. (defcustom org-agenda-dim-blocked-tasks t
  846. "Non-nil means dim blocked tasks in the agenda display.
  847. This causes some overhead during agenda construction, but if you
  848. have turned on `org-enforce-todo-dependencies',
  849. `org-enforce-todo-checkbox-dependencies', or any other blocking
  850. mechanism, this will create useful feedback in the agenda.
  851. Instead of t, this variable can also have the value `invisible'.
  852. Then blocked tasks will be invisible and only become visible when
  853. they become unblocked. An exemption to this behavior is when a task is
  854. blocked because of unchecked checkboxes below it. Since checkboxes do
  855. not show up in the agenda views, making this task invisible you remove any
  856. trace from agenda views that there is something to do. Therefore, a task
  857. that is blocked because of checkboxes will never be made invisible, it
  858. will only be dimmed."
  859. :group 'org-agenda-daily/weekly
  860. :group 'org-agenda-todo-list
  861. :version "24.3"
  862. :type '(choice
  863. (const :tag "Do not dim" nil)
  864. (const :tag "Dim to a gray face" t)
  865. (const :tag "Make invisible" invisible)))
  866. (defgroup org-agenda-startup nil
  867. "Options concerning initial settings in the Agenda in Org Mode."
  868. :tag "Org Agenda Startup"
  869. :group 'org-agenda)
  870. (defcustom org-agenda-menu-show-matcher t
  871. "Non-nil means show the match string in the agenda dispatcher menu.
  872. When nil, the matcher string is not shown, but is put into the help-echo
  873. property so than moving the mouse over the command shows it.
  874. Setting it to nil is good if matcher strings are very long and/or if
  875. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  876. :group 'org-agenda
  877. :version "24.1"
  878. :type 'boolean)
  879. (defcustom org-agenda-menu-two-columns nil
  880. "Non-nil means, use two columns to show custom commands in the dispatcher.
  881. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  882. to nil."
  883. :group 'org-agenda
  884. :version "24.1"
  885. :type 'boolean)
  886. (defcustom org-agenda-finalize-hook nil
  887. "Hook run just before displaying an agenda buffer.
  888. The buffer is still writable when the hook is called.
  889. You can modify some of the buffer substrings but you should be
  890. extra careful not to modify the text properties of the agenda
  891. headlines as the agenda display heavily relies on them."
  892. :group 'org-agenda-startup
  893. :type 'hook)
  894. (defcustom org-agenda-mouse-1-follows-link nil
  895. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  896. A longer mouse click will still set point. Needs to be set
  897. before org.el is loaded."
  898. :group 'org-agenda-startup
  899. :type 'boolean)
  900. (defcustom org-agenda-start-with-follow-mode nil
  901. "The initial value of follow mode in a newly created agenda window."
  902. :group 'org-agenda-startup
  903. :type 'boolean)
  904. (defcustom org-agenda-follow-indirect nil
  905. "Non-nil means `org-agenda-follow-mode' displays only the
  906. current item's tree, in an indirect buffer."
  907. :group 'org-agenda
  908. :version "24.1"
  909. :type 'boolean)
  910. (defcustom org-agenda-show-outline-path t
  911. "Non-nil means show outline path in echo area after line motion."
  912. :group 'org-agenda-startup
  913. :type 'boolean)
  914. (defcustom org-agenda-start-with-entry-text-mode nil
  915. "The initial value of entry-text-mode in a newly created agenda window."
  916. :group 'org-agenda-startup
  917. :type 'boolean)
  918. (defcustom org-agenda-entry-text-maxlines 5
  919. "Number of text lines to be added when `E' is pressed in the agenda.
  920. Note that this variable only used during agenda display. To add entry text
  921. when exporting the agenda, configure the variable
  922. `org-agenda-add-entry-text-maxlines'."
  923. :group 'org-agenda
  924. :type 'integer)
  925. (defcustom org-agenda-entry-text-exclude-regexps nil
  926. "List of regular expressions to clean up entry text.
  927. The complete matches of all regular expressions in this list will be
  928. removed from entry text before it is shown in the agenda."
  929. :group 'org-agenda
  930. :type '(repeat (regexp)))
  931. (defcustom org-agenda-entry-text-leaders " > "
  932. "Text prepended to the entry text in agenda buffers."
  933. :version "24.4"
  934. :package-version '(Org . "8.0")
  935. :group 'org-agenda
  936. :type 'string)
  937. (defvar org-agenda-entry-text-cleanup-hook nil
  938. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  939. This cleanup is done in a temporary buffer, so the function may inspect and
  940. change the entire buffer.
  941. Some default stuff like drawers and scheduling/deadline dates will already
  942. have been removed when this is called, as will any matches for regular
  943. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  944. (defvar org-agenda-include-inactive-timestamps nil
  945. "Non-nil means include inactive time stamps in agenda.
  946. Dynamically scoped.")
  947. (defgroup org-agenda-windows nil
  948. "Options concerning the windows used by the Agenda in Org Mode."
  949. :tag "Org Agenda Windows"
  950. :group 'org-agenda)
  951. (defcustom org-agenda-window-setup 'reorganize-frame
  952. "How the agenda buffer should be displayed.
  953. Possible values for this option are:
  954. current-window Show agenda in the current window, keeping all other windows.
  955. other-window Use `switch-to-buffer-other-window' to display agenda.
  956. only-window Show agenda, deleting all other windows.
  957. reorganize-frame Show only two windows on the current frame, the current
  958. window and the agenda.
  959. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  960. Also, when exiting the agenda, kill that frame.
  961. See also the variable `org-agenda-restore-windows-after-quit'."
  962. :group 'org-agenda-windows
  963. :type '(choice
  964. (const current-window)
  965. (const other-frame)
  966. (const other-window)
  967. (const only-window)
  968. (const reorganize-frame)))
  969. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  970. "The min and max height of the agenda window as a fraction of frame height.
  971. The value of the variable is a cons cell with two numbers between 0 and 1.
  972. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  973. :group 'org-agenda-windows
  974. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  975. (defcustom org-agenda-restore-windows-after-quit nil
  976. "Non-nil means restore window configuration upon exiting agenda.
  977. Before the window configuration is changed for displaying the agenda,
  978. the current status is recorded. When the agenda is exited with
  979. `q' or `x' and this option is set, the old state is restored. If
  980. `org-agenda-window-setup' is `other-frame', the value of this
  981. option will be ignored."
  982. :group 'org-agenda-windows
  983. :type 'boolean)
  984. (defcustom org-agenda-span 'week
  985. "Number of days to include in overview display.
  986. Can be day, week, month, year, or any number of days.
  987. Custom commands can set this variable in the options section."
  988. :group 'org-agenda-daily/weekly
  989. :type '(choice (const :tag "Day" day)
  990. (const :tag "Week" week)
  991. (const :tag "Fortnight" fortnight)
  992. (const :tag "Month" month)
  993. (const :tag "Year" year)
  994. (integer :tag "Custom")))
  995. (defcustom org-agenda-start-on-weekday 1
  996. "Non-nil means start the overview always on the specified weekday.
  997. 0 denotes Sunday, 1 denotes Monday, etc.
  998. When nil, always start on the current day.
  999. Custom commands can set this variable in the options section."
  1000. :group 'org-agenda-daily/weekly
  1001. :type '(choice (const :tag "Today" nil)
  1002. (integer :tag "Weekday No.")))
  1003. (defcustom org-agenda-show-all-dates t
  1004. "Non-nil means `org-agenda' shows every day in the selected range.
  1005. When nil, only the days which actually have entries are shown."
  1006. :group 'org-agenda-daily/weekly
  1007. :type 'boolean)
  1008. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1009. "Format string for displaying dates in the agenda.
  1010. Used by the daily/weekly agenda. This should be a format string
  1011. understood by `format-time-string', or a function returning the
  1012. formatted date as a string. The function must take a single
  1013. argument, a calendar-style date list like (month day year)."
  1014. :group 'org-agenda-daily/weekly
  1015. :type '(choice
  1016. (string :tag "Format string")
  1017. (function :tag "Function")))
  1018. (defun org-agenda-format-date-aligned (date)
  1019. "Format a DATE string for display in the daily/weekly agenda.
  1020. This function makes sure that dates are aligned for easy reading."
  1021. (require 'cal-iso)
  1022. (let* ((dayname (calendar-day-name date))
  1023. (day (cadr date))
  1024. (day-of-week (calendar-day-of-week date))
  1025. (month (car date))
  1026. (monthname (calendar-month-name month))
  1027. (year (nth 2 date))
  1028. (iso-week (org-days-to-iso-week
  1029. (calendar-absolute-from-gregorian date)))
  1030. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1031. (1- year))
  1032. ((and (= month 12) (<= iso-week 1))
  1033. (1+ year))
  1034. (t year)))
  1035. (weekstring (if (= day-of-week 1)
  1036. (format " W%02d" iso-week)
  1037. "")))
  1038. (format "%-10s %2d %s %4d%s"
  1039. dayname day monthname year weekstring)))
  1040. (defcustom org-agenda-time-leading-zero nil
  1041. "Non-nil means use leading zero for military times in agenda.
  1042. For example, 9:30am would become 09:30 rather than 9:30."
  1043. :group 'org-agenda-daily/weekly
  1044. :version "24.1"
  1045. :type 'boolean)
  1046. (defcustom org-agenda-timegrid-use-ampm nil
  1047. "When set, show AM/PM style timestamps on the timegrid."
  1048. :group 'org-agenda
  1049. :version "24.1"
  1050. :type 'boolean)
  1051. (defun org-agenda-time-of-day-to-ampm (time)
  1052. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1053. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1054. (minute (substring time -2))
  1055. (ampm "am"))
  1056. (cond
  1057. ((equal hour-number 12)
  1058. (setq ampm "pm"))
  1059. ((> hour-number 12)
  1060. (setq ampm "pm")
  1061. (setq hour-number (- hour-number 12))))
  1062. (concat
  1063. (if org-agenda-time-leading-zero
  1064. (format "%02d" hour-number)
  1065. (format "%02s" (number-to-string hour-number)))
  1066. ":" minute ampm)))
  1067. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1068. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1069. (if org-agenda-timegrid-use-ampm
  1070. (org-agenda-time-of-day-to-ampm time)
  1071. time))
  1072. (defcustom org-agenda-weekend-days '(6 0)
  1073. "Which days are weekend?
  1074. These days get the special face `org-agenda-date-weekend' in the agenda."
  1075. :group 'org-agenda-daily/weekly
  1076. :type '(set :greedy t
  1077. (const :tag "Monday" 1)
  1078. (const :tag "Tuesday" 2)
  1079. (const :tag "Wednesday" 3)
  1080. (const :tag "Thursday" 4)
  1081. (const :tag "Friday" 5)
  1082. (const :tag "Saturday" 6)
  1083. (const :tag "Sunday" 0)))
  1084. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1085. "Non-nil means jump to today when moving a past date forward in time.
  1086. When using S-right in the agenda to move a a date forward, and the date
  1087. stamp currently points to the past, the first key press will move it
  1088. to today. When nil, just move one day forward even if the date stays
  1089. in the past."
  1090. :group 'org-agenda-daily/weekly
  1091. :version "24.1"
  1092. :type 'boolean)
  1093. (defcustom org-agenda-include-diary nil
  1094. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1095. Custom commands can set this variable in the options section."
  1096. :group 'org-agenda-daily/weekly
  1097. :type 'boolean)
  1098. (defcustom org-agenda-include-deadlines t
  1099. "If non-nil, include entries within their deadline warning period.
  1100. Custom commands can set this variable in the options section."
  1101. :group 'org-agenda-daily/weekly
  1102. :version "24.1"
  1103. :type 'boolean)
  1104. (defcustom org-agenda-show-future-repeats t
  1105. "Non-nil shows repeated entries in the future part of the agenda.
  1106. When set to the symbol `next' only the first future repeat is shown."
  1107. :group 'org-agenda-daily/weekly
  1108. :type '(choice
  1109. (const :tag "Show all repeated entries" t)
  1110. (const :tag "Show next repeated entry" next)
  1111. (const :tag "Do not show repeated entries" nil))
  1112. :version "26.1"
  1113. :package-version '(Org . "9.1")
  1114. :safe #'symbolp)
  1115. (defcustom org-agenda-prefer-last-repeat nil
  1116. "Non-nil sets date for repeated entries to their last repeat.
  1117. When nil, display SCHEDULED and DEADLINE dates at their base
  1118. date, and in today's agenda, as a reminder. Display plain
  1119. time-stamps, on the other hand, at every repeat date in the past
  1120. in addition to the base date.
  1121. When non-nil, show a repeated entry at its latest repeat date,
  1122. possibly being today even if it wasn't marked as done. This
  1123. setting is useful if you do not always mark repeated entries as
  1124. done and, yet, consider that reaching repeat date starts the task
  1125. anew.
  1126. When set to a list of strings, prefer last repeats only for
  1127. entries with these TODO keywords."
  1128. :group 'org-agenda-daily/weekly
  1129. :type '(choice
  1130. (const :tag "Prefer last repeat" t)
  1131. (const :tag "Prefer base date" nil)
  1132. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1133. (string :tag "TODO keyword")))
  1134. :version "26.1"
  1135. :package-version '(Org . "9.1")
  1136. :safe (lambda (x) (or (booleanp x) (consp x))))
  1137. (defcustom org-scheduled-past-days 10000
  1138. "Number of days to continue listing scheduled items not marked DONE.
  1139. When an item is scheduled on a date, it shows up in the agenda on
  1140. this day and will be listed until it is marked done or for the
  1141. number of days given here."
  1142. :group 'org-agenda-daily/weekly
  1143. :type 'integer
  1144. :safe 'integerp)
  1145. (defcustom org-deadline-past-days 10000
  1146. "Number of days to warn about missed deadlines.
  1147. When an item has deadline on a date, it shows up in the agenda on
  1148. this day and will appear as a reminder until it is marked DONE or
  1149. for the number of days given here."
  1150. :group 'org-agenda-daily/weekly
  1151. :type 'integer
  1152. :version "26.1"
  1153. :package-version '(Org . "9.1")
  1154. :safe 'integerp)
  1155. (defcustom org-agenda-log-mode-items '(closed clock)
  1156. "List of items that should be shown in agenda log mode.
  1157. \\<org-agenda-mode-map>\
  1158. This list may contain the following symbols:
  1159. closed Show entries that have been closed on that day.
  1160. clock Show entries that have received clocked time on that day.
  1161. state Show all logged state changes.
  1162. Note that instead of changing this variable, you can also press \
  1163. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1164. the agenda to display all available LOG items temporarily."
  1165. :group 'org-agenda-daily/weekly
  1166. :type '(set :greedy t (const closed) (const clock) (const state)))
  1167. (defcustom org-agenda-clock-consistency-checks
  1168. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1169. :gap-ok-around ("4:00")
  1170. :default-face ((:background "DarkRed") (:foreground "white"))
  1171. :overlap-face nil :gap-face nil :no-end-time-face nil
  1172. :long-face nil :short-face nil)
  1173. "This is a property list, with the following keys:
  1174. :max-duration Mark clocking chunks that are longer than this time.
  1175. This is a time string like \"HH:MM\", or the number
  1176. of minutes as an integer.
  1177. :min-duration Mark clocking chunks that are shorter that this.
  1178. This is a time string like \"HH:MM\", or the number
  1179. of minutes as an integer.
  1180. :max-gap Mark gaps between clocking chunks that are longer than
  1181. this duration. A number of minutes, or a string
  1182. like \"HH:MM\".
  1183. :gap-ok-around List of times during the day which are usually not working
  1184. times. When a gap is detected, but the gap contains any
  1185. of these times, the gap is *not* reported. For example,
  1186. if this is (\"4:00\" \"13:00\") then gaps that contain
  1187. 4:00 in the morning (i.e. the night) and 13:00
  1188. (i.e. a typical lunch time) do not cause a warning.
  1189. You should have at least one time during the night in this
  1190. list, or otherwise the first task each morning will trigger
  1191. a warning because it follows a long gap.
  1192. Furthermore, the following properties can be used to define faces for
  1193. issue display.
  1194. :default-face the default face, if the specific face is undefined
  1195. :overlap-face face for overlapping clocks
  1196. :gap-face face for gaps between clocks
  1197. :no-end-time-face face for incomplete clocks
  1198. :long-face face for clock intervals that are too long
  1199. :short-face face for clock intervals that are too short"
  1200. :group 'org-agenda-daily/weekly
  1201. :group 'org-clock
  1202. :version "24.1"
  1203. :type 'plist)
  1204. (defcustom org-agenda-log-mode-add-notes t
  1205. "Non-nil means add first line of notes to log entries in agenda views.
  1206. If a log item like a state change or a clock entry is associated with
  1207. notes, the first line of these notes will be added to the entry in the
  1208. agenda display."
  1209. :group 'org-agenda-daily/weekly
  1210. :type 'boolean)
  1211. (defcustom org-agenda-start-with-log-mode nil
  1212. "The initial value of log-mode in a newly created agenda window.
  1213. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1214. explanations on the possible values."
  1215. :group 'org-agenda-startup
  1216. :group 'org-agenda-daily/weekly
  1217. :type '(choice (const :tag "Don't show log items" nil)
  1218. (const :tag "Show only log items" only)
  1219. (const :tag "Show all possible log items" clockcheck)
  1220. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1221. (choice (const :tag "Show closed log items" closed)
  1222. (const :tag "Show clocked log items" clock)
  1223. (const :tag "Show all logged state changes" state)))))
  1224. (defcustom org-agenda-start-with-clockreport-mode nil
  1225. "The initial value of clockreport-mode in a newly created agenda window."
  1226. :group 'org-agenda-startup
  1227. :group 'org-agenda-daily/weekly
  1228. :type 'boolean)
  1229. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1230. "Property list with parameters for the clocktable in clockreport mode.
  1231. This is the display mode that shows a clock table in the daily/weekly
  1232. agenda, the properties for this dynamic block can be set here.
  1233. The usual clocktable parameters are allowed here, but you cannot set
  1234. the properties :name, :tstart, :tend, :block, and :scope - these will
  1235. be overwritten to make sure the content accurately reflects the
  1236. current display in the agenda."
  1237. :group 'org-agenda-daily/weekly
  1238. :type 'plist)
  1239. (defvaralias 'org-agenda-search-view-search-words-only
  1240. 'org-agenda-search-view-always-boolean)
  1241. (defcustom org-agenda-search-view-always-boolean nil
  1242. "Non-nil means the search string is interpreted as individual parts.
  1243. The search string for search view can either be interpreted as a phrase,
  1244. or as a list of snippets that define a boolean search for a number of
  1245. strings.
  1246. When this is non-nil, the string will be split on whitespace, and each
  1247. snippet will be searched individually, and all must match in order to
  1248. select an entry. A snippet is then a single string of non-white
  1249. characters, or a string in double quotes, or a regexp in {} braces.
  1250. If a snippet is preceded by \"-\", the snippet must *not* match.
  1251. \"+\" is syntactic sugar for positive selection. Each snippet may
  1252. be found as a full word or a partial word, but see the variable
  1253. `org-agenda-search-view-force-full-words'.
  1254. When this is nil, search will look for the entire search phrase as one,
  1255. with each space character matching any amount of whitespace, including
  1256. line breaks.
  1257. Even when this is nil, you can still switch to Boolean search dynamically
  1258. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1259. is a regexp marked with braces like \"{abc}\", this will also switch to
  1260. boolean search."
  1261. :group 'org-agenda-search-view
  1262. :version "24.1"
  1263. :type 'boolean)
  1264. (defcustom org-agenda-search-view-force-full-words nil
  1265. "Non-nil means, search words must be matches as complete words.
  1266. When nil, they may also match part of a word."
  1267. :group 'org-agenda-search-view
  1268. :version "24.1"
  1269. :type 'boolean)
  1270. (defcustom org-agenda-search-view-max-outline-level 0
  1271. "Maximum outline level to display in search view.
  1272. E.g. when this is set to 1, the search view will only
  1273. show headlines of level 1. When set to 0, the default
  1274. value, don't limit agenda view by outline level."
  1275. :group 'org-agenda-search-view
  1276. :version "26.1"
  1277. :package-version '(Org . "8.3")
  1278. :type 'integer)
  1279. (defgroup org-agenda-time-grid nil
  1280. "Options concerning the time grid in the Org Agenda."
  1281. :tag "Org Agenda Time Grid"
  1282. :group 'org-agenda)
  1283. (defcustom org-agenda-search-headline-for-time t
  1284. "Non-nil means search headline for a time-of-day.
  1285. If the headline contains a time-of-day in one format or another, it will
  1286. be used to sort the entry into the time sequence of items for a day.
  1287. Some people have time stamps in the headline that refer to the creation
  1288. time or so, and then this produces an unwanted side effect. If this is
  1289. the case for your, use this variable to turn off searching the headline
  1290. for a time."
  1291. :group 'org-agenda-time-grid
  1292. :type 'boolean)
  1293. (defcustom org-agenda-use-time-grid t
  1294. "Non-nil means show a time grid in the agenda schedule.
  1295. A time grid is a set of lines for specific times (like every two hours between
  1296. 8:00 and 20:00). The items scheduled for a day at specific times are
  1297. sorted in between these lines.
  1298. For details about when the grid will be shown, and what it will look like, see
  1299. the variable `org-agenda-time-grid'."
  1300. :group 'org-agenda-time-grid
  1301. :type 'boolean)
  1302. (defcustom org-agenda-time-grid
  1303. '((daily today require-timed)
  1304. (800 1000 1200 1400 1600 1800 2000)
  1305. "......"
  1306. "----------------")
  1307. "The settings for time grid for agenda display.
  1308. This is a list of four items. The first item is again a list. It contains
  1309. symbols specifying conditions when the grid should be displayed:
  1310. daily if the agenda shows a single day
  1311. weekly if the agenda shows an entire week
  1312. today show grid on current date, independent of daily/weekly display
  1313. require-timed show grid only if at least one item has a time specification
  1314. remove-match skip grid times already present in an entry
  1315. The second item is a list of integers, indicating the times that
  1316. should have a grid line.
  1317. The third item is a string which will be placed right after the
  1318. times that have a grid line.
  1319. The fourth item is a string placed after the grid times. This
  1320. will align with agenda items"
  1321. :group 'org-agenda-time-grid
  1322. :type
  1323. '(list
  1324. (set :greedy t :tag "Grid Display Options"
  1325. (const :tag "Show grid in single day agenda display" daily)
  1326. (const :tag "Show grid in weekly agenda display" weekly)
  1327. (const :tag "Always show grid for today" today)
  1328. (const :tag "Show grid only if any timed entries are present"
  1329. require-timed)
  1330. (const :tag "Skip grid times already present in an entry"
  1331. remove-match))
  1332. (repeat :tag "Grid Times" (integer :tag "Time"))
  1333. (string :tag "Grid String (after agenda times)")
  1334. (string :tag "Grid String (aligns with agenda items)")))
  1335. (defcustom org-agenda-show-current-time-in-grid t
  1336. "Non-nil means show the current time in the time grid."
  1337. :group 'org-agenda-time-grid
  1338. :version "24.1"
  1339. :type 'boolean)
  1340. (defcustom org-agenda-current-time-string
  1341. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1342. "The string for the current time marker in the agenda."
  1343. :group 'org-agenda-time-grid
  1344. :version "24.1"
  1345. :type 'string)
  1346. (defgroup org-agenda-sorting nil
  1347. "Options concerning sorting in the Org Agenda."
  1348. :tag "Org Agenda Sorting"
  1349. :group 'org-agenda)
  1350. (defcustom org-agenda-sorting-strategy
  1351. '((agenda habit-down time-up priority-down category-keep)
  1352. (todo priority-down category-keep)
  1353. (tags priority-down category-keep)
  1354. (search category-keep))
  1355. "Sorting structure for the agenda items of a single day.
  1356. This is a list of symbols which will be used in sequence to determine
  1357. if an entry should be listed before another entry. The following
  1358. symbols are recognized:
  1359. time-up Put entries with time-of-day indications first, early first
  1360. time-down Put entries with time-of-day indications first, late first
  1361. timestamp-up Sort by any timestamp, early first
  1362. timestamp-down Sort by any timestamp, late first
  1363. scheduled-up Sort by scheduled timestamp, early first
  1364. scheduled-down Sort by scheduled timestamp, late first
  1365. deadline-up Sort by deadline timestamp, early first
  1366. deadline-down Sort by deadline timestamp, late first
  1367. ts-up Sort by active timestamp, early first
  1368. ts-down Sort by active timestamp, late first
  1369. tsia-up Sort by inactive timestamp, early first
  1370. tsia-down Sort by inactive timestamp, late first
  1371. category-keep Keep the default order of categories, corresponding to the
  1372. sequence in `org-agenda-files'.
  1373. category-up Sort alphabetically by category, A-Z.
  1374. category-down Sort alphabetically by category, Z-A.
  1375. tag-up Sort alphabetically by last tag, A-Z.
  1376. tag-down Sort alphabetically by last tag, Z-A.
  1377. priority-up Sort numerically by priority, high priority last.
  1378. priority-down Sort numerically by priority, high priority first.
  1379. todo-state-up Sort by todo state, tasks that are done last.
  1380. todo-state-down Sort by todo state, tasks that are done first.
  1381. effort-up Sort numerically by estimated effort, high effort last.
  1382. effort-down Sort numerically by estimated effort, high effort first.
  1383. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1384. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1385. habit-up Put entries that are habits first
  1386. habit-down Put entries that are habits last
  1387. alpha-up Sort headlines alphabetically
  1388. alpha-down Sort headlines alphabetically, reversed
  1389. The different possibilities will be tried in sequence, and testing stops
  1390. if one comparison returns a \"not-equal\". For example, the default
  1391. '(time-up category-keep priority-down)
  1392. means: Pull out all entries having a specified time of day and sort them,
  1393. in order to make a time schedule for the current day the first thing in the
  1394. agenda listing for the day. Of the entries without a time indication, keep
  1395. the grouped in categories, don't sort the categories, but keep them in
  1396. the sequence given in `org-agenda-files'. Within each category sort by
  1397. priority.
  1398. Leaving out `category-keep' would mean that items will be sorted across
  1399. categories by priority.
  1400. Instead of a single list, this can also be a set of list for specific
  1401. contents, with a context symbol in the car of the list, any of
  1402. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1403. Custom commands can bind this variable in the options section."
  1404. :group 'org-agenda-sorting
  1405. :type `(choice
  1406. (repeat :tag "General" ,org-sorting-choice)
  1407. (list :tag "Individually"
  1408. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1409. (repeat ,org-sorting-choice))
  1410. (cons (const :tag "Strategy for TODO lists" todo)
  1411. (repeat ,org-sorting-choice))
  1412. (cons (const :tag "Strategy for Tags matches" tags)
  1413. (repeat ,org-sorting-choice))
  1414. (cons (const :tag "Strategy for search matches" search)
  1415. (repeat ,org-sorting-choice)))))
  1416. (defcustom org-agenda-cmp-user-defined nil
  1417. "A function to define the comparison `user-defined'.
  1418. This function must receive two arguments, agenda entry a and b.
  1419. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1420. the user comparison, return nil.
  1421. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1422. part of an agenda sorting strategy."
  1423. :group 'org-agenda-sorting
  1424. :type 'symbol)
  1425. (defcustom org-sort-agenda-notime-is-late t
  1426. "Non-nil means items without time are considered late.
  1427. This is only relevant for sorting. When t, items which have no explicit
  1428. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1429. do have a time. When nil, the default time is before 0:00. You can use this
  1430. option to decide if the schedule for today should come before or after timeless
  1431. agenda entries."
  1432. :group 'org-agenda-sorting
  1433. :type 'boolean)
  1434. (defcustom org-sort-agenda-noeffort-is-high t
  1435. "Non-nil means items without effort estimate are sorted as high effort.
  1436. This also applies when filtering an agenda view with respect to the
  1437. < or > effort operator. Then, tasks with no effort defined will be treated
  1438. as tasks with high effort.
  1439. When nil, such items are sorted as 0 minutes effort."
  1440. :group 'org-agenda-sorting
  1441. :type 'boolean)
  1442. (defgroup org-agenda-line-format nil
  1443. "Options concerning the entry prefix in the Org agenda display."
  1444. :tag "Org Agenda Line Format"
  1445. :group 'org-agenda)
  1446. (defcustom org-agenda-prefix-format
  1447. '((agenda . " %i %-12:c%?-12t% s")
  1448. (todo . " %i %-12:c")
  1449. (tags . " %i %-12:c")
  1450. (search . " %i %-12:c"))
  1451. "Format specifications for the prefix of items in the agenda views.
  1452. An alist with one entry per agenda type. The keys of the
  1453. sublists are `agenda', `todo', `search' and `tags'. The values
  1454. are format strings.
  1455. This format works similar to a printf format, with the following meaning:
  1456. %c the category of the item, \"Diary\" for entries from the diary,
  1457. or as given by the CATEGORY keyword or derived from the file name
  1458. %e the effort required by the item
  1459. %l the level of the item (insert X space(s) if item is of level X)
  1460. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1461. %T the last tag of the item (ignore inherited tags, which come first)
  1462. %t the HH:MM time-of-day specification if one applies to the entry
  1463. %s Scheduling/Deadline information, a short string
  1464. %b show breadcrumbs, i.e., the names of the higher levels
  1465. %(expression) Eval EXPRESSION and replace the control string
  1466. by the result
  1467. All specifiers work basically like the standard `%s' of printf, but may
  1468. contain two additional characters: a question mark just after the `%'
  1469. and a whitespace/punctuation character just before the final letter.
  1470. If the first character after `%' is a question mark, the entire field
  1471. will only be included if the corresponding value applies to the current
  1472. entry. This is useful for fields which should have fixed width when
  1473. present, but zero width when absent. For example, \"%?-12t\" will
  1474. result in a 12 character time field if a time of the day is specified,
  1475. but will completely disappear in entries which do not contain a time.
  1476. If there is punctuation or whitespace character just before the
  1477. final format letter, this character will be appended to the field
  1478. value if the value is not empty. For example, the format
  1479. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1480. the category is empty, no additional colon is inserted.
  1481. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1482. which means:
  1483. - Indent the line with two space characters
  1484. - Give the category a 12 chars wide field, padded with whitespace on
  1485. the right (because of `-'). Append a colon if there is a category
  1486. (because of `:').
  1487. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1488. time, don't put in an empty field, just skip it (because of '?').
  1489. - Finally, put the scheduling information.
  1490. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1491. `org-agenda-remove-tags'.
  1492. Custom commands can set this variable in the options section."
  1493. :type '(choice
  1494. (string :tag "General format")
  1495. (list :greedy t :tag "View dependent"
  1496. (cons (const agenda) (string :tag "Format"))
  1497. (cons (const todo) (string :tag "Format"))
  1498. (cons (const tags) (string :tag "Format"))
  1499. (cons (const search) (string :tag "Format"))))
  1500. :group 'org-agenda-line-format
  1501. :version "26.1"
  1502. :package-version '(Org . "9.1"))
  1503. (defvar org-prefix-format-compiled nil
  1504. "The compiled prefix format and associated variables.
  1505. This is a list where first element is a list of variable bindings, and second
  1506. element is the compiled format expression. See the variable
  1507. `org-agenda-prefix-format'.")
  1508. (defcustom org-agenda-todo-keyword-format "%-1s"
  1509. "Format for the TODO keyword in agenda lines.
  1510. Set this to something like \"%-12s\" if you want all TODO keywords
  1511. to occupy a fixed space in the agenda display."
  1512. :group 'org-agenda-line-format
  1513. :type 'string)
  1514. (defcustom org-agenda-diary-sexp-prefix nil
  1515. "A regexp that matches part of a diary sexp entry
  1516. which should be treated as scheduling/deadline information in
  1517. `org-agenda'.
  1518. For example, you can use this to extract the `diary-remind-message' from
  1519. `diary-remind' entries."
  1520. :group 'org-agenda-line-format
  1521. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1522. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1523. "Text preceding timerange entries in the agenda view.
  1524. This is a list with two strings. The first applies when the range
  1525. is entirely on one day. The second applies if the range spans several days.
  1526. The strings may have two \"%d\" format specifiers which will be filled
  1527. with the sequence number of the days, and the total number of days in the
  1528. range, respectively."
  1529. :group 'org-agenda-line-format
  1530. :type '(list
  1531. (string :tag "Deadline today ")
  1532. (choice :tag "Deadline relative"
  1533. (string :tag "Format string")
  1534. (function))))
  1535. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1536. "Text preceding scheduled items in the agenda view.
  1537. This is a list with two strings. The first applies when the item is
  1538. scheduled on the current day. The second applies when it has been scheduled
  1539. previously, it may contain a %d indicating that this is the nth time that
  1540. this item is scheduled, due to automatic rescheduling of unfinished items
  1541. for the following day. So this number is one larger than the number of days
  1542. that passed since this item was scheduled first."
  1543. :group 'org-agenda-line-format
  1544. :version "24.4"
  1545. :package-version '(Org . "8.0")
  1546. :type '(list
  1547. (string :tag "Scheduled today ")
  1548. (string :tag "Scheduled previously")))
  1549. (defcustom org-agenda-inactive-leader "["
  1550. "Text preceding item pulled into the agenda by inactive time stamps.
  1551. These entries are added to the agenda when pressing \"[\"."
  1552. :group 'org-agenda-line-format
  1553. :version "24.1"
  1554. :type 'string)
  1555. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1556. "Text preceding deadline items in the agenda view.
  1557. This is a list with three strings. The first applies when the item has its
  1558. deadline on the current day. The second applies when the deadline is in the
  1559. future, the third one when it is in the past. The strings may contain %d
  1560. to capture the number of days."
  1561. :group 'org-agenda-line-format
  1562. :version "24.4"
  1563. :package-version '(Org . "8.0")
  1564. :type '(list
  1565. (string :tag "Deadline today ")
  1566. (string :tag "Deadline in the future ")
  1567. (string :tag "Deadline in the past ")))
  1568. (defcustom org-agenda-remove-times-when-in-prefix t
  1569. "Non-nil means remove duplicate time specifications in agenda items.
  1570. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1571. time-of-day specification in a headline or diary entry is extracted and
  1572. placed into the prefix. If this option is non-nil, the original specification
  1573. \(a timestamp or -range, or just a plain time(range) specification like
  1574. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1575. cluttered.
  1576. The option can be t or nil. It may also be the symbol `beg', indicating
  1577. that the time should only be removed when it is located at the beginning of
  1578. the headline/diary entry."
  1579. :group 'org-agenda-line-format
  1580. :type '(choice
  1581. (const :tag "Always" t)
  1582. (const :tag "Never" nil)
  1583. (const :tag "When at beginning of entry" beg)))
  1584. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1585. "Non-nil means remove time ranges specifications in agenda
  1586. items that span on several days."
  1587. :group 'org-agenda-line-format
  1588. :version "24.1"
  1589. :type 'boolean)
  1590. (defcustom org-agenda-default-appointment-duration nil
  1591. "Default duration for appointments that only have a starting time.
  1592. When nil, no duration is specified in such cases.
  1593. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1594. :group 'org-agenda-line-format
  1595. :type '(choice
  1596. (integer :tag "Minutes")
  1597. (const :tag "No default duration")))
  1598. (defcustom org-agenda-show-inherited-tags t
  1599. "Non-nil means show inherited tags in each agenda line.
  1600. When this option is set to `always', it takes precedence over
  1601. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1602. in every agenda.
  1603. When this option is set to t (the default), inherited tags are
  1604. shown when they are available, i.e. when the value of
  1605. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1606. given agenda type.
  1607. This can be set to a list of agenda types in which the agenda
  1608. must display the inherited tags. Available types are `todo',
  1609. `agenda' and `search'.
  1610. When set to nil, never show inherited tags in agenda lines."
  1611. :group 'org-agenda-line-format
  1612. :group 'org-agenda
  1613. :version "24.3"
  1614. :type '(choice
  1615. (const :tag "Show inherited tags when available" t)
  1616. (const :tag "Always show inherited tags" always)
  1617. (repeat :tag "Show inherited tags only in selected agenda types"
  1618. (symbol :tag "Agenda type"))))
  1619. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1620. "List of agenda view types where to use tag inheritance.
  1621. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1622. controlled by `org-use-tag-inheritance'. In other agenda types,
  1623. `org-use-tag-inheritance' is not used for the selection of the
  1624. agenda entries. Still, you may want the agenda to be aware of
  1625. the inherited tags anyway, e.g. for later tag filtering.
  1626. Allowed value are `todo', `search' and `agenda'.
  1627. This variable has no effect if `org-agenda-show-inherited-tags'
  1628. is set to `always'. In that case, the agenda is aware of those
  1629. tags.
  1630. The default value sets tags in every agenda type. Setting this
  1631. option to nil will speed up non-tags agenda view a lot."
  1632. :group 'org-agenda
  1633. :version "26.1"
  1634. :package-version '(Org . "9.1")
  1635. :type '(choice
  1636. (const :tag "Use tag inheritance in all agenda types" t)
  1637. (repeat :tag "Use tag inheritance in selected agenda types"
  1638. (symbol :tag "Agenda type"))))
  1639. (defcustom org-agenda-hide-tags-regexp nil
  1640. "Regular expression used to filter away specific tags in agenda views.
  1641. This means that these tags will be present, but not be shown in the agenda
  1642. line. Secondary filtering will still work on the hidden tags.
  1643. Nil means don't hide any tags."
  1644. :group 'org-agenda-line-format
  1645. :type '(choice
  1646. (const :tag "Hide none" nil)
  1647. (string :tag "Regexp ")))
  1648. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1649. 'org-agenda-remove-tags)
  1650. (defcustom org-agenda-remove-tags nil
  1651. "Non-nil means remove the tags from the headline copy in the agenda.
  1652. When this is the symbol `prefix', only remove tags when
  1653. `org-agenda-prefix-format' contains a `%T' specifier."
  1654. :group 'org-agenda-line-format
  1655. :type '(choice
  1656. (const :tag "Always" t)
  1657. (const :tag "Never" nil)
  1658. (const :tag "When prefix format contains %T" prefix)))
  1659. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1660. (defcustom org-agenda-tags-column 'auto
  1661. "Shift tags in agenda items to this column.
  1662. If set to `auto', tags will be automatically aligned to the right
  1663. edge of the window.
  1664. If set to a positive number, tags will be left-aligned to that
  1665. column. If set to a negative number, tags will be right-aligned
  1666. to that column. For example, -80 works well for a normal 80
  1667. character screen."
  1668. :group 'org-agenda-line-format
  1669. :type '(choice
  1670. (const :tag "Automatically align to right edge of window" auto)
  1671. (integer :tag "Specific column" -80))
  1672. :package-version '(Org . "9.1")
  1673. :version "26.1")
  1674. (defcustom org-agenda-fontify-priorities 'cookies
  1675. "Non-nil means highlight low and high priorities in agenda.
  1676. When t, the highest priority entries are bold, lowest priority italic.
  1677. However, settings in `org-priority-faces' will overrule these faces.
  1678. When this variable is the symbol `cookies', only fontify the
  1679. cookies, not the entire task.
  1680. This may also be an association list of priority faces, whose
  1681. keys are the character values of `org-highest-priority',
  1682. `org-default-priority', and `org-lowest-priority' (the default values
  1683. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1684. color as a string, or a list like `(:background \"Red\")'.
  1685. If it is a color, the variable `org-faces-easy-properties'
  1686. determines if it is a foreground or a background color."
  1687. :group 'org-agenda-line-format
  1688. :type '(choice
  1689. (const :tag "Never" nil)
  1690. (const :tag "Defaults" t)
  1691. (const :tag "Cookies only" cookies)
  1692. (repeat :tag "Specify"
  1693. (list (character :tag "Priority" :value ?A)
  1694. (choice :tag "Face "
  1695. (string :tag "Color")
  1696. (sexp :tag "Face"))))))
  1697. (defcustom org-agenda-day-face-function nil
  1698. "Function called to determine what face should be used to display a day.
  1699. The only argument passed to that function is the day. It should
  1700. returns a face, or nil if does not want to specify a face and let
  1701. the normal rules apply."
  1702. :group 'org-agenda-line-format
  1703. :version "24.1"
  1704. :type '(choice (const nil) (function)))
  1705. (defcustom org-agenda-category-icon-alist nil
  1706. "Alist of category icon to be displayed in agenda views.
  1707. Each entry should have the following format:
  1708. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1709. Where CATEGORY-REGEXP is a regexp matching the categories where
  1710. the icon should be displayed.
  1711. FILE-OR-DATA either a file path or a string containing image data.
  1712. The other fields can be omitted safely if not needed:
  1713. TYPE indicates the image type.
  1714. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1715. image data.
  1716. PROPS are additional image attributes to assign to the image,
  1717. like, e.g. `:ascent center'.
  1718. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1719. If you want to set the display properties yourself, just put a
  1720. list as second element:
  1721. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1722. For example, to display a 16px horizontal space for Emacs
  1723. category, you can use:
  1724. (\"Emacs\" \\='(space . (:width (16))))"
  1725. :group 'org-agenda-line-format
  1726. :version "24.1"
  1727. :type '(alist :key-type (string :tag "Regexp matching category")
  1728. :value-type (choice (list :tag "Icon"
  1729. (string :tag "File or data")
  1730. (symbol :tag "Type")
  1731. (boolean :tag "Data?")
  1732. (repeat :tag "Extra image properties" :inline t symbol))
  1733. (list :tag "Display properties" sexp))))
  1734. (defgroup org-agenda-column-view nil
  1735. "Options concerning column view in the agenda."
  1736. :tag "Org Agenda Column View"
  1737. :group 'org-agenda)
  1738. (defcustom org-agenda-view-columns-initially nil
  1739. "When non-nil, switch to columns view right after creating the agenda."
  1740. :group 'org-agenda-column-view
  1741. :type 'boolean
  1742. :version "26.1"
  1743. :package-version '(Org . "9.0")
  1744. :safe #'booleanp)
  1745. (defcustom org-agenda-columns-show-summaries t
  1746. "Non-nil means show summaries for columns displayed in the agenda view."
  1747. :group 'org-agenda-column-view
  1748. :type 'boolean)
  1749. (defcustom org-agenda-columns-compute-summary-properties t
  1750. "Non-nil means recompute all summary properties before column view.
  1751. When column view in the agenda is listing properties that have a summary
  1752. operator, it can go to all relevant buffers and recompute the summaries
  1753. there. This can mean overhead for the agenda column view, but is necessary
  1754. to have thing up to date.
  1755. As a special case, a CLOCKSUM property also makes sure that the clock
  1756. computations are current."
  1757. :group 'org-agenda-column-view
  1758. :type 'boolean)
  1759. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1760. "Non-nil means the duration of an appointment will add to day effort.
  1761. The property to which appointment durations will be added is the one given
  1762. in the option `org-effort-property'. If an appointment does not have
  1763. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1764. is not set, an appointment without end time will not contribute to the time
  1765. estimate."
  1766. :group 'org-agenda-column-view
  1767. :type 'boolean)
  1768. (defcustom org-agenda-auto-exclude-function nil
  1769. "A function called with a tag to decide if it is filtered on \
  1770. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1771. The sole argument to the function, which is called once for each
  1772. possible tag, is a string giving the name of the tag. The
  1773. function should return either nil if the tag should be included
  1774. as normal, or \"-<TAG>\" to exclude the tag.
  1775. Note that for the purpose of tag filtering, only the lower-case version of
  1776. all tags will be considered, so that this function will only ever see
  1777. the lower-case version of all tags."
  1778. :group 'org-agenda
  1779. :type '(choice (const nil) (function)))
  1780. (defcustom org-agenda-bulk-custom-functions nil
  1781. "Alist of characters and custom functions for bulk actions.
  1782. For example, this value makes those two functions available:
  1783. \\='((?R set-category)
  1784. (?C bulk-cut))
  1785. With selected entries in an agenda buffer, `B R' will call
  1786. the custom function `set-category' on the selected entries.
  1787. Note that functions in this alist don't need to be quoted."
  1788. :type '(alist :key-type character :value-type (group function))
  1789. :version "24.1"
  1790. :group 'org-agenda)
  1791. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1792. "Execute BODY with point at location given by `org-hd-marker' property.
  1793. If STRING is non-nil, the text property will be fetched from position 0
  1794. in that string. If STRING is nil, it will be fetched from the beginning
  1795. of the current line."
  1796. (org-with-gensyms (marker)
  1797. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1798. 'org-hd-marker ,string)))
  1799. (with-current-buffer (marker-buffer ,marker)
  1800. (save-excursion
  1801. (goto-char ,marker)
  1802. ,@body)))))
  1803. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1804. (defun org-add-agenda-custom-command (entry)
  1805. "Replace or add a command in `org-agenda-custom-commands'.
  1806. This is mostly for hacking and trying a new command - once the command
  1807. works you probably want to add it to `org-agenda-custom-commands' for good."
  1808. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1809. (if ass
  1810. (setcdr ass (cdr entry))
  1811. (push entry org-agenda-custom-commands))))
  1812. (defmacro org-agenda--insert-overriding-header (default)
  1813. "Insert header into agenda view.
  1814. The inserted header depends on `org-agenda-overriding-header'.
  1815. If the empty string, don't insert a header. If any other string,
  1816. insert it as a header. If nil, insert DEFAULT, which should
  1817. evaluate to a string."
  1818. (declare (debug (form)) (indent defun))
  1819. `(cond
  1820. ((not org-agenda-overriding-header) (insert ,default))
  1821. ((equal org-agenda-overriding-header "") nil)
  1822. ((stringp org-agenda-overriding-header)
  1823. (insert (propertize org-agenda-overriding-header
  1824. 'face 'org-agenda-structure)
  1825. "\n"))
  1826. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1827. org-agenda-overriding-header))))
  1828. ;;; Define the org-agenda-mode
  1829. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1830. (defvar org-agenda-mode-map (make-sparse-keymap)
  1831. "Keymap for `org-agenda-mode'.")
  1832. (defvar org-agenda-menu) ; defined later in this file.
  1833. (defvar org-agenda-restrict nil) ; defined later in this file.
  1834. (defvar org-agenda-follow-mode nil)
  1835. (defvar org-agenda-entry-text-mode nil)
  1836. (defvar org-agenda-clockreport-mode nil)
  1837. (defvar org-agenda-show-log nil
  1838. "When non-nil, show the log in the agenda.
  1839. Do not set this directly; instead use
  1840. `org-agenda-start-with-log-mode', which see.")
  1841. (defvar org-agenda-redo-command nil)
  1842. (defvar org-agenda-query-string nil)
  1843. (defvar org-agenda-mode-hook nil
  1844. "Hook run after `org-agenda-mode' is turned on.
  1845. The buffer is still writable when this hook is called.")
  1846. (defvar org-agenda-type nil)
  1847. (defvar org-agenda-force-single-file nil)
  1848. (defvar org-agenda-bulk-marked-entries nil
  1849. "List of markers that refer to marked entries in the agenda.")
  1850. (defvar org-agenda-current-date nil
  1851. "Active date when building the agenda.")
  1852. ;;; Multiple agenda buffers support
  1853. (defcustom org-agenda-sticky nil
  1854. "Non-nil means agenda q key will bury agenda buffers.
  1855. Agenda commands will then show existing buffer instead of generating new ones.
  1856. When nil, `q' will kill the single agenda buffer."
  1857. :group 'org-agenda
  1858. :version "24.3"
  1859. :type 'boolean)
  1860. ;;;###autoload
  1861. (defun org-toggle-sticky-agenda (&optional arg)
  1862. "Toggle `org-agenda-sticky'."
  1863. (interactive "P")
  1864. (let ((new-value (if arg
  1865. (> (prefix-numeric-value arg) 0)
  1866. (not org-agenda-sticky))))
  1867. (if (equal new-value org-agenda-sticky)
  1868. (and (called-interactively-p 'interactive)
  1869. (message "Sticky agenda was already %s"
  1870. (if org-agenda-sticky "enabled" "disabled")))
  1871. (setq org-agenda-sticky new-value)
  1872. (org-agenda-kill-all-agenda-buffers)
  1873. (and (called-interactively-p 'interactive)
  1874. (message "Sticky agenda %s"
  1875. (if org-agenda-sticky "enabled" "disabled"))))))
  1876. (defvar org-agenda-buffer nil
  1877. "Agenda buffer currently being generated.")
  1878. (defvar org-agenda-last-prefix-arg nil)
  1879. (defvar org-agenda-this-buffer-name nil)
  1880. (defvar org-agenda-doing-sticky-redo nil)
  1881. (defvar org-agenda-this-buffer-is-sticky nil)
  1882. (defvar org-agenda-last-indirect-buffer nil
  1883. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1884. (defconst org-agenda-local-vars
  1885. '(org-agenda-this-buffer-name
  1886. org-agenda-undo-list
  1887. org-agenda-pending-undo-list
  1888. org-agenda-follow-mode
  1889. org-agenda-entry-text-mode
  1890. org-agenda-clockreport-mode
  1891. org-agenda-show-log
  1892. org-agenda-redo-command
  1893. org-agenda-query-string
  1894. org-agenda-type
  1895. org-agenda-bulk-marked-entries
  1896. org-agenda-undo-has-started-in
  1897. org-agenda-info
  1898. org-agenda-pre-window-conf
  1899. org-agenda-columns-active
  1900. org-agenda-tag-filter
  1901. org-agenda-category-filter
  1902. org-agenda-top-headline-filter
  1903. org-agenda-regexp-filter
  1904. org-agenda-effort-filter
  1905. org-agenda-markers
  1906. org-agenda-last-search-view-search-was-boolean
  1907. org-agenda-last-indirect-buffer
  1908. org-agenda-filtered-by-category
  1909. org-agenda-filter-form
  1910. org-agenda-cycle-counter
  1911. org-agenda-last-prefix-arg)
  1912. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1913. (defun org-agenda-mode ()
  1914. "Mode for time-sorted view on action items in Org files.
  1915. The following commands are available:
  1916. \\{org-agenda-mode-map}"
  1917. (interactive)
  1918. (let ((agenda-local-vars-to-keep
  1919. '(text-scale-mode-amount
  1920. text-scale-mode
  1921. text-scale-mode-lighter
  1922. face-remapping-alist))
  1923. (save (buffer-local-variables)))
  1924. (kill-all-local-variables)
  1925. (cl-flet ((reset-saved (var-set)
  1926. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1927. (dolist (elem save)
  1928. (pcase elem
  1929. (`(,var . ,val) ;ignore unbound variables
  1930. (when (and val (memq var var-set))
  1931. (set var val)))))))
  1932. (cond (org-agenda-doing-sticky-redo
  1933. ;; Refreshing sticky agenda-buffer
  1934. ;;
  1935. ;; Preserve the value of `org-agenda-local-vars' variables.
  1936. (mapc #'make-local-variable org-agenda-local-vars)
  1937. (reset-saved org-agenda-local-vars)
  1938. (setq-local org-agenda-this-buffer-is-sticky t))
  1939. (org-agenda-sticky
  1940. ;; Creating a sticky Agenda buffer for the first time
  1941. (mapc 'make-local-variable org-agenda-local-vars)
  1942. (setq-local org-agenda-this-buffer-is-sticky t))
  1943. (t
  1944. ;; Creating a non-sticky agenda buffer
  1945. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1946. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1947. (reset-saved agenda-local-vars-to-keep)))
  1948. (setq org-agenda-undo-list nil
  1949. org-agenda-pending-undo-list nil
  1950. org-agenda-bulk-marked-entries nil)
  1951. (setq major-mode 'org-agenda-mode)
  1952. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1953. (setq-local font-lock-global-modes (list 'not major-mode))
  1954. (setq mode-name "Org-Agenda")
  1955. (setq indent-tabs-mode nil)
  1956. (use-local-map org-agenda-mode-map)
  1957. (easy-menu-add org-agenda-menu)
  1958. (when org-startup-truncated (setq truncate-lines t))
  1959. (setq-local line-move-visual nil)
  1960. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1961. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1962. ;; Make sure properties are removed when copying text
  1963. (if (boundp 'filter-buffer-substring-functions)
  1964. (add-hook 'filter-buffer-substring-functions
  1965. (lambda (fun start end delete)
  1966. (substring-no-properties (funcall fun start end delete)))
  1967. nil t)
  1968. ;; Emacs >= 24.4.
  1969. (add-function :filter-return (local 'filter-buffer-substring-function)
  1970. #'substring-no-properties))
  1971. (unless org-agenda-keep-modes
  1972. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1973. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1974. org-agenda-show-log org-agenda-start-with-log-mode
  1975. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  1976. (add-to-invisibility-spec '(org-filtered))
  1977. (add-to-invisibility-spec '(org-link))
  1978. (easy-menu-change
  1979. '("Agenda") "Agenda Files"
  1980. (append
  1981. (list
  1982. (vector
  1983. (if (get 'org-agenda-files 'org-restrict)
  1984. "Restricted to single file"
  1985. "Edit File List")
  1986. '(org-edit-agenda-file-list)
  1987. (not (get 'org-agenda-files 'org-restrict)))
  1988. "--")
  1989. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1990. (org-agenda-set-mode-name)
  1991. (apply
  1992. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1993. (list 'org-agenda-mode-hook)))
  1994. (substitute-key-definition 'undo 'org-agenda-undo
  1995. org-agenda-mode-map global-map)
  1996. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1997. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1998. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1999. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  2000. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  2001. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  2002. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  2003. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  2004. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  2005. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  2006. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  2007. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  2008. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  2009. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  2010. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  2011. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  2012. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  2013. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  2014. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  2015. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  2016. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  2017. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  2018. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  2019. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  2020. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  2021. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  2022. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  2023. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  2024. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  2025. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  2026. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  2027. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  2028. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  2029. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  2030. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  2031. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  2032. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  2033. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  2034. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  2035. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  2036. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  2037. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  2038. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  2039. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  2040. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  2041. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  2042. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  2043. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  2044. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  2045. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  2046. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  2047. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  2048. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  2049. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2050. (while l (org-defkey org-agenda-mode-map
  2051. (int-to-string (pop l)) 'digit-argument)))
  2052. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  2053. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  2054. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  2055. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  2056. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  2057. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  2058. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  2059. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  2060. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  2061. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo-all)
  2062. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  2063. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  2064. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2065. 'org-clock-modify-effort-estimate)
  2066. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  2067. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2068. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2069. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2070. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2071. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2072. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2073. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2074. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2075. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2076. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2077. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2078. (substitute-key-definition 'next-line 'org-agenda-next-line
  2079. org-agenda-mode-map global-map)
  2080. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2081. org-agenda-mode-map global-map)
  2082. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2083. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2085. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2086. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2087. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2088. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2089. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2090. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2091. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2092. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2093. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2094. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2095. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2096. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2097. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2098. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2099. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2100. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2101. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2102. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2103. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2104. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2105. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2106. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2107. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2108. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2109. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2110. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2111. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2112. (org-defkey org-agenda-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock-from-agenda)
  2113. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2114. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2115. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2116. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2117. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2118. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2119. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2120. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2121. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2122. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2123. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2124. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2125. (org-defkey org-agenda-mode-map "\C-c\C-x_" 'org-timer-stop)
  2126. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2127. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2128. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2129. (org-defkey org-agenda-mode-map "\C-c\C-xI" 'org-info-find-node)
  2130. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2131. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2132. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2133. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2134. (when org-agenda-mouse-1-follows-link
  2135. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2136. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2137. '("Agenda"
  2138. ("Agenda Files")
  2139. "--"
  2140. ("Agenda Dates"
  2141. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2142. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2143. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2144. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2145. "--"
  2146. ("View"
  2147. ["Day View" org-agenda-day-view
  2148. :active (org-agenda-check-type nil 'agenda)
  2149. :style radio :selected (eq org-agenda-current-span 'day)
  2150. :keys "v d (or just d)"]
  2151. ["Week View" org-agenda-week-view
  2152. :active (org-agenda-check-type nil 'agenda)
  2153. :style radio :selected (eq org-agenda-current-span 'week)
  2154. :keys "v w"]
  2155. ["Fortnight View" org-agenda-fortnight-view
  2156. :active (org-agenda-check-type nil 'agenda)
  2157. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2158. :keys "v t"]
  2159. ["Month View" org-agenda-month-view
  2160. :active (org-agenda-check-type nil 'agenda)
  2161. :style radio :selected (eq org-agenda-current-span 'month)
  2162. :keys "v m"]
  2163. ["Year View" org-agenda-year-view
  2164. :active (org-agenda-check-type nil 'agenda)
  2165. :style radio :selected (eq org-agenda-current-span 'year)
  2166. :keys "v y"]
  2167. "--"
  2168. ["Include Diary" org-agenda-toggle-diary
  2169. :style toggle :selected org-agenda-include-diary
  2170. :active (org-agenda-check-type nil 'agenda)]
  2171. ["Include Deadlines" org-agenda-toggle-deadlines
  2172. :style toggle :selected org-agenda-include-deadlines
  2173. :active (org-agenda-check-type nil 'agenda)]
  2174. ["Use Time Grid" org-agenda-toggle-time-grid
  2175. :style toggle :selected org-agenda-use-time-grid
  2176. :active (org-agenda-check-type nil 'agenda)]
  2177. "--"
  2178. ["Show clock report" org-agenda-clockreport-mode
  2179. :style toggle :selected org-agenda-clockreport-mode
  2180. :active (org-agenda-check-type nil 'agenda)]
  2181. ["Show some entry text" org-agenda-entry-text-mode
  2182. :style toggle :selected org-agenda-entry-text-mode
  2183. :active t]
  2184. "--"
  2185. ["Show Logbook entries" org-agenda-log-mode
  2186. :style toggle :selected org-agenda-show-log
  2187. :active (org-agenda-check-type nil 'agenda)
  2188. :keys "v l (or just l)"]
  2189. ["Include archived trees" org-agenda-archives-mode
  2190. :style toggle :selected org-agenda-archives-mode :active t
  2191. :keys "v a"]
  2192. ["Include archive files" (org-agenda-archives-mode t)
  2193. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2194. :keys "v A"]
  2195. "--"
  2196. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2197. ["Write view to file" org-agenda-write t]
  2198. ["Rebuild buffer" org-agenda-redo t]
  2199. ["Save all Org buffers" org-save-all-org-buffers t]
  2200. "--"
  2201. ["Show original entry" org-agenda-show t]
  2202. ["Go To (other window)" org-agenda-goto t]
  2203. ["Go To (this window)" org-agenda-switch-to t]
  2204. ["Capture with cursor date" org-agenda-capture t]
  2205. ["Follow Mode" org-agenda-follow-mode
  2206. :style toggle :selected org-agenda-follow-mode :active t]
  2207. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2208. "--"
  2209. ("TODO"
  2210. ["Cycle TODO" org-agenda-todo t]
  2211. ["Next TODO set" org-agenda-todo-nextset t]
  2212. ["Previous TODO set" org-agenda-todo-previousset t]
  2213. ["Add note" org-agenda-add-note t])
  2214. ("Archive/Refile/Delete"
  2215. ["Archive default" org-agenda-archive-default t]
  2216. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2217. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2218. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2219. ["Archive subtree" org-agenda-archive t]
  2220. "--"
  2221. ["Refile" org-agenda-refile t]
  2222. "--"
  2223. ["Delete subtree" org-agenda-kill t])
  2224. ("Bulk action"
  2225. ["Mark entry" org-agenda-bulk-mark t]
  2226. ["Mark all" org-agenda-bulk-mark-all t]
  2227. ["Unmark entry" org-agenda-bulk-unmark t]
  2228. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2229. ["Toggle mark" org-agenda-bulk-toggle t]
  2230. ["Toggle all" org-agenda-bulk-toggle-all t]
  2231. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2232. ["Act on all marked" org-agenda-bulk-action t]
  2233. "--"
  2234. ("Tags and Properties"
  2235. ["Show all Tags" org-agenda-show-tags t]
  2236. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2237. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2238. "--"
  2239. ["Column View" org-columns t])
  2240. ("Deadline/Schedule"
  2241. ["Schedule" org-agenda-schedule t]
  2242. ["Set Deadline" org-agenda-deadline t]
  2243. "--"
  2244. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2245. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2246. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2247. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2248. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2249. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2250. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2251. ("Clock and Effort"
  2252. ["Clock in" org-agenda-clock-in t]
  2253. ["Clock out" org-agenda-clock-out t]
  2254. ["Clock cancel" org-agenda-clock-cancel t]
  2255. ["Goto running clock" org-clock-goto t]
  2256. "--"
  2257. ["Set Effort" org-agenda-set-effort t]
  2258. ["Change clocked effort" org-clock-modify-effort-estimate
  2259. (org-clock-is-active)])
  2260. ("Priority"
  2261. ["Set Priority" org-agenda-priority t]
  2262. ["Increase Priority" org-agenda-priority-up t]
  2263. ["Decrease Priority" org-agenda-priority-down t]
  2264. ["Show Priority" org-show-priority t])
  2265. ("Calendar/Diary"
  2266. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2267. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2268. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2269. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2270. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2271. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2272. "--"
  2273. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2274. "--"
  2275. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2276. "--"
  2277. ("MobileOrg"
  2278. ["Push Files and Views" org-mobile-push t]
  2279. ["Get Captured and Flagged" org-mobile-pull t]
  2280. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2281. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2282. "--"
  2283. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2284. "--"
  2285. ["Quit" org-agenda-quit t]
  2286. ["Exit and Release Buffers" org-agenda-exit t]
  2287. ))
  2288. ;;; Agenda undo
  2289. (defvar org-agenda-allow-remote-undo t
  2290. "Non-nil means allow remote undo from the agenda buffer.")
  2291. (defvar org-agenda-undo-has-started-in nil
  2292. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2293. (defun org-agenda-undo ()
  2294. "Undo a remote editing step in the agenda.
  2295. This undoes changes both in the agenda buffer and in the remote buffer
  2296. that have been changed along."
  2297. (interactive)
  2298. (or org-agenda-allow-remote-undo
  2299. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2300. (when (not (eq this-command last-command))
  2301. (setq org-agenda-undo-has-started-in nil
  2302. org-agenda-pending-undo-list org-agenda-undo-list))
  2303. (when (not org-agenda-pending-undo-list)
  2304. (user-error "No further undo information"))
  2305. (let* ((entry (pop org-agenda-pending-undo-list))
  2306. buf line cmd rembuf)
  2307. (setq cmd (pop entry) line (pop entry))
  2308. (setq rembuf (nth 2 entry))
  2309. (org-with-remote-undo rembuf
  2310. (while (bufferp (setq buf (pop entry)))
  2311. (when (pop entry)
  2312. (with-current-buffer buf
  2313. (let ((last-undo-buffer buf)
  2314. (inhibit-read-only t))
  2315. (unless (memq buf org-agenda-undo-has-started-in)
  2316. (push buf org-agenda-undo-has-started-in)
  2317. (make-local-variable 'pending-undo-list)
  2318. (undo-start))
  2319. (while (and pending-undo-list
  2320. (listp pending-undo-list)
  2321. (not (car pending-undo-list)))
  2322. (pop pending-undo-list))
  2323. (undo-more 1))))))
  2324. (org-goto-line line)
  2325. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2326. (defun org-verify-change-for-undo (l1 l2)
  2327. "Verify that a real change occurred between the undo lists L1 and L2."
  2328. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2329. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2330. (not (eq l1 l2)))
  2331. ;;; Agenda dispatch
  2332. (defvar org-agenda-restrict-begin (make-marker))
  2333. (defvar org-agenda-restrict-end (make-marker))
  2334. (defvar org-agenda-last-dispatch-buffer nil)
  2335. (defvar org-agenda-overriding-restriction nil)
  2336. (defcustom org-agenda-custom-commands-contexts nil
  2337. "Alist of custom agenda keys and contextual rules.
  2338. For example, if you have a custom agenda command \"p\" and you
  2339. want this command to be accessible only from plain text files,
  2340. use this:
  2341. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2342. Here are the available contexts definitions:
  2343. in-file: command displayed only in matching files
  2344. in-mode: command displayed only in matching modes
  2345. not-in-file: command not displayed in matching files
  2346. not-in-mode: command not displayed in matching modes
  2347. in-buffer: command displayed only in matching buffers
  2348. not-in-buffer: command not displayed in matching buffers
  2349. [function]: a custom function taking no argument
  2350. If you define several checks, the agenda command will be
  2351. accessible if there is at least one valid check.
  2352. You can also bind a key to another agenda custom command
  2353. depending on contextual rules.
  2354. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2355. Here it means: in .txt files, use \"p\" as the key for the
  2356. agenda command otherwise associated with \"q\". (The command
  2357. originally associated with \"q\" is not displayed to avoid
  2358. duplicates.)"
  2359. :version "24.3"
  2360. :group 'org-agenda-custom-commands
  2361. :type '(repeat (list :tag "Rule"
  2362. (string :tag " Agenda key")
  2363. (string :tag "Replace by command")
  2364. (repeat :tag "Available when"
  2365. (choice
  2366. (cons :tag "Condition"
  2367. (choice
  2368. (const :tag "In file" in-file)
  2369. (const :tag "Not in file" not-in-file)
  2370. (const :tag "In buffer" in-buffer)
  2371. (const :tag "Not in buffer" not-in-buffer)
  2372. (const :tag "In mode" in-mode)
  2373. (const :tag "Not in mode" not-in-mode))
  2374. (regexp))
  2375. (function :tag "Custom function"))))))
  2376. (defcustom org-agenda-max-entries nil
  2377. "Maximum number of entries to display in an agenda.
  2378. This can be nil (no limit) or an integer or an alist of agenda
  2379. types with an associated number of entries to display in this
  2380. type."
  2381. :version "24.4"
  2382. :package-version '(Org . "8.0")
  2383. :group 'org-agenda-custom-commands
  2384. :type '(choice (symbol :tag "No limit" nil)
  2385. (integer :tag "Max number of entries")
  2386. (repeat
  2387. (cons (choice :tag "Agenda type"
  2388. (const agenda)
  2389. (const todo)
  2390. (const tags)
  2391. (const search))
  2392. (integer :tag "Max number of entries")))))
  2393. (defcustom org-agenda-max-todos nil
  2394. "Maximum number of TODOs to display in an agenda.
  2395. This can be nil (no limit) or an integer or an alist of agenda
  2396. types with an associated number of entries to display in this
  2397. type."
  2398. :version "24.4"
  2399. :package-version '(Org . "8.0")
  2400. :group 'org-agenda-custom-commands
  2401. :type '(choice (symbol :tag "No limit" nil)
  2402. (integer :tag "Max number of TODOs")
  2403. (repeat
  2404. (cons (choice :tag "Agenda type"
  2405. (const agenda)
  2406. (const todo)
  2407. (const tags)
  2408. (const search))
  2409. (integer :tag "Max number of TODOs")))))
  2410. (defcustom org-agenda-max-tags nil
  2411. "Maximum number of tagged entries to display in an agenda.
  2412. This can be nil (no limit) or an integer or an alist of agenda
  2413. types with an associated number of entries to display in this
  2414. type."
  2415. :version "24.4"
  2416. :package-version '(Org . "8.0")
  2417. :group 'org-agenda-custom-commands
  2418. :type '(choice (symbol :tag "No limit" nil)
  2419. (integer :tag "Max number of tagged entries")
  2420. (repeat
  2421. (cons (choice :tag "Agenda type"
  2422. (const agenda)
  2423. (const todo)
  2424. (const tags)
  2425. (const search))
  2426. (integer :tag "Max number of tagged entries")))))
  2427. (defcustom org-agenda-max-effort nil
  2428. "Maximum cumulated effort duration for the agenda.
  2429. This can be nil (no limit) or a number of minutes (as an integer)
  2430. or an alist of agenda types with an associated number of minutes
  2431. to limit entries to in this type."
  2432. :version "24.4"
  2433. :package-version '(Org . "8.0")
  2434. :group 'org-agenda-custom-commands
  2435. :type '(choice (symbol :tag "No limit" nil)
  2436. (integer :tag "Max number of minutes")
  2437. (repeat
  2438. (cons (choice :tag "Agenda type"
  2439. (const agenda)
  2440. (const todo)
  2441. (const tags)
  2442. (const search))
  2443. (integer :tag "Max number of minutes")))))
  2444. (defvar org-agenda-keep-restricted-file-list nil)
  2445. (defvar org-keys nil)
  2446. (defvar org-match nil)
  2447. ;;;###autoload
  2448. (defun org-agenda (&optional arg org-keys restriction)
  2449. "Dispatch agenda commands to collect entries to the agenda buffer.
  2450. Prompts for a command to execute. Any prefix arg will be passed
  2451. on to the selected command. The default selections are:
  2452. a Call `org-agenda-list' to display the agenda for current day or week.
  2453. t Call `org-todo-list' to display the global todo list.
  2454. T Call `org-todo-list' to display the global todo list, select only
  2455. entries with a specific TODO keyword (the user gets a prompt).
  2456. m Call `org-tags-view' to display headlines with tags matching
  2457. a condition (the user is prompted for the condition).
  2458. M Like `m', but select only TODO entries, no ordinary headlines.
  2459. e Export views to associated files.
  2460. s Search entries for keywords.
  2461. S Search entries for keywords, only with TODO keywords.
  2462. / Multi occur across all agenda files and also files listed
  2463. in `org-agenda-text-search-extra-files'.
  2464. < Restrict agenda commands to buffer, subtree, or region.
  2465. Press several times to get the desired effect.
  2466. > Remove a previous restriction.
  2467. # List \"stuck\" projects.
  2468. ! Configure what \"stuck\" means.
  2469. C Configure custom agenda commands.
  2470. More commands can be added by configuring the variable
  2471. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2472. searches can be pre-defined in this way.
  2473. If the current buffer is in Org mode and visiting a file, you can also
  2474. first press `<' once to indicate that the agenda should be temporarily
  2475. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2476. Pressing `<' twice means to restrict to the current subtree or region
  2477. \(if active)."
  2478. (interactive "P")
  2479. (catch 'exit
  2480. (let* ((prefix-descriptions nil)
  2481. (org-agenda-buffer-name org-agenda-buffer-name)
  2482. (org-agenda-window-setup (if (equal (buffer-name)
  2483. org-agenda-buffer-name)
  2484. 'current-window
  2485. org-agenda-window-setup))
  2486. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2487. (org-agenda-custom-commands
  2488. ;; normalize different versions
  2489. (delq nil
  2490. (mapcar
  2491. (lambda (x)
  2492. (cond ((stringp (cdr x))
  2493. (push x prefix-descriptions)
  2494. nil)
  2495. ((stringp (nth 1 x)) x)
  2496. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2497. (t (cons (car x) (cons "" (cdr x))))))
  2498. org-agenda-custom-commands)))
  2499. (org-agenda-custom-commands
  2500. (org-contextualize-keys
  2501. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2502. (buf (current-buffer))
  2503. (bfn (buffer-file-name (buffer-base-buffer)))
  2504. entry key type org-match lprops ans)
  2505. ;; Turn off restriction unless there is an overriding one,
  2506. (unless org-agenda-overriding-restriction
  2507. (unless org-agenda-keep-restricted-file-list
  2508. ;; There is a request to keep the file list in place
  2509. (put 'org-agenda-files 'org-restrict nil))
  2510. (setq org-agenda-restrict nil)
  2511. (move-marker org-agenda-restrict-begin nil)
  2512. (move-marker org-agenda-restrict-end nil))
  2513. ;; Delete old local properties
  2514. (put 'org-agenda-redo-command 'org-lprops nil)
  2515. ;; Delete previously set last-arguments
  2516. (put 'org-agenda-redo-command 'last-args nil)
  2517. ;; Remember where this call originated
  2518. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2519. (unless org-keys
  2520. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2521. org-keys (car ans)
  2522. restriction (cdr ans)))
  2523. ;; If we have sticky agenda buffers, set a name for the buffer,
  2524. ;; depending on the invoking keys. The user may still set this
  2525. ;; as a command option, which will overwrite what we do here.
  2526. (when org-agenda-sticky
  2527. (setq org-agenda-buffer-name
  2528. (format "*Org Agenda(%s)*" org-keys)))
  2529. ;; Establish the restriction, if any
  2530. (when (and (not org-agenda-overriding-restriction) restriction)
  2531. (put 'org-agenda-files 'org-restrict (list bfn))
  2532. (cond
  2533. ((eq restriction 'region)
  2534. (setq org-agenda-restrict (current-buffer))
  2535. (move-marker org-agenda-restrict-begin (region-beginning))
  2536. (move-marker org-agenda-restrict-end (region-end)))
  2537. ((eq restriction 'subtree)
  2538. (save-excursion
  2539. (setq org-agenda-restrict (current-buffer))
  2540. (org-back-to-heading t)
  2541. (move-marker org-agenda-restrict-begin (point))
  2542. (move-marker org-agenda-restrict-end
  2543. (progn (org-end-of-subtree t)))))))
  2544. ;; For example the todo list should not need it (but does...)
  2545. (cond
  2546. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2547. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2548. (progn
  2549. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2550. lprops (nth 4 entry))
  2551. (when org-agenda-sticky
  2552. (setq org-agenda-buffer-name
  2553. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2554. (format "*Org Agenda(%s)*" org-keys))))
  2555. (put 'org-agenda-redo-command 'org-lprops lprops)
  2556. (cond
  2557. ((eq type 'agenda)
  2558. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2559. ((eq type 'agenda*)
  2560. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2561. ((eq type 'alltodo)
  2562. (org-let lprops '(org-todo-list current-prefix-arg)))
  2563. ((eq type 'search)
  2564. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2565. ((eq type 'stuck)
  2566. (org-let lprops '(org-agenda-list-stuck-projects
  2567. current-prefix-arg)))
  2568. ((eq type 'tags)
  2569. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2570. ((eq type 'tags-todo)
  2571. (org-let lprops '(org-tags-view '(4) org-match)))
  2572. ((eq type 'todo)
  2573. (org-let lprops '(org-todo-list org-match)))
  2574. ((eq type 'tags-tree)
  2575. (org-check-for-org-mode)
  2576. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2577. ((eq type 'todo-tree)
  2578. (org-check-for-org-mode)
  2579. (org-let lprops
  2580. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2581. (regexp-quote org-match) "\\>"))))
  2582. ((eq type 'occur-tree)
  2583. (org-check-for-org-mode)
  2584. (org-let lprops '(org-occur org-match)))
  2585. ((functionp type)
  2586. (org-let lprops '(funcall type org-match)))
  2587. ((fboundp type)
  2588. (org-let lprops '(funcall type org-match)))
  2589. (t (user-error "Invalid custom agenda command type %s" type))))
  2590. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2591. ((equal org-keys "C")
  2592. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2593. (customize-variable 'org-agenda-custom-commands))
  2594. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2595. ((equal org-keys "s") (call-interactively 'org-search-view))
  2596. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2597. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2598. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2599. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2600. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2601. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2602. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2603. (add-hook
  2604. 'post-command-hook
  2605. (lambda ()
  2606. (unless (current-message)
  2607. (let* ((m (org-agenda-get-any-marker))
  2608. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2609. (when note
  2610. (message (concat
  2611. "FLAGGING-NOTE ([?] for more info): "
  2612. (org-add-props
  2613. (replace-regexp-in-string
  2614. "\\\\n" "//"
  2615. (copy-sequence note))
  2616. nil 'face 'org-warning)))))))
  2617. t t))
  2618. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2619. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2620. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2621. (t (user-error "Invalid agenda key"))))))
  2622. (defvar org-agenda-multi)
  2623. (defun org-agenda-append-agenda ()
  2624. "Append another agenda view to the current one.
  2625. This function allows interactive building of block agendas.
  2626. Agenda views are separated by `org-agenda-block-separator'."
  2627. (interactive)
  2628. (unless (derived-mode-p 'org-agenda-mode)
  2629. (user-error "Can only append from within agenda buffer"))
  2630. (let ((org-agenda-multi t))
  2631. (org-agenda)
  2632. (widen)
  2633. (org-agenda-finalize)
  2634. (setq buffer-read-only t)
  2635. (org-agenda-fit-window-to-buffer)))
  2636. (defun org-agenda-normalize-custom-commands (cmds)
  2637. "Normalize custom commands CMDS."
  2638. (delq nil
  2639. (mapcar
  2640. (lambda (x)
  2641. (cond ((stringp (cdr x)) nil)
  2642. ((stringp (nth 1 x)) x)
  2643. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2644. (t (cons (car x) (cons "" (cdr x))))))
  2645. cmds)))
  2646. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2647. "The user interface for selecting an agenda command."
  2648. (catch 'exit
  2649. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2650. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2651. (region-p (org-region-active-p))
  2652. (custom org-agenda-custom-commands)
  2653. (selstring "")
  2654. restriction second-time
  2655. c entry key type match prefixes rmheader header-end custom1 desc
  2656. line lines left right n n1)
  2657. (save-window-excursion
  2658. (delete-other-windows)
  2659. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2660. (erase-buffer)
  2661. (insert (eval-when-compile
  2662. (let ((header
  2663. "Press key for an agenda command:
  2664. -------------------------------- < Buffer, subtree/region restriction
  2665. a Agenda for current week or day > Remove restriction
  2666. t List of all TODO entries e Export agenda views
  2667. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2668. s Search for keywords M Like m, but only TODO entries
  2669. / Multi-occur S Like s, but only TODO entries
  2670. ? Find :FLAGGED: entries C Configure custom agenda commands
  2671. * Toggle sticky agenda views # List stuck projects (!=configure)
  2672. ")
  2673. (start 0))
  2674. (while (string-match
  2675. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2676. header start)
  2677. (setq start (match-end 0))
  2678. (add-text-properties (match-beginning 2) (match-end 2)
  2679. '(face bold) header))
  2680. header)))
  2681. (setq header-end (point-marker))
  2682. (while t
  2683. (setq custom1 custom)
  2684. (when (eq rmheader t)
  2685. (org-goto-line 1)
  2686. (re-search-forward ":" nil t)
  2687. (delete-region (match-end 0) (point-at-eol))
  2688. (forward-char 1)
  2689. (looking-at "-+")
  2690. (delete-region (match-end 0) (point-at-eol))
  2691. (move-marker header-end (match-end 0)))
  2692. (goto-char header-end)
  2693. (delete-region (point) (point-max))
  2694. ;; Produce all the lines that describe custom commands and prefixes
  2695. (setq lines nil)
  2696. (while (setq entry (pop custom1))
  2697. (setq key (car entry) desc (nth 1 entry)
  2698. type (nth 2 entry)
  2699. match (nth 3 entry))
  2700. (if (> (length key) 1)
  2701. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2702. (setq line
  2703. (format
  2704. "%-4s%-14s"
  2705. (org-add-props (copy-sequence key)
  2706. '(face bold))
  2707. (cond
  2708. ((string-match "\\S-" desc) desc)
  2709. ((eq type 'agenda) "Agenda for current week or day")
  2710. ((eq type 'agenda*) "Appointments for current week or day")
  2711. ((eq type 'alltodo) "List of all TODO entries")
  2712. ((eq type 'search) "Word search")
  2713. ((eq type 'stuck) "List of stuck projects")
  2714. ((eq type 'todo) "TODO keyword")
  2715. ((eq type 'tags) "Tags query")
  2716. ((eq type 'tags-todo) "Tags (TODO)")
  2717. ((eq type 'tags-tree) "Tags tree")
  2718. ((eq type 'todo-tree) "TODO kwd tree")
  2719. ((eq type 'occur-tree) "Occur tree")
  2720. ((functionp type) (if (symbolp type)
  2721. (symbol-name type)
  2722. "Lambda expression"))
  2723. (t "???"))))
  2724. (cond
  2725. ((not (org-string-nw-p match)) nil)
  2726. (org-agenda-menu-show-matcher
  2727. (setq line
  2728. (concat line ": "
  2729. (cond
  2730. ((stringp match)
  2731. (propertize match 'face 'org-warning))
  2732. ((listp type)
  2733. (format "set of %d commands" (length type)))))))
  2734. (t
  2735. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2736. (push line lines)))
  2737. (setq lines (nreverse lines))
  2738. (when prefixes
  2739. (mapc (lambda (x)
  2740. (push
  2741. (format "%s %s"
  2742. (org-add-props (char-to-string x)
  2743. nil 'face 'bold)
  2744. (or (cdr (assoc (concat selstring
  2745. (char-to-string x))
  2746. prefix-descriptions))
  2747. "Prefix key"))
  2748. lines))
  2749. prefixes))
  2750. ;; Check if we should display in two columns
  2751. (if org-agenda-menu-two-columns
  2752. (progn
  2753. (setq n (length lines)
  2754. n1 (+ (/ n 2) (mod n 2))
  2755. right (nthcdr n1 lines)
  2756. left (copy-sequence lines))
  2757. (setcdr (nthcdr (1- n1) left) nil))
  2758. (setq left lines right nil))
  2759. (while left
  2760. (insert "\n" (pop left))
  2761. (when right
  2762. (if (< (current-column) 40)
  2763. (move-to-column 40 t)
  2764. (insert " "))
  2765. (insert (pop right))))
  2766. ;; Make the window the right size
  2767. (goto-char (point-min))
  2768. (if second-time
  2769. (when (not (pos-visible-in-window-p (point-max)))
  2770. (org-fit-window-to-buffer))
  2771. (setq second-time t)
  2772. (org-fit-window-to-buffer))
  2773. ;; Ask for selection
  2774. (message "Press key for agenda command%s:"
  2775. (if (or restrict-ok org-agenda-overriding-restriction)
  2776. (if org-agenda-overriding-restriction
  2777. " (restriction lock active)"
  2778. (if restriction
  2779. (format " (restricted to %s)" restriction)
  2780. " (unrestricted)"))
  2781. ""))
  2782. (setq c (read-char-exclusive))
  2783. (message "")
  2784. (cond
  2785. ((assoc (char-to-string c) custom)
  2786. (setq selstring (concat selstring (char-to-string c)))
  2787. (throw 'exit (cons selstring restriction)))
  2788. ((memq c prefixes)
  2789. (setq selstring (concat selstring (char-to-string c))
  2790. prefixes nil
  2791. rmheader (or rmheader t)
  2792. custom (delq nil (mapcar
  2793. (lambda (x)
  2794. (if (or (= (length (car x)) 1)
  2795. (/= (string-to-char (car x)) c))
  2796. nil
  2797. (cons (substring (car x) 1) (cdr x))))
  2798. custom))))
  2799. ((eq c ?*)
  2800. (call-interactively 'org-toggle-sticky-agenda)
  2801. (sit-for 2))
  2802. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2803. (message "Restriction is only possible in Org buffers")
  2804. (ding) (sit-for 1))
  2805. ((eq c ?1)
  2806. (org-agenda-remove-restriction-lock 'noupdate)
  2807. (setq restriction 'buffer))
  2808. ((eq c ?0)
  2809. (org-agenda-remove-restriction-lock 'noupdate)
  2810. (setq restriction (if region-p 'region 'subtree)))
  2811. ((eq c ?<)
  2812. (org-agenda-remove-restriction-lock 'noupdate)
  2813. (setq restriction
  2814. (cond
  2815. ((eq restriction 'buffer)
  2816. (if region-p 'region 'subtree))
  2817. ((memq restriction '(subtree region))
  2818. nil)
  2819. (t 'buffer))))
  2820. ((eq c ?>)
  2821. (org-agenda-remove-restriction-lock 'noupdate)
  2822. (setq restriction nil))
  2823. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2824. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2825. ((and (> (length selstring) 0) (eq c ?\d))
  2826. (delete-window)
  2827. (org-agenda-get-restriction-and-command prefix-descriptions))
  2828. ((equal c ?q) (error "Abort"))
  2829. (t (user-error "Invalid key %c" c))))))))
  2830. (defun org-agenda-fit-window-to-buffer ()
  2831. "Fit the window to the buffer size."
  2832. (and (memq org-agenda-window-setup '(reorganize-frame))
  2833. (fboundp 'fit-window-to-buffer)
  2834. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2835. (= (car org-agenda-window-frame-fractions) 1.0))
  2836. (delete-other-windows)
  2837. (org-fit-window-to-buffer
  2838. nil
  2839. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2840. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2841. (defvar org-cmd nil)
  2842. (defvar org-agenda-overriding-cmd nil)
  2843. (defvar org-agenda-overriding-arguments nil)
  2844. (defvar org-agenda-overriding-cmd-arguments nil)
  2845. (defun org-agenda-run-series (name series)
  2846. "Run agenda NAME as a SERIES of agenda commands."
  2847. (org-let (nth 1 series) '(org-agenda-prepare name))
  2848. ;; We need to reset agenda markers here, because when constructing a
  2849. ;; block agenda, the individual blocks do not do that.
  2850. (org-agenda-reset-markers)
  2851. (let* ((org-agenda-multi t)
  2852. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2853. (cmds (car series))
  2854. (gprops (nth 1 series))
  2855. match ;; The byte compiler incorrectly complains about this. Keep it!
  2856. org-cmd type lprops)
  2857. (while (setq org-cmd (pop cmds))
  2858. (setq type (car org-cmd))
  2859. (setq match (eval (nth 1 org-cmd)))
  2860. (setq lprops (nth 2 org-cmd))
  2861. (let ((org-agenda-overriding-arguments
  2862. (if (eq org-agenda-overriding-cmd org-cmd)
  2863. (or org-agenda-overriding-arguments
  2864. org-agenda-overriding-cmd-arguments))))
  2865. (cond
  2866. ((eq type 'agenda)
  2867. (org-let2 gprops lprops
  2868. '(call-interactively 'org-agenda-list)))
  2869. ((eq type 'agenda*)
  2870. (org-let2 gprops lprops
  2871. '(funcall 'org-agenda-list nil nil t)))
  2872. ((eq type 'alltodo)
  2873. (org-let2 gprops lprops
  2874. '(call-interactively 'org-todo-list)))
  2875. ((eq type 'search)
  2876. (org-let2 gprops lprops
  2877. '(org-search-view current-prefix-arg match nil)))
  2878. ((eq type 'stuck)
  2879. (org-let2 gprops lprops
  2880. '(call-interactively 'org-agenda-list-stuck-projects)))
  2881. ((eq type 'tags)
  2882. (org-let2 gprops lprops
  2883. '(org-tags-view current-prefix-arg match)))
  2884. ((eq type 'tags-todo)
  2885. (org-let2 gprops lprops
  2886. '(org-tags-view '(4) match)))
  2887. ((eq type 'todo)
  2888. (org-let2 gprops lprops
  2889. '(org-todo-list match)))
  2890. ((fboundp type)
  2891. (org-let2 gprops lprops
  2892. '(funcall type match)))
  2893. (t (error "Invalid type in command series")))))
  2894. (widen)
  2895. (let ((inhibit-read-only t))
  2896. (add-text-properties (point-min) (point-max)
  2897. `(org-series t org-series-redo-cmd ,redo)))
  2898. (setq org-agenda-redo-command redo)
  2899. (goto-char (point-min)))
  2900. (org-agenda-fit-window-to-buffer)
  2901. (org-let (nth 1 series) '(org-agenda-finalize)))
  2902. ;;;###autoload
  2903. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2904. "Run an agenda command in batch mode and send the result to STDOUT.
  2905. If CMD-KEY is a string of length 1, it is used as a key in
  2906. `org-agenda-custom-commands' and triggers this command. If it is a
  2907. longer string it is used as a tags/todo match string.
  2908. Parameters are alternating variable names and values that will be bound
  2909. before running the agenda command."
  2910. (org-eval-in-environment (org-make-parameter-alist parameters)
  2911. (let (org-agenda-sticky)
  2912. (if (> (length cmd-key) 1)
  2913. (org-tags-view nil cmd-key)
  2914. (org-agenda nil cmd-key))))
  2915. (set-buffer org-agenda-buffer-name)
  2916. (princ (buffer-string)))
  2917. (defvar org-agenda-info nil)
  2918. ;;;###autoload
  2919. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2920. "Run an agenda command in batch mode and send the result to STDOUT.
  2921. If CMD-KEY is a string of length 1, it is used as a key in
  2922. `org-agenda-custom-commands' and triggers this command. If it is a
  2923. longer string it is used as a tags/todo match string.
  2924. Parameters are alternating variable names and values that will be bound
  2925. before running the agenda command.
  2926. The output gives a line for each selected agenda item. Each
  2927. item is a list of comma-separated values, like this:
  2928. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2929. category The category of the item
  2930. head The headline, without TODO kwd, TAGS and PRIORITY
  2931. type The type of the agenda entry, can be
  2932. todo selected in TODO match
  2933. tagsmatch selected in tags match
  2934. diary imported from diary
  2935. deadline a deadline on given date
  2936. scheduled scheduled on given date
  2937. timestamp entry has timestamp on given date
  2938. closed entry was closed on given date
  2939. upcoming-deadline warning about deadline
  2940. past-scheduled forwarded scheduled item
  2941. block entry has date block including g. date
  2942. todo The todo keyword, if any
  2943. tags All tags including inherited ones, separated by colons
  2944. date The relevant date, like 2007-2-14
  2945. time The time, like 15:00-16:50
  2946. extra Sting with extra planning info
  2947. priority-l The priority letter if any was given
  2948. priority-n The computed numerical priority
  2949. agenda-day The day in the agenda where this is listed"
  2950. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2951. (org-make-parameter-alist parameters))
  2952. (if (> (length cmd-key) 2)
  2953. (org-tags-view nil cmd-key)
  2954. (org-agenda nil cmd-key)))
  2955. (set-buffer org-agenda-buffer-name)
  2956. (let ((lines (org-split-string (buffer-string) "\n")))
  2957. (dolist (line lines)
  2958. (when (get-text-property 0 'org-category line)
  2959. (setq org-agenda-info
  2960. (org-fix-agenda-info (text-properties-at 0 line)))
  2961. (princ
  2962. (mapconcat 'org-agenda-export-csv-mapper
  2963. '(org-category txt type todo tags date time extra
  2964. priority-letter priority agenda-day)
  2965. ","))
  2966. (princ "\n")))))
  2967. (defun org-fix-agenda-info (props)
  2968. "Make sure all properties on an agenda item have a canonical form.
  2969. This ensures the export commands can easily use it."
  2970. (let (tmp re)
  2971. (when (setq tmp (plist-get props 'tags))
  2972. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2973. (when (setq tmp (plist-get props 'date))
  2974. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2975. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2976. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2977. (setq tmp (calendar-date-string tmp)))
  2978. (setq props (plist-put props 'date tmp)))
  2979. (when (setq tmp (plist-get props 'day))
  2980. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2981. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2982. (setq tmp (calendar-date-string tmp)))
  2983. (setq props (plist-put props 'day tmp))
  2984. (setq props (plist-put props 'agenda-day tmp)))
  2985. (when (setq tmp (plist-get props 'txt))
  2986. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2987. (plist-put props 'priority-letter (match-string 1 tmp))
  2988. (setq tmp (replace-match "" t t tmp)))
  2989. (when (and (setq re (plist-get props 'org-todo-regexp))
  2990. (setq re (concat "\\`\\.*" re " ?"))
  2991. (let ((case-fold-search nil)) (string-match re tmp)))
  2992. (plist-put props 'todo (match-string 1 tmp))
  2993. (setq tmp (replace-match "" t t tmp)))
  2994. (plist-put props 'txt tmp)))
  2995. props)
  2996. (defun org-agenda-export-csv-mapper (prop)
  2997. (let ((res (plist-get org-agenda-info prop)))
  2998. (setq res
  2999. (cond
  3000. ((not res) "")
  3001. ((stringp res) res)
  3002. (t (prin1-to-string res))))
  3003. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3004. ;;;###autoload
  3005. (defun org-store-agenda-views (&rest parameters)
  3006. "Store agenda views."
  3007. (interactive)
  3008. (eval (list 'org-batch-store-agenda-views)))
  3009. ;;;###autoload
  3010. (defmacro org-batch-store-agenda-views (&rest parameters)
  3011. "Run all custom agenda commands that have a file argument."
  3012. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3013. (pop-up-frames nil)
  3014. (dir default-directory)
  3015. (pars (org-make-parameter-alist parameters))
  3016. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3017. (save-window-excursion
  3018. (while cmds
  3019. (setq cmd (pop cmds)
  3020. thiscmdkey (car cmd)
  3021. thiscmdcmd (cdr cmd)
  3022. match (nth 2 thiscmdcmd)
  3023. bufname (if org-agenda-sticky
  3024. (or (and (stringp match)
  3025. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3026. (format "*Org Agenda(%s)*" thiscmdkey))
  3027. org-agenda-buffer-name)
  3028. cmd-or-set (nth 2 cmd)
  3029. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3030. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3031. (if (stringp files) (setq files (list files)))
  3032. (when files
  3033. (org-eval-in-environment (append org-agenda-exporter-settings
  3034. opts pars)
  3035. (org-agenda nil thiscmdkey))
  3036. (set-buffer bufname)
  3037. (while files
  3038. (org-eval-in-environment (append org-agenda-exporter-settings
  3039. opts pars)
  3040. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3041. (and (get-buffer bufname)
  3042. (kill-buffer bufname)))))))
  3043. (defvar org-agenda-current-span nil
  3044. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3045. (defun org-agenda-mark-header-line (pos)
  3046. "Mark the line at POS as an agenda structure header."
  3047. (save-excursion
  3048. (goto-char pos)
  3049. (put-text-property (point-at-bol) (point-at-eol)
  3050. 'org-agenda-structural-header t)
  3051. (when org-agenda-title-append
  3052. (put-text-property (point-at-bol) (point-at-eol)
  3053. 'org-agenda-title-append org-agenda-title-append))))
  3054. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3055. (defvar org-agenda-write-buffer-name "Agenda View")
  3056. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3057. "Write the current buffer (an agenda view) as a file.
  3058. Depending on the extension of the file name, plain text (.txt),
  3059. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3060. If the extension is .ics, translate visible agenda into iCalendar
  3061. format. If the extension is .org, collect all subtrees
  3062. corresponding to the agenda entries and add them in an .org file.
  3063. With prefix argument OPEN, open the new file immediately. If
  3064. NOSETTINGS is given, do not scope the settings of
  3065. `org-agenda-exporter-settings' into the export commands. This is
  3066. used when the settings have already been scoped and we do not
  3067. wish to overrule other, higher priority settings. If
  3068. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3069. the agenda to write."
  3070. (interactive "FWrite agenda to file: \nP")
  3071. (if (or (not (file-writable-p file))
  3072. (and (file-exists-p file)
  3073. (if (called-interactively-p 'any)
  3074. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3075. (user-error "Cannot write agenda to file %s" file))
  3076. (org-let (if nosettings nil org-agenda-exporter-settings)
  3077. '(save-excursion
  3078. (save-window-excursion
  3079. (let ((bs (copy-sequence (buffer-string)))
  3080. (extension (file-name-extension file))
  3081. (default-directory (file-name-directory file))
  3082. beg content)
  3083. (with-temp-buffer
  3084. (rename-buffer org-agenda-write-buffer-name t)
  3085. (set-buffer-modified-p nil)
  3086. (insert bs)
  3087. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3088. (run-hooks 'org-agenda-before-write-hook)
  3089. (cond
  3090. ((bound-and-true-p org-mobile-creating-agendas)
  3091. (org-mobile-write-agenda-for-mobile file))
  3092. ((string= "org" extension)
  3093. (let (content p m message-log-max)
  3094. (goto-char (point-min))
  3095. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3096. (goto-char p)
  3097. (setq m (get-text-property (point) 'org-hd-marker))
  3098. (when m
  3099. (push (save-excursion
  3100. (set-buffer (marker-buffer m))
  3101. (goto-char m)
  3102. (org-copy-subtree 1 nil t t)
  3103. org-subtree-clip)
  3104. content)))
  3105. (find-file file)
  3106. (erase-buffer)
  3107. (dolist (s content) (org-paste-subtree 1 s))
  3108. (write-file file)
  3109. (kill-buffer (current-buffer))
  3110. (message "Org file written to %s" file)))
  3111. ((member extension '("html" "htm"))
  3112. (or (require 'htmlize nil t)
  3113. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3114. (set-buffer (htmlize-buffer (current-buffer)))
  3115. (when org-agenda-export-html-style
  3116. ;; replace <style> section with org-agenda-export-html-style
  3117. (goto-char (point-min))
  3118. (kill-region (- (search-forward "<style") 6)
  3119. (search-forward "</style>"))
  3120. (insert org-agenda-export-html-style))
  3121. (write-file file)
  3122. (kill-buffer (current-buffer))
  3123. (message "HTML written to %s" file))
  3124. ((string= "ps" extension)
  3125. (require 'ps-print)
  3126. (ps-print-buffer-with-faces file)
  3127. (message "Postscript written to %s" file))
  3128. ((string= "pdf" extension)
  3129. (require 'ps-print)
  3130. (ps-print-buffer-with-faces
  3131. (concat (file-name-sans-extension file) ".ps"))
  3132. (call-process "ps2pdf" nil nil nil
  3133. (expand-file-name
  3134. (concat (file-name-sans-extension file) ".ps"))
  3135. (expand-file-name file))
  3136. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3137. (message "PDF written to %s" file))
  3138. ((string= "ics" extension)
  3139. (require 'ox-icalendar)
  3140. (org-icalendar-export-current-agenda (expand-file-name file)))
  3141. (t
  3142. (let ((bs (buffer-string)))
  3143. (find-file file)
  3144. (erase-buffer)
  3145. (insert bs)
  3146. (save-buffer 0)
  3147. (kill-buffer (current-buffer))
  3148. (message "Plain text written to %s" file))))))))
  3149. (set-buffer (or agenda-bufname
  3150. (and (called-interactively-p 'any) (buffer-name))
  3151. org-agenda-buffer-name)))
  3152. (when open (org-open-file file)))
  3153. (defun org-agenda-remove-marked-text (property &optional value)
  3154. "Delete all text marked with VALUE of PROPERTY.
  3155. VALUE defaults to t."
  3156. (let (beg)
  3157. (setq value (or value t))
  3158. (while (setq beg (text-property-any (point-min) (point-max)
  3159. property value))
  3160. (delete-region
  3161. beg (or (next-single-property-change beg property)
  3162. (point-max))))))
  3163. (defun org-agenda-add-entry-text ()
  3164. "Add entry text to agenda lines.
  3165. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3166. entry text following headings shown in the agenda.
  3167. Drawers will be excluded, also the line with scheduling/deadline info."
  3168. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3169. (not (bound-and-true-p org-mobile-creating-agendas)))
  3170. (let (m txt)
  3171. (goto-char (point-min))
  3172. (while (not (eobp))
  3173. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3174. (beginning-of-line 2)
  3175. (setq txt (org-agenda-get-some-entry-text
  3176. m org-agenda-add-entry-text-maxlines " > "))
  3177. (end-of-line 1)
  3178. (if (string-match "\\S-" txt)
  3179. (insert "\n" txt)
  3180. (or (eobp) (forward-char 1))))))))
  3181. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3182. &rest keep)
  3183. "Extract entry text from MARKER, at most N-LINES lines.
  3184. This will ignore drawers etc, just get the text.
  3185. If INDENT is given, prefix every line with this string. If KEEP is
  3186. given, it is a list of symbols, defining stuff that should not be
  3187. removed from the entry content. Currently only `planning' is allowed here."
  3188. (let (txt drawer-re kwd-time-re ind)
  3189. (save-excursion
  3190. (with-current-buffer (marker-buffer marker)
  3191. (if (not (derived-mode-p 'org-mode))
  3192. (setq txt "")
  3193. (org-with-wide-buffer
  3194. (goto-char marker)
  3195. (end-of-line 1)
  3196. (setq txt (buffer-substring
  3197. (min (1+ (point)) (point-max))
  3198. (progn (outline-next-heading) (point)))
  3199. drawer-re org-drawer-regexp
  3200. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3201. ".*\n?"))
  3202. (with-temp-buffer
  3203. (insert txt)
  3204. (when org-agenda-add-entry-text-descriptive-links
  3205. (goto-char (point-min))
  3206. (while (org-activate-links (point-max))
  3207. (add-text-properties (match-beginning 0) (match-end 0)
  3208. '(face org-link))))
  3209. (goto-char (point-min))
  3210. (while (re-search-forward org-link-bracket-re (point-max) t)
  3211. (set-text-properties (match-beginning 0) (match-end 0)
  3212. nil))
  3213. (goto-char (point-min))
  3214. (while (re-search-forward drawer-re nil t)
  3215. (delete-region
  3216. (match-beginning 0)
  3217. (progn (re-search-forward
  3218. "^[ \t]*:END:.*\n?" nil 'move)
  3219. (point))))
  3220. (unless (member 'planning keep)
  3221. (goto-char (point-min))
  3222. (while (re-search-forward kwd-time-re nil t)
  3223. (replace-match "")))
  3224. (goto-char (point-min))
  3225. (when org-agenda-entry-text-exclude-regexps
  3226. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3227. (while (setq re (pop re-list))
  3228. (goto-char (point-min))
  3229. (while (re-search-forward re nil t)
  3230. (replace-match "")))))
  3231. (goto-char (point-max))
  3232. (skip-chars-backward " \t\n")
  3233. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3234. ;; find and remove min common indentation
  3235. (goto-char (point-min))
  3236. (untabify (point-min) (point-max))
  3237. (setq ind (current-indentation))
  3238. (while (not (eobp))
  3239. (unless (looking-at "[ \t]*$")
  3240. (setq ind (min ind (current-indentation))))
  3241. (beginning-of-line 2))
  3242. (goto-char (point-min))
  3243. (while (not (eobp))
  3244. (unless (looking-at "[ \t]*$")
  3245. (move-to-column ind)
  3246. (delete-region (point-at-bol) (point)))
  3247. (beginning-of-line 2))
  3248. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3249. (goto-char (point-min))
  3250. (when indent
  3251. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3252. (replace-match indent t t)))
  3253. (goto-char (point-min))
  3254. (while (looking-at "[ \t]*\n") (replace-match ""))
  3255. (goto-char (point-max))
  3256. (when (> (org-current-line)
  3257. n-lines)
  3258. (org-goto-line (1+ n-lines))
  3259. (backward-char 1))
  3260. (setq txt (buffer-substring (point-min) (point))))))))
  3261. txt))
  3262. (defun org-check-for-org-mode ()
  3263. "Make sure current buffer is in Org mode. Error if not."
  3264. (or (derived-mode-p 'org-mode)
  3265. (error "Cannot execute Org agenda command on buffer in %s"
  3266. major-mode)))
  3267. ;;; Agenda prepare and finalize
  3268. (defvar org-agenda-multi nil) ; dynamically scoped
  3269. (defvar org-agenda-pre-window-conf nil)
  3270. (defvar org-agenda-columns-active nil)
  3271. (defvar org-agenda-name nil)
  3272. (defvar org-agenda-tag-filter nil)
  3273. (defvar org-agenda-category-filter nil)
  3274. (defvar org-agenda-regexp-filter nil)
  3275. (defvar org-agenda-effort-filter nil)
  3276. (defvar org-agenda-top-headline-filter nil)
  3277. (defvar org-agenda-tag-filter-preset nil
  3278. "A preset of the tags filter used for secondary agenda filtering.
  3279. This must be a list of strings, each string must be a single tag preceded
  3280. by \"+\" or \"-\".
  3281. This variable should not be set directly, but agenda custom commands can
  3282. bind it in the options section. The preset filter is a global property of
  3283. the entire agenda view. In a block agenda, it will not work reliably to
  3284. define a filter for one of the individual blocks. You need to set it in
  3285. the global options and expect it to be applied to the entire view.")
  3286. (defvar org-agenda-category-filter-preset nil
  3287. "A preset of the category filter used for secondary agenda filtering.
  3288. This must be a list of strings, each string must be a single category
  3289. preceded by \"+\" or \"-\".
  3290. This variable should not be set directly, but agenda custom commands can
  3291. bind it in the options section. The preset filter is a global property of
  3292. the entire agenda view. In a block agenda, it will not work reliably to
  3293. define a filter for one of the individual blocks. You need to set it in
  3294. the global options and expect it to be applied to the entire view.")
  3295. (defvar org-agenda-regexp-filter-preset nil
  3296. "A preset of the regexp filter used for secondary agenda filtering.
  3297. This must be a list of strings, each string must be a single regexp
  3298. preceded by \"+\" or \"-\".
  3299. This variable should not be set directly, but agenda custom commands can
  3300. bind it in the options section. The preset filter is a global property of
  3301. the entire agenda view. In a block agenda, it will not work reliably to
  3302. define a filter for one of the individual blocks. You need to set it in
  3303. the global options and expect it to be applied to the entire view.")
  3304. (defvar org-agenda-effort-filter-preset nil
  3305. "A preset of the effort condition used for secondary agenda filtering.
  3306. This must be a list of strings, each string must be a single regexp
  3307. preceded by \"+\" or \"-\".
  3308. This variable should not be set directly, but agenda custom commands can
  3309. bind it in the options section. The preset filter is a global property of
  3310. the entire agenda view. In a block agenda, it will not work reliably to
  3311. define a filter for one of the individual blocks. You need to set it in
  3312. the global options and expect it to be applied to the entire view.")
  3313. (defun org-agenda-use-sticky-p ()
  3314. "Return non-nil if an agenda buffer named
  3315. `org-agenda-buffer-name' exists and should be shown instead of
  3316. generating a new one."
  3317. (and
  3318. ;; turned off by user
  3319. org-agenda-sticky
  3320. ;; For multi-agenda buffer already exists
  3321. (not org-agenda-multi)
  3322. ;; buffer found
  3323. (get-buffer org-agenda-buffer-name)
  3324. ;; C-u parameter is same as last call
  3325. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3326. (and
  3327. (equal current-prefix-arg
  3328. org-agenda-last-prefix-arg)
  3329. ;; In case user turned stickiness on, while having existing
  3330. ;; Agenda buffer active, don't reuse that buffer, because it
  3331. ;; does not have org variables local
  3332. org-agenda-this-buffer-is-sticky))))
  3333. (defun org-agenda-prepare-window (abuf filter-alist)
  3334. "Setup agenda buffer in the window.
  3335. ABUF is the buffer for the agenda window.
  3336. FILTER-ALIST is an alist of filters we need to apply when
  3337. `org-agenda-persistent-filter' is non-nil."
  3338. (let* ((awin (get-buffer-window abuf)) wconf)
  3339. (cond
  3340. ((equal (current-buffer) abuf) nil)
  3341. (awin (select-window awin))
  3342. ((not (setq wconf (current-window-configuration))))
  3343. ((eq org-agenda-window-setup 'current-window)
  3344. (pop-to-buffer-same-window abuf))
  3345. ((eq org-agenda-window-setup 'other-window)
  3346. (org-switch-to-buffer-other-window abuf))
  3347. ((eq org-agenda-window-setup 'other-frame)
  3348. (switch-to-buffer-other-frame abuf))
  3349. ((eq org-agenda-window-setup 'only-window)
  3350. (delete-other-windows)
  3351. (pop-to-buffer-same-window abuf))
  3352. ((eq org-agenda-window-setup 'reorganize-frame)
  3353. (delete-other-windows)
  3354. (org-switch-to-buffer-other-window abuf)))
  3355. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3356. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3357. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3358. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3359. ;; Additional test in case agenda is invoked from within agenda
  3360. ;; buffer via elisp link.
  3361. (unless (equal (current-buffer) abuf)
  3362. (pop-to-buffer-same-window abuf))
  3363. (setq org-agenda-pre-window-conf
  3364. (or wconf org-agenda-pre-window-conf))))
  3365. (defun org-agenda-prepare (&optional name)
  3366. (let ((filter-alist (when org-agenda-persistent-filter
  3367. (with-current-buffer
  3368. (get-buffer-create org-agenda-buffer-name)
  3369. `((tag . ,org-agenda-tag-filter)
  3370. (re . ,org-agenda-regexp-filter)
  3371. (effort . ,org-agenda-effort-filter)
  3372. (cat . ,org-agenda-category-filter))))))
  3373. (if (org-agenda-use-sticky-p)
  3374. (progn
  3375. (put 'org-agenda-tag-filter :preset-filter nil)
  3376. (put 'org-agenda-category-filter :preset-filter nil)
  3377. (put 'org-agenda-regexp-filter :preset-filter nil)
  3378. ;; Popup existing buffer
  3379. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3380. filter-alist)
  3381. (message "Sticky Agenda buffer, use `r' to refresh")
  3382. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3383. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3384. (setq org-todo-keywords-for-agenda nil)
  3385. (put 'org-agenda-tag-filter :preset-filter
  3386. org-agenda-tag-filter-preset)
  3387. (put 'org-agenda-category-filter :preset-filter
  3388. org-agenda-category-filter-preset)
  3389. (put 'org-agenda-regexp-filter :preset-filter
  3390. org-agenda-regexp-filter-preset)
  3391. (put 'org-agenda-effort-filter :preset-filter
  3392. org-agenda-effort-filter-preset)
  3393. (if org-agenda-multi
  3394. (progn
  3395. (setq buffer-read-only nil)
  3396. (goto-char (point-max))
  3397. (unless (or (bobp) org-agenda-compact-blocks
  3398. (not org-agenda-block-separator))
  3399. (insert "\n"
  3400. (if (stringp org-agenda-block-separator)
  3401. org-agenda-block-separator
  3402. (make-string (window-width) org-agenda-block-separator))
  3403. "\n"))
  3404. (narrow-to-region (point) (point-max)))
  3405. (setq org-done-keywords-for-agenda nil)
  3406. ;; Setting any org variables that are in org-agenda-local-vars
  3407. ;; list need to be done after the prepare call
  3408. (org-agenda-prepare-window
  3409. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3410. (setq buffer-read-only nil)
  3411. (org-agenda-reset-markers)
  3412. (let ((inhibit-read-only t)) (erase-buffer))
  3413. (org-agenda-mode)
  3414. (setq org-agenda-buffer (current-buffer))
  3415. (setq org-agenda-contributing-files nil)
  3416. (setq org-agenda-columns-active nil)
  3417. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3418. (setq org-todo-keywords-for-agenda
  3419. (org-uniquify org-todo-keywords-for-agenda))
  3420. (setq org-done-keywords-for-agenda
  3421. (org-uniquify org-done-keywords-for-agenda))
  3422. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3423. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3424. (and name (not org-agenda-name)
  3425. (setq-local org-agenda-name name)))
  3426. (setq buffer-read-only nil))))
  3427. (defvar org-overriding-columns-format)
  3428. (defvar org-local-columns-format)
  3429. (defun org-agenda-finalize ()
  3430. "Finishing touch for the agenda buffer, called just before displaying it."
  3431. (unless org-agenda-multi
  3432. (save-excursion
  3433. (let ((inhibit-read-only t))
  3434. (goto-char (point-min))
  3435. (save-excursion
  3436. (while (org-activate-links (point-max))
  3437. (add-text-properties (match-beginning 0) (match-end 0)
  3438. '(face org-link))))
  3439. (unless (eq org-agenda-remove-tags t)
  3440. (org-agenda-align-tags))
  3441. (unless org-agenda-with-colors
  3442. (remove-text-properties (point-min) (point-max) '(face nil)))
  3443. (when (bound-and-true-p org-overriding-columns-format)
  3444. (setq-local org-local-columns-format
  3445. org-overriding-columns-format))
  3446. (when org-agenda-view-columns-initially
  3447. (org-agenda-columns))
  3448. (when org-agenda-fontify-priorities
  3449. (org-agenda-fontify-priorities))
  3450. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3451. (org-agenda-dim-blocked-tasks))
  3452. (org-agenda-mark-clocking-task)
  3453. (when org-agenda-entry-text-mode
  3454. (org-agenda-entry-text-hide)
  3455. (org-agenda-entry-text-show))
  3456. (when (and (featurep 'org-habit)
  3457. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3458. (org-habit-insert-consistency-graphs))
  3459. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3460. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3461. (and (listp org-agenda-show-inherited-tags)
  3462. (memq org-agenda-type org-agenda-show-inherited-tags))
  3463. (and (eq org-agenda-show-inherited-tags t)
  3464. (or (eq org-agenda-use-tag-inheritance t)
  3465. (and (listp org-agenda-use-tag-inheritance)
  3466. (not (memq org-agenda-type
  3467. org-agenda-use-tag-inheritance))))))
  3468. (let (mrk)
  3469. (save-excursion
  3470. (goto-char (point-min))
  3471. (while (equal (forward-line) 0)
  3472. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3473. (put-text-property (point-at-bol) (point-at-eol)
  3474. 'tags
  3475. (org-with-point-at mrk
  3476. (mapcar #'downcase (org-get-tags)))))))))
  3477. (run-hooks 'org-agenda-finalize-hook)
  3478. (when org-agenda-top-headline-filter
  3479. (org-agenda-filter-top-headline-apply
  3480. org-agenda-top-headline-filter))
  3481. (when org-agenda-tag-filter
  3482. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3483. (when (get 'org-agenda-tag-filter :preset-filter)
  3484. (org-agenda-filter-apply
  3485. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3486. (when org-agenda-category-filter
  3487. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3488. (when (get 'org-agenda-category-filter :preset-filter)
  3489. (org-agenda-filter-apply
  3490. (get 'org-agenda-category-filter :preset-filter) 'category))
  3491. (when org-agenda-regexp-filter
  3492. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3493. (when (get 'org-agenda-regexp-filter :preset-filter)
  3494. (org-agenda-filter-apply
  3495. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3496. (when org-agenda-effort-filter
  3497. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3498. (when (get 'org-agenda-effort-filter :preset-filter)
  3499. (org-agenda-filter-apply
  3500. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3501. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3502. (defun org-agenda-mark-clocking-task ()
  3503. "Mark the current clock entry in the agenda if it is present."
  3504. ;; We need to widen when `org-agenda-finalize' is called from
  3505. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3506. (when (bound-and-true-p org-clock-current-task)
  3507. (save-restriction
  3508. (widen)
  3509. (org-agenda-unmark-clocking-task)
  3510. (when (marker-buffer org-clock-hd-marker)
  3511. (save-excursion
  3512. (goto-char (point-min))
  3513. (let (s ov)
  3514. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3515. (goto-char s)
  3516. (when (equal (org-get-at-bol 'org-hd-marker)
  3517. org-clock-hd-marker)
  3518. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3519. (overlay-put ov 'type 'org-agenda-clocking)
  3520. (overlay-put ov 'face 'org-agenda-clocking)
  3521. (overlay-put ov 'help-echo
  3522. "The clock is running in this item")))))))))
  3523. (defun org-agenda-unmark-clocking-task ()
  3524. "Unmark the current clocking task."
  3525. (mapc (lambda (o)
  3526. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3527. (delete-overlay o)))
  3528. (overlays-in (point-min) (point-max))))
  3529. (defun org-agenda-fontify-priorities ()
  3530. "Make highest priority lines bold, and lowest italic."
  3531. (interactive)
  3532. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3533. (delete-overlay o)))
  3534. (overlays-in (point-min) (point-max)))
  3535. (save-excursion
  3536. (let (b e p ov h l)
  3537. (goto-char (point-min))
  3538. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3539. (setq h (or (get-char-property (point) 'org-highest-priority)
  3540. org-highest-priority)
  3541. l (or (get-char-property (point) 'org-lowest-priority)
  3542. org-lowest-priority)
  3543. p (string-to-char (match-string 1))
  3544. b (match-beginning 0)
  3545. e (if (eq org-agenda-fontify-priorities 'cookies)
  3546. (match-end 0)
  3547. (point-at-eol))
  3548. ov (make-overlay b e))
  3549. (overlay-put
  3550. ov 'face
  3551. (let ((special-face
  3552. (cond ((org-face-from-face-or-color
  3553. 'priority 'org-priority
  3554. (cdr (assoc p org-priority-faces))))
  3555. ((and (listp org-agenda-fontify-priorities)
  3556. (org-face-from-face-or-color
  3557. 'priority 'org-priority
  3558. (cdr (assoc p org-agenda-fontify-priorities)))))
  3559. ((equal p l) 'italic)
  3560. ((equal p h) 'bold))))
  3561. (if special-face (list special-face 'org-priority) 'org-priority)))
  3562. (overlay-put ov 'org-type 'org-priority)))))
  3563. (defvar org-depend-tag-blocked)
  3564. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3565. "Dim currently blocked TODOs in the agenda display.
  3566. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3567. dimming them."
  3568. (interactive "P")
  3569. (when (called-interactively-p 'interactive)
  3570. (message "Dim or hide blocked tasks..."))
  3571. (dolist (o (overlays-in (point-min) (point-max)))
  3572. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3573. (delete-overlay o)))
  3574. (save-excursion
  3575. (let ((inhibit-read-only t))
  3576. (goto-char (point-min))
  3577. (while (let ((pos (text-property-not-all
  3578. (point) (point-max) 'org-todo-blocked nil)))
  3579. (when pos (goto-char pos)))
  3580. (let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3581. (ov (make-overlay (if invisible
  3582. (line-end-position 0)
  3583. (line-beginning-position))
  3584. (line-end-position))))
  3585. (if invisible
  3586. (overlay-put ov 'invisible t)
  3587. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3588. (overlay-put ov 'org-type 'org-blocked-todo))
  3589. (forward-line))))
  3590. (when (called-interactively-p 'interactive)
  3591. (message "Dim or hide blocked tasks...done")))
  3592. (defun org-agenda--mark-blocked-entry (entry)
  3593. "For ENTRY a string with the text property `org-hd-marker', if
  3594. the header at `org-hd-marker' is blocked according to
  3595. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3596. 'invisible and the header is not blocked by checkboxes, set the
  3597. text property `org-todo-blocked' to 'invisible, otherwise set it
  3598. to t."
  3599. (when (get-text-property 0 'todo-state entry)
  3600. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3601. (org-blocked-by-checkboxes nil)
  3602. ;; Necessary so that `org-entry-blocked-p' does not change
  3603. ;; the buffer.
  3604. (org-depend-tag-blocked nil))
  3605. (when entry-marker
  3606. (let ((blocked
  3607. (with-current-buffer (marker-buffer entry-marker)
  3608. (save-excursion
  3609. (goto-char entry-marker)
  3610. (org-entry-blocked-p)))))
  3611. (when blocked
  3612. (let ((really-invisible
  3613. (and (not org-blocked-by-checkboxes)
  3614. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3615. (put-text-property
  3616. 0 (length entry) 'org-todo-blocked
  3617. (if really-invisible 'invisible t)
  3618. entry)))))))
  3619. entry)
  3620. (defvar org-agenda-skip-function nil
  3621. "Function to be called at each match during agenda construction.
  3622. If this function returns nil, the current match should not be skipped.
  3623. Otherwise, the function must return a position from where the search
  3624. should be continued.
  3625. This may also be a Lisp form, it will be evaluated.
  3626. Never set this variable using `setq' or so, because then it will apply
  3627. to all future agenda commands. If you do want a global skipping condition,
  3628. use the option `org-agenda-skip-function-global' instead.
  3629. The correct usage for `org-agenda-skip-function' is to bind it with
  3630. `let' to scope it dynamically into the agenda-constructing command.
  3631. A good way to set it is through options in `org-agenda-custom-commands'.")
  3632. (defun org-agenda-skip ()
  3633. "Throw to `:skip' in places that should be skipped.
  3634. Also moves point to the end of the skipped region, so that search can
  3635. continue from there."
  3636. (let ((p (point-at-bol)) to)
  3637. (when (or
  3638. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3639. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3640. (get-text-property p :org-archived)
  3641. (org-end-of-subtree t))
  3642. (and org-agenda-skip-comment-trees
  3643. (get-text-property p :org-comment)
  3644. (org-end-of-subtree t))
  3645. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3646. (org-agenda-skip-eval org-agenda-skip-function)))
  3647. (goto-char to))
  3648. (org-in-src-block-p t))
  3649. (throw :skip t))))
  3650. (defun org-agenda-skip-eval (form)
  3651. "If FORM is a function or a list, call (or eval) it and return the result.
  3652. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3653. and match data are returned to the previous state no matter what these
  3654. functions do."
  3655. (let (fp)
  3656. (and form
  3657. (or (setq fp (functionp form))
  3658. (consp form))
  3659. (save-excursion
  3660. (save-match-data
  3661. (if fp
  3662. (funcall form)
  3663. (eval form)))))))
  3664. (defvar org-agenda-markers nil
  3665. "List of all currently active markers created by `org-agenda'.")
  3666. (defvar org-agenda-last-marker-time (float-time)
  3667. "Creation time of the last agenda marker.")
  3668. (defun org-agenda-new-marker (&optional pos)
  3669. "Return a new agenda marker.
  3670. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3671. these markers and resets them when they are no longer in use."
  3672. (let ((m (copy-marker (or pos (point)) t)))
  3673. (setq org-agenda-last-marker-time (float-time))
  3674. (if org-agenda-buffer
  3675. (with-current-buffer org-agenda-buffer
  3676. (push m org-agenda-markers))
  3677. (push m org-agenda-markers))
  3678. m))
  3679. (defun org-agenda-reset-markers ()
  3680. "Reset markers created by `org-agenda'."
  3681. (while org-agenda-markers
  3682. (move-marker (pop org-agenda-markers) nil)))
  3683. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3684. "Save relative positions of markers in region.
  3685. This check for agenda markers in all agenda buffers currently active."
  3686. (dolist (buf (buffer-list))
  3687. (with-current-buffer buf
  3688. (when (eq major-mode 'org-agenda-mode)
  3689. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3690. org-agenda-markers)))))
  3691. ;;; Entry text mode
  3692. (defun org-agenda-entry-text-show-here ()
  3693. "Add some text from the entry as context to the current line."
  3694. (let (m txt o)
  3695. (setq m (org-get-at-bol 'org-hd-marker))
  3696. (unless (marker-buffer m)
  3697. (error "No marker points to an entry here"))
  3698. (setq txt (concat "\n" (org-no-properties
  3699. (org-agenda-get-some-entry-text
  3700. m org-agenda-entry-text-maxlines
  3701. org-agenda-entry-text-leaders))))
  3702. (when (string-match "\\S-" txt)
  3703. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3704. (overlay-put o 'evaporate t)
  3705. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3706. (overlay-put o 'after-string txt))))
  3707. (defun org-agenda-entry-text-show ()
  3708. "Add entry context for all agenda lines."
  3709. (interactive)
  3710. (save-excursion
  3711. (goto-char (point-max))
  3712. (beginning-of-line 1)
  3713. (while (not (bobp))
  3714. (when (org-get-at-bol 'org-hd-marker)
  3715. (org-agenda-entry-text-show-here))
  3716. (beginning-of-line 0))))
  3717. (defun org-agenda-entry-text-hide ()
  3718. "Remove any shown entry context."
  3719. (mapc (lambda (o)
  3720. (when (eq (overlay-get o 'org-overlay-type)
  3721. 'agenda-entry-content)
  3722. (delete-overlay o)))
  3723. (overlays-in (point-min) (point-max))))
  3724. (defun org-agenda-get-day-face (date)
  3725. "Return the face DATE should be displayed with."
  3726. (cond ((and (functionp org-agenda-day-face-function)
  3727. (funcall org-agenda-day-face-function date)))
  3728. ((org-agenda-today-p date) 'org-agenda-date-today)
  3729. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3730. 'org-agenda-date-weekend)
  3731. (t 'org-agenda-date)))
  3732. (defvar org-agenda-show-log-scoped)
  3733. ;;; Agenda Daily/Weekly
  3734. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3735. "Start day for the agenda view.
  3736. Custom commands can set this variable in the options section.
  3737. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3738. input allowed when reading a date through the Org calendar.
  3739. See the docstring of `org-read-date' for details.")
  3740. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3741. (defvar org-arg-loc nil) ; local variable
  3742. (defvar org-agenda-buffer-tmp-name nil)
  3743. ;;;###autoload
  3744. (defun org-agenda-list (&optional arg start-day span with-hour)
  3745. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3746. The view will be for the current day or week, but from the overview buffer
  3747. you will be able to go to other days/weeks.
  3748. With a numeric prefix argument in an interactive call, the agenda will
  3749. span ARG days. Lisp programs should instead specify SPAN to change
  3750. the number of days. SPAN defaults to `org-agenda-span'.
  3751. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3752. given in `org-agenda-start-on-weekday'.
  3753. When WITH-HOUR is non-nil, only include scheduled and deadline
  3754. items if they have an hour specification like [h]h:mm."
  3755. (interactive "P")
  3756. (when org-agenda-overriding-arguments
  3757. (setq arg (car org-agenda-overriding-arguments)
  3758. start-day (nth 1 org-agenda-overriding-arguments)
  3759. span (nth 2 org-agenda-overriding-arguments)))
  3760. (when (and (integerp arg) (> arg 0))
  3761. (setq span arg arg nil))
  3762. (catch 'exit
  3763. (setq org-agenda-buffer-name
  3764. (or org-agenda-buffer-tmp-name
  3765. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3766. (when org-agenda-sticky
  3767. (cond ((and org-keys (stringp org-match))
  3768. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3769. (org-keys
  3770. (format "*Org Agenda(%s)*" org-keys))
  3771. (t "*Org Agenda(a)*")))
  3772. "*Org Agenda*"))
  3773. (org-agenda-prepare "Day/Week")
  3774. (setq start-day (or start-day org-agenda-start-day))
  3775. (when (stringp start-day)
  3776. ;; Convert to an absolute day number
  3777. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3778. (org-compile-prefix-format 'agenda)
  3779. (org-set-sorting-strategy 'agenda)
  3780. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3781. (today (org-today))
  3782. (sd (or start-day today))
  3783. (ndays (org-agenda-span-to-ndays span sd))
  3784. (org-agenda-start-on-weekday
  3785. (and (or (eq ndays 7) (eq ndays 14))
  3786. org-agenda-start-on-weekday))
  3787. (thefiles (org-agenda-files nil 'ifmode))
  3788. (files thefiles)
  3789. (start (if (or (null org-agenda-start-on-weekday)
  3790. (< ndays 7))
  3791. sd
  3792. (let* ((nt (calendar-day-of-week
  3793. (calendar-gregorian-from-absolute sd)))
  3794. (n1 org-agenda-start-on-weekday)
  3795. (d (- nt n1)))
  3796. (- sd (+ (if (< d 0) 7 0) d)))))
  3797. (day-numbers (list start))
  3798. (day-cnt 0)
  3799. (inhibit-redisplay (not debug-on-error))
  3800. (org-agenda-show-log-scoped org-agenda-show-log)
  3801. s e rtn rtnall file date d start-pos end-pos todayp
  3802. clocktable-start clocktable-end filter)
  3803. (setq org-agenda-redo-command
  3804. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3805. (dotimes (n (1- ndays))
  3806. (push (1+ (car day-numbers)) day-numbers))
  3807. (setq day-numbers (nreverse day-numbers))
  3808. (setq clocktable-start (car day-numbers)
  3809. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3810. (setq-local org-starting-day (car day-numbers))
  3811. (setq-local org-arg-loc arg)
  3812. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3813. (unless org-agenda-compact-blocks
  3814. (let* ((d1 (car day-numbers))
  3815. (d2 (org-last day-numbers))
  3816. (w1 (org-days-to-iso-week d1))
  3817. (w2 (org-days-to-iso-week d2)))
  3818. (setq s (point))
  3819. (org-agenda--insert-overriding-header
  3820. (concat (org-agenda-span-name span)
  3821. "-agenda"
  3822. (cond ((<= 350 (- d2 d1)) "")
  3823. ((= w1 w2) (format " (W%02d)" w1))
  3824. (t (format " (W%02d-W%02d)" w1 w2)))
  3825. ":\n")))
  3826. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3827. 'org-date-line t))
  3828. (org-agenda-mark-header-line s))
  3829. (while (setq d (pop day-numbers))
  3830. (setq date (calendar-gregorian-from-absolute d)
  3831. s (point))
  3832. (if (or (setq todayp (= d today))
  3833. (and (not start-pos) (= d sd)))
  3834. (setq start-pos (point))
  3835. (when (and start-pos (not end-pos))
  3836. (setq end-pos (point))))
  3837. (setq files thefiles
  3838. rtnall nil)
  3839. (while (setq file (pop files))
  3840. (catch 'nextfile
  3841. (org-check-agenda-file file)
  3842. (let ((org-agenda-entry-types org-agenda-entry-types))
  3843. ;; Starred types override non-starred equivalents
  3844. (when (member :deadline* org-agenda-entry-types)
  3845. (setq org-agenda-entry-types
  3846. (delq :deadline org-agenda-entry-types)))
  3847. (when (member :scheduled* org-agenda-entry-types)
  3848. (setq org-agenda-entry-types
  3849. (delq :scheduled org-agenda-entry-types)))
  3850. ;; Honor with-hour
  3851. (when with-hour
  3852. (when (member :deadline org-agenda-entry-types)
  3853. (setq org-agenda-entry-types
  3854. (delq :deadline org-agenda-entry-types))
  3855. (push :deadline* org-agenda-entry-types))
  3856. (when (member :scheduled org-agenda-entry-types)
  3857. (setq org-agenda-entry-types
  3858. (delq :scheduled org-agenda-entry-types))
  3859. (push :scheduled* org-agenda-entry-types)))
  3860. (unless org-agenda-include-deadlines
  3861. (setq org-agenda-entry-types
  3862. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3863. (cond
  3864. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3865. (setq rtn (org-agenda-get-day-entries
  3866. file date :closed)))
  3867. (org-agenda-show-log-scoped
  3868. (setq rtn (apply 'org-agenda-get-day-entries
  3869. file date
  3870. (append '(:closed) org-agenda-entry-types))))
  3871. (t
  3872. (setq rtn (apply 'org-agenda-get-day-entries
  3873. file date
  3874. org-agenda-entry-types)))))
  3875. (setq rtnall (append rtnall rtn)))) ;; all entries
  3876. (when org-agenda-include-diary
  3877. (let ((org-agenda-search-headline-for-time t))
  3878. (require 'diary-lib)
  3879. (setq rtn (org-get-entries-from-diary date))
  3880. (setq rtnall (append rtnall rtn))))
  3881. (when (or rtnall org-agenda-show-all-dates)
  3882. (setq day-cnt (1+ day-cnt))
  3883. (insert
  3884. (if (stringp org-agenda-format-date)
  3885. (format-time-string org-agenda-format-date
  3886. (org-time-from-absolute date))
  3887. (funcall org-agenda-format-date date))
  3888. "\n")
  3889. (put-text-property s (1- (point)) 'face
  3890. (org-agenda-get-day-face date))
  3891. (put-text-property s (1- (point)) 'org-date-line t)
  3892. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3893. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3894. (when todayp
  3895. (put-text-property s (1- (point)) 'org-today t))
  3896. (setq rtnall
  3897. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3898. (when rtnall (insert ;; all entries
  3899. (org-agenda-finalize-entries rtnall 'agenda)
  3900. "\n"))
  3901. (put-text-property s (1- (point)) 'day d)
  3902. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  3903. (when (and org-agenda-clockreport-mode clocktable-start)
  3904. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3905. ;; the above line is to ensure the restricted range!
  3906. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3907. tbl)
  3908. (setq p (org-plist-delete p :block))
  3909. (setq p (plist-put p :tstart clocktable-start))
  3910. (setq p (plist-put p :tend clocktable-end))
  3911. (setq p (plist-put p :scope 'agenda))
  3912. (setq tbl (apply 'org-clock-get-clocktable p))
  3913. (insert tbl)))
  3914. (goto-char (point-min))
  3915. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3916. (unless (or (not (get-buffer-window))
  3917. (and (pos-visible-in-window-p (point-min))
  3918. (pos-visible-in-window-p (point-max))))
  3919. (goto-char (1- (point-max)))
  3920. (recenter -1)
  3921. (when (not (pos-visible-in-window-p (or start-pos 1)))
  3922. (goto-char (or start-pos 1))
  3923. (recenter 1)))
  3924. (goto-char (or start-pos 1))
  3925. (add-text-properties (point-min) (point-max)
  3926. `(org-agenda-type agenda
  3927. org-last-args (,arg ,start-day ,span)
  3928. org-redo-cmd ,org-agenda-redo-command
  3929. org-series-cmd ,org-cmd))
  3930. (when (eq org-agenda-show-log-scoped 'clockcheck)
  3931. (org-agenda-show-clocking-issues))
  3932. (org-agenda-finalize)
  3933. (setq buffer-read-only t)
  3934. (message ""))))
  3935. (defun org-agenda-ndays-to-span (n)
  3936. "Return a span symbol for a span of N days, or N if none matches."
  3937. (cond ((symbolp n) n)
  3938. ((= n 1) 'day)
  3939. ((= n 7) 'week)
  3940. ((= n 14) 'fortnight)
  3941. (t n)))
  3942. (defun org-agenda-span-to-ndays (span &optional start-day)
  3943. "Return ndays from SPAN, possibly starting at START-DAY.
  3944. START-DAY is an absolute time value."
  3945. (cond ((numberp span) span)
  3946. ((eq span 'day) 1)
  3947. ((eq span 'week) 7)
  3948. ((eq span 'fortnight) 14)
  3949. ((eq span 'month)
  3950. (let ((date (calendar-gregorian-from-absolute start-day)))
  3951. (calendar-last-day-of-month (car date) (cl-caddr date))))
  3952. ((eq span 'year)
  3953. (let ((date (calendar-gregorian-from-absolute start-day)))
  3954. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  3955. (defun org-agenda-span-name (span)
  3956. "Return a SPAN name."
  3957. (if (null span)
  3958. ""
  3959. (if (symbolp span)
  3960. (capitalize (symbol-name span))
  3961. (format "%d days" span))))
  3962. ;;; Agenda word search
  3963. (defvar org-agenda-search-history nil)
  3964. (defvar org-search-syntax-table nil
  3965. "Special syntax table for Org search.
  3966. In this table, we have single quotes not as word constituents, to
  3967. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  3968. (defvar org-mode-syntax-table) ; From org.el
  3969. (defun org-search-syntax-table ()
  3970. (unless org-search-syntax-table
  3971. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  3972. (modify-syntax-entry ?' "." org-search-syntax-table)
  3973. (modify-syntax-entry ?` "." org-search-syntax-table))
  3974. org-search-syntax-table)
  3975. (defvar org-agenda-last-search-view-search-was-boolean nil)
  3976. ;;;###autoload
  3977. (defun org-search-view (&optional todo-only string edit-at)
  3978. "Show all entries that contain a phrase or words or regular expressions.
  3979. With optional prefix argument TODO-ONLY, only consider entries that are
  3980. TODO entries. The argument STRING can be used to pass a default search
  3981. string into this function. If EDIT-AT is non-nil, it means that the
  3982. user should get a chance to edit this string, with cursor at position
  3983. EDIT-AT.
  3984. The search string can be viewed either as a phrase that should be found as
  3985. is, or it can be broken into a number of snippets, each of which must match
  3986. in a Boolean way to select an entry. The default depends on the variable
  3987. `org-agenda-search-view-always-boolean'.
  3988. Even if this is turned off (the default) you can always switch to
  3989. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  3990. The default is a direct search of the whole phrase, where each space in
  3991. the search string can expand to an arbitrary amount of whitespace,
  3992. including newlines.
  3993. If using a Boolean search, the search string is split on whitespace and
  3994. each snippet is searched separately, with logical AND to select an entry.
  3995. Words prefixed with a minus must *not* occur in the entry. Words without
  3996. a prefix or prefixed with a plus must occur in the entry. Matching is
  3997. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  3998. match whole words, not parts of a word) if
  3999. `org-agenda-search-view-force-full-words' is set (default is nil).
  4000. Boolean search snippets enclosed by curly braces are interpreted as
  4001. regular expressions that must or (when preceded with \"-\") must not
  4002. match in the entry. Snippets enclosed into double quotes will be taken
  4003. as a whole, to include whitespace.
  4004. - If the search string starts with an asterisk, search only in headlines.
  4005. - If (possibly after the leading star) the search string starts with an
  4006. exclamation mark, this also means to look at TODO entries only, an effect
  4007. that can also be achieved with a prefix argument.
  4008. - If (possibly after star and exclamation mark) the search string starts
  4009. with a colon, this will mean that the (non-regexp) snippets of the
  4010. Boolean search must match as full words.
  4011. This command searches the agenda files, and in addition the files
  4012. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4013. is active."
  4014. (interactive "P")
  4015. (when org-agenda-overriding-arguments
  4016. (setq todo-only (car org-agenda-overriding-arguments)
  4017. string (nth 1 org-agenda-overriding-arguments)
  4018. edit-at (nth 2 org-agenda-overriding-arguments)))
  4019. (let* ((props (list 'face nil
  4020. 'done-face 'org-agenda-done
  4021. 'org-not-done-regexp org-not-done-regexp
  4022. 'org-todo-regexp org-todo-regexp
  4023. 'org-complex-heading-regexp org-complex-heading-regexp
  4024. 'mouse-face 'highlight
  4025. 'help-echo (format "mouse-2 or RET jump to location")))
  4026. (full-words org-agenda-search-view-force-full-words)
  4027. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4028. regexp rtn rtnall files file pos inherited-tags
  4029. marker category level tags c neg re boolean
  4030. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4031. (unless (and (not edit-at)
  4032. (stringp string)
  4033. (string-match "\\S-" string))
  4034. (setq string (read-string
  4035. (if org-agenda-search-view-always-boolean
  4036. "[+-]Word/{Regexp} ...: "
  4037. "Phrase or [+-]Word/{Regexp} ...: ")
  4038. (cond
  4039. ((integerp edit-at) (cons string edit-at))
  4040. (edit-at string))
  4041. 'org-agenda-search-history)))
  4042. (catch 'exit
  4043. (when org-agenda-sticky
  4044. (setq org-agenda-buffer-name
  4045. (if (stringp string)
  4046. (format "*Org Agenda(%s:%s)*"
  4047. (or org-keys (or (and todo-only "S") "s")) string)
  4048. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4049. (org-agenda-prepare "SEARCH")
  4050. (org-compile-prefix-format 'search)
  4051. (org-set-sorting-strategy 'search)
  4052. (setq org-agenda-redo-command
  4053. (list 'org-search-view (if todo-only t nil)
  4054. (list 'if 'current-prefix-arg nil string)))
  4055. (setq org-agenda-query-string string)
  4056. (if (equal (string-to-char string) ?*)
  4057. (setq hdl-only t
  4058. words (substring string 1))
  4059. (setq words string))
  4060. (when (equal (string-to-char words) ?!)
  4061. (setq todo-only t
  4062. words (substring words 1)))
  4063. (when (equal (string-to-char words) ?:)
  4064. (setq full-words t
  4065. words (substring words 1)))
  4066. (when (or org-agenda-search-view-always-boolean
  4067. (member (string-to-char words) '(?- ?+ ?\{)))
  4068. (setq boolean t))
  4069. (setq words (split-string words))
  4070. (let (www w)
  4071. (while (setq w (pop words))
  4072. (while (and (string-match "\\\\\\'" w) words)
  4073. (setq w (concat (substring w 0 -1) " " (pop words))))
  4074. (push w www))
  4075. (setq words (nreverse www) www nil)
  4076. (while (setq w (pop words))
  4077. (when (and (string-match "\\`[-+]?{" w)
  4078. (not (string-match "}\\'" w)))
  4079. (while (and words (not (string-match "}\\'" (car words))))
  4080. (setq w (concat w " " (pop words))))
  4081. (setq w (concat w " " (pop words))))
  4082. (push w www))
  4083. (setq words (nreverse www)))
  4084. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4085. (when boolean
  4086. (let (wds w)
  4087. (while (setq w (pop words))
  4088. (when (or (equal (substring w 0 1) "\"")
  4089. (and (> (length w) 1)
  4090. (member (substring w 0 1) '("+" "-"))
  4091. (equal (substring w 1 2) "\"")))
  4092. (while (and words (not (equal (substring w -1) "\"")))
  4093. (setq w (concat w " " (pop words)))))
  4094. (and (string-match "\\`\\([-+]?\\)\"" w)
  4095. (setq w (replace-match "\\1" nil nil w)))
  4096. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4097. (push w wds))
  4098. (setq words (nreverse wds))))
  4099. (if boolean
  4100. (mapc (lambda (w)
  4101. (setq c (string-to-char w))
  4102. (if (equal c ?-)
  4103. (setq neg t w (substring w 1))
  4104. (if (equal c ?+)
  4105. (setq neg nil w (substring w 1))
  4106. (setq neg nil)))
  4107. (if (string-match "\\`{.*}\\'" w)
  4108. (setq re (substring w 1 -1))
  4109. (if full-words
  4110. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4111. (setq re (regexp-quote (downcase w)))))
  4112. (if neg (push re regexps-) (push re regexps+)))
  4113. words)
  4114. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4115. regexps+))
  4116. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4117. (if (not regexps+)
  4118. (setq regexp org-outline-regexp-bol)
  4119. (setq regexp (pop regexps+))
  4120. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4121. regexp))))
  4122. (setq files (org-agenda-files nil 'ifmode))
  4123. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4124. ;; restriction.
  4125. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4126. (pop org-agenda-text-search-extra-files)
  4127. (unless (get 'org-agenda-files 'org-restrict)
  4128. (setq files (org-add-archive-files files))))
  4129. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4130. ;; non-existent ones.
  4131. (setq files (cl-remove-duplicates
  4132. (append files org-agenda-text-search-extra-files)
  4133. :test (lambda (a b)
  4134. (and (file-exists-p a)
  4135. (file-exists-p b)
  4136. (file-equal-p a b))))
  4137. rtnall nil)
  4138. (while (setq file (pop files))
  4139. (setq ee nil)
  4140. (catch 'nextfile
  4141. (org-check-agenda-file file)
  4142. (setq buffer (if (file-exists-p file)
  4143. (org-get-agenda-file-buffer file)
  4144. (error "No such file %s" file)))
  4145. (unless buffer
  4146. ;; If file does not exist, make sure an error message is sent
  4147. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4148. file))))
  4149. (with-current-buffer buffer
  4150. (with-syntax-table (org-search-syntax-table)
  4151. (unless (derived-mode-p 'org-mode)
  4152. (error "Agenda file %s is not in Org mode" file))
  4153. (let ((case-fold-search t))
  4154. (save-excursion
  4155. (save-restriction
  4156. (if (eq buffer org-agenda-restrict)
  4157. (narrow-to-region org-agenda-restrict-begin
  4158. org-agenda-restrict-end)
  4159. (widen))
  4160. (goto-char (point-min))
  4161. (unless (or (org-at-heading-p)
  4162. (outline-next-heading))
  4163. (throw 'nextfile t))
  4164. (goto-char (max (point-min) (1- (point))))
  4165. (while (re-search-forward regexp nil t)
  4166. (org-back-to-heading t)
  4167. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4168. (> (org-reduced-level (org-outline-level))
  4169. org-agenda-search-view-max-outline-level)
  4170. (forward-line -1)
  4171. (org-back-to-heading t)))
  4172. (skip-chars-forward "* ")
  4173. (setq beg (point-at-bol)
  4174. beg1 (point)
  4175. end (progn
  4176. (outline-next-heading)
  4177. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4178. (> (org-reduced-level (org-outline-level))
  4179. org-agenda-search-view-max-outline-level)
  4180. (forward-line 1)
  4181. (outline-next-heading)))
  4182. (point)))
  4183. (catch :skip
  4184. (goto-char beg)
  4185. (org-agenda-skip)
  4186. (setq str (buffer-substring-no-properties
  4187. (point-at-bol)
  4188. (if hdl-only (point-at-eol) end)))
  4189. (mapc (lambda (wr) (when (string-match wr str)
  4190. (goto-char (1- end))
  4191. (throw :skip t)))
  4192. regexps-)
  4193. (mapc (lambda (wr) (unless (string-match wr str)
  4194. (goto-char (1- end))
  4195. (throw :skip t)))
  4196. (if todo-only
  4197. (cons (concat "^\\*+[ \t]+"
  4198. org-not-done-regexp)
  4199. regexps+)
  4200. regexps+))
  4201. (goto-char beg)
  4202. (setq marker (org-agenda-new-marker (point))
  4203. category (org-get-category)
  4204. level (make-string (org-reduced-level (org-outline-level)) ? )
  4205. inherited-tags
  4206. (or (eq org-agenda-show-inherited-tags 'always)
  4207. (and (listp org-agenda-show-inherited-tags)
  4208. (memq 'todo org-agenda-show-inherited-tags))
  4209. (and (eq org-agenda-show-inherited-tags t)
  4210. (or (eq org-agenda-use-tag-inheritance t)
  4211. (memq 'todo org-agenda-use-tag-inheritance))))
  4212. tags (org-get-tags nil (not inherited-tags))
  4213. txt (org-agenda-format-item
  4214. ""
  4215. (buffer-substring-no-properties
  4216. beg1 (point-at-eol))
  4217. level category tags t))
  4218. (org-add-props txt props
  4219. 'org-marker marker 'org-hd-marker marker
  4220. 'org-todo-regexp org-todo-regexp
  4221. 'level level
  4222. 'org-complex-heading-regexp org-complex-heading-regexp
  4223. 'priority 1000
  4224. 'type "search")
  4225. (push txt ee)
  4226. (goto-char (1- end))))))))))
  4227. (setq rtn (nreverse ee))
  4228. (setq rtnall (append rtnall rtn)))
  4229. (org-agenda--insert-overriding-header
  4230. (with-temp-buffer
  4231. (insert "Search words: ")
  4232. (add-text-properties (point-min) (1- (point))
  4233. (list 'face 'org-agenda-structure))
  4234. (setq pos (point))
  4235. (insert string "\n")
  4236. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4237. (setq pos (point))
  4238. (unless org-agenda-multi
  4239. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4240. Press `\\[org-agenda-manipulate-query-add]', \
  4241. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4242. `\\[org-agenda-manipulate-query-add-re]', \
  4243. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4244. `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
  4245. (add-text-properties pos (1- (point))
  4246. (list 'face 'org-agenda-structure)))
  4247. (buffer-string)))
  4248. (org-agenda-mark-header-line (point-min))
  4249. (when rtnall
  4250. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4251. (goto-char (point-min))
  4252. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4253. (add-text-properties (point-min) (point-max)
  4254. `(org-agenda-type search
  4255. org-last-args (,todo-only ,string ,edit-at)
  4256. org-redo-cmd ,org-agenda-redo-command
  4257. org-series-cmd ,org-cmd))
  4258. (org-agenda-finalize)
  4259. (setq buffer-read-only t))))
  4260. ;;; Agenda TODO list
  4261. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4262. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4263. (concat
  4264. (if (or (equal keywords "ALL") (not keywords))
  4265. (propertize "ALL" 'face 'warning)
  4266. (mapconcat
  4267. (lambda (kw)
  4268. (propertize kw 'face (org-get-todo-face kw)))
  4269. (org-split-string keywords "|")
  4270. "|"))
  4271. "\n"))
  4272. (defvar org-select-this-todo-keyword nil)
  4273. (defvar org-last-arg nil)
  4274. ;;;###autoload
  4275. (defun org-todo-list (&optional arg)
  4276. "Show all (not done) TODO entries from all agenda file in a single list.
  4277. The prefix arg can be used to select a specific TODO keyword and limit
  4278. the list to these. When using `\\[universal-argument]', you will be prompted
  4279. for a keyword. A numeric prefix directly selects the Nth keyword in
  4280. `org-todo-keywords-1'."
  4281. (interactive "P")
  4282. (when org-agenda-overriding-arguments
  4283. (setq arg org-agenda-overriding-arguments))
  4284. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4285. (let* ((today (org-today))
  4286. (date (calendar-gregorian-from-absolute today))
  4287. (completion-ignore-case t)
  4288. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4289. (catch 'exit
  4290. (when org-agenda-sticky
  4291. (setq org-agenda-buffer-name
  4292. (if (stringp org-select-this-todo-keyword)
  4293. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4294. org-select-this-todo-keyword)
  4295. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4296. (org-agenda-prepare "TODO")
  4297. (setq kwds org-todo-keywords-for-agenda
  4298. org-select-this-todo-keyword (if (stringp arg) arg
  4299. (and (integerp arg)
  4300. (> arg 0)
  4301. (nth (1- arg) kwds))))
  4302. (when (equal arg '(4))
  4303. (setq org-select-this-todo-keyword
  4304. (completing-read "Keyword (or KWD1|K2D2|...): "
  4305. (mapcar #'list kwds) nil nil)))
  4306. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4307. (org-compile-prefix-format 'todo)
  4308. (org-set-sorting-strategy 'todo)
  4309. (setq org-agenda-redo-command
  4310. `(org-todo-list (or (and (numberp current-prefix-arg)
  4311. current-prefix-arg)
  4312. ,org-select-this-todo-keyword
  4313. current-prefix-arg ,arg)))
  4314. (setq files (org-agenda-files nil 'ifmode)
  4315. rtnall nil)
  4316. (while (setq file (pop files))
  4317. (catch 'nextfile
  4318. (org-check-agenda-file file)
  4319. (setq rtn (org-agenda-get-day-entries file date :todo))
  4320. (setq rtnall (append rtnall rtn))))
  4321. (org-agenda--insert-overriding-header
  4322. (with-temp-buffer
  4323. (insert "Global list of TODO items of type: ")
  4324. (add-text-properties (point-min) (1- (point))
  4325. (list 'face 'org-agenda-structure
  4326. 'short-heading
  4327. (concat "ToDo: "
  4328. (or org-select-this-todo-keyword "ALL"))))
  4329. (org-agenda-mark-header-line (point-min))
  4330. (insert (org-agenda-propertize-selected-todo-keywords
  4331. org-select-this-todo-keyword))
  4332. (setq pos (point))
  4333. (unless org-agenda-multi
  4334. (insert (substitute-command-keys "Press \
  4335. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4336. to search again: (0)[ALL]"))
  4337. (let ((n 0))
  4338. (dolist (k kwds)
  4339. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4340. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4341. (insert "\n "))
  4342. (insert " " s))))
  4343. (insert "\n"))
  4344. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4345. (buffer-string)))
  4346. (org-agenda-mark-header-line (point-min))
  4347. (when rtnall
  4348. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4349. (goto-char (point-min))
  4350. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4351. (add-text-properties (point-min) (point-max)
  4352. `(org-agenda-type todo
  4353. org-last-args ,arg
  4354. org-redo-cmd ,org-agenda-redo-command
  4355. org-series-cmd ,org-cmd))
  4356. (org-agenda-finalize)
  4357. (setq buffer-read-only t))))
  4358. ;;; Agenda tags match
  4359. ;;;###autoload
  4360. (defun org-tags-view (&optional todo-only match)
  4361. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4362. The prefix arg TODO-ONLY limits the search to TODO entries."
  4363. (interactive "P")
  4364. (when org-agenda-overriding-arguments
  4365. (setq todo-only (car org-agenda-overriding-arguments)
  4366. match (nth 1 org-agenda-overriding-arguments)))
  4367. (let* ((org-tags-match-list-sublevels
  4368. org-tags-match-list-sublevels)
  4369. (completion-ignore-case t)
  4370. (org--matcher-tags-todo-only todo-only)
  4371. rtn rtnall files file pos matcher
  4372. buffer)
  4373. (when (and (stringp match) (not (string-match "\\S-" match)))
  4374. (setq match nil))
  4375. (catch 'exit
  4376. ;; TODO: this code is repeated a lot...
  4377. (when org-agenda-sticky
  4378. (setq org-agenda-buffer-name
  4379. (if (stringp match)
  4380. (format "*Org Agenda(%s:%s)*"
  4381. (or org-keys (or (and todo-only "M") "m")) match)
  4382. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4383. (setq matcher (org-make-tags-matcher match))
  4384. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4385. ;; expanding tags within `org-make-tags-matcher'
  4386. (org-agenda-prepare (concat "TAGS " match))
  4387. (setq match (car matcher)
  4388. matcher (cdr matcher))
  4389. (org-compile-prefix-format 'tags)
  4390. (org-set-sorting-strategy 'tags)
  4391. (setq org-agenda-query-string match)
  4392. (setq org-agenda-redo-command
  4393. (list 'org-tags-view
  4394. `(quote ,org--matcher-tags-todo-only)
  4395. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4396. (setq files (org-agenda-files nil 'ifmode)
  4397. rtnall nil)
  4398. (while (setq file (pop files))
  4399. (catch 'nextfile
  4400. (org-check-agenda-file file)
  4401. (setq buffer (if (file-exists-p file)
  4402. (org-get-agenda-file-buffer file)
  4403. (error "No such file %s" file)))
  4404. (if (not buffer)
  4405. ;; If file does not exist, error message to agenda
  4406. (setq rtn (list
  4407. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4408. rtnall (append rtnall rtn))
  4409. (with-current-buffer buffer
  4410. (unless (derived-mode-p 'org-mode)
  4411. (error "Agenda file %s is not in Org mode" file))
  4412. (save-excursion
  4413. (save-restriction
  4414. (if (eq buffer org-agenda-restrict)
  4415. (narrow-to-region org-agenda-restrict-begin
  4416. org-agenda-restrict-end)
  4417. (widen))
  4418. (setq rtn (org-scan-tags 'agenda
  4419. matcher
  4420. org--matcher-tags-todo-only))
  4421. (setq rtnall (append rtnall rtn))))))))
  4422. (org-agenda--insert-overriding-header
  4423. (with-temp-buffer
  4424. (insert "Headlines with TAGS match: ")
  4425. (add-text-properties (point-min) (1- (point))
  4426. (list 'face 'org-agenda-structure
  4427. 'short-heading
  4428. (concat "Match: " match)))
  4429. (setq pos (point))
  4430. (insert match "\n")
  4431. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4432. (setq pos (point))
  4433. (unless org-agenda-multi
  4434. (insert (substitute-command-keys
  4435. "Press \
  4436. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4437. to search again\n")))
  4438. (add-text-properties pos (1- (point))
  4439. (list 'face 'org-agenda-structure))
  4440. (buffer-string)))
  4441. (org-agenda-mark-header-line (point-min))
  4442. (when rtnall
  4443. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4444. (goto-char (point-min))
  4445. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4446. (add-text-properties
  4447. (point-min) (point-max)
  4448. `(org-agenda-type tags
  4449. org-last-args (,org--matcher-tags-todo-only ,match)
  4450. org-redo-cmd ,org-agenda-redo-command
  4451. org-series-cmd ,org-cmd))
  4452. (org-agenda-finalize)
  4453. (setq buffer-read-only t))))
  4454. ;;; Agenda Finding stuck projects
  4455. (defvar org-agenda-skip-regexp nil
  4456. "Regular expression used in skipping subtrees for the agenda.
  4457. This is basically a temporary global variable that can be set and then
  4458. used by user-defined selections using `org-agenda-skip-function'.")
  4459. (defvar org-agenda-overriding-header nil
  4460. "When set during agenda, todo and tags searches it replaces the header.
  4461. If an empty string, no header will be inserted. If any other
  4462. string, it will be inserted as a header. If nil, a header will
  4463. be generated automatically according to the command. This
  4464. variable should not be set directly, but custom commands can bind
  4465. it in the options section.")
  4466. (defun org-agenda-skip-entry-if (&rest conditions)
  4467. "Skip entry if any of CONDITIONS is true.
  4468. See `org-agenda-skip-if' for details."
  4469. (org-agenda-skip-if nil conditions))
  4470. (defun org-agenda-skip-subtree-if (&rest conditions)
  4471. "Skip subtree if any of CONDITIONS is true.
  4472. See `org-agenda-skip-if' for details."
  4473. (org-agenda-skip-if t conditions))
  4474. (defun org-agenda-skip-if (subtree conditions)
  4475. "Checks current entity for CONDITIONS.
  4476. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4477. the entry (i.e. the text before the next heading) is checked.
  4478. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4479. from different tests. Valid conditions are:
  4480. scheduled Check if there is a scheduled cookie
  4481. notscheduled Check if there is no scheduled cookie
  4482. deadline Check if there is a deadline
  4483. notdeadline Check if there is no deadline
  4484. timestamp Check if there is a timestamp (also deadline or scheduled)
  4485. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4486. regexp Check if regexp matches
  4487. notregexp Check if regexp does not match.
  4488. todo Check if TODO keyword matches
  4489. nottodo Check if TODO keyword does not match
  4490. The regexp is taken from the conditions list, it must come right after
  4491. the `regexp' or `notregexp' element.
  4492. `todo' and `nottodo' accept as an argument a list of todo
  4493. keywords, which may include \"*\" to match any todo keyword.
  4494. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4495. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4496. Instead of a list, a keyword class may be given. For example:
  4497. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4498. would skip entries that haven't been marked with any of \"DONE\"
  4499. keywords. Possible classes are: `todo', `done', `any'.
  4500. If any of these conditions is met, this function returns the end point of
  4501. the entity, causing the search to continue from there. This is a function
  4502. that can be put into `org-agenda-skip-function' for the duration of a command."
  4503. (org-back-to-heading t)
  4504. (let* ((beg (point))
  4505. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4506. (org-entry-end-position)))
  4507. (planning-end (if subtree end (line-end-position 2)))
  4508. m)
  4509. (and
  4510. (or (and (memq 'scheduled conditions)
  4511. (re-search-forward org-scheduled-time-regexp planning-end t))
  4512. (and (memq 'notscheduled conditions)
  4513. (not
  4514. (save-excursion
  4515. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4516. (and (memq 'deadline conditions)
  4517. (re-search-forward org-deadline-time-regexp planning-end t))
  4518. (and (memq 'notdeadline conditions)
  4519. (not
  4520. (save-excursion
  4521. (re-search-forward org-deadline-time-regexp planning-end t))))
  4522. (and (memq 'timestamp conditions)
  4523. (re-search-forward org-ts-regexp end t))
  4524. (and (memq 'nottimestamp conditions)
  4525. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4526. (and (setq m (memq 'regexp conditions))
  4527. (stringp (nth 1 m))
  4528. (re-search-forward (nth 1 m) end t))
  4529. (and (setq m (memq 'notregexp conditions))
  4530. (stringp (nth 1 m))
  4531. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4532. (and (or
  4533. (setq m (memq 'nottodo conditions))
  4534. (setq m (memq 'todo-unblocked conditions))
  4535. (setq m (memq 'nottodo-unblocked conditions))
  4536. (setq m (memq 'todo conditions)))
  4537. (org-agenda-skip-if-todo m end)))
  4538. end)))
  4539. (defun org-agenda-skip-if-todo (args end)
  4540. "Helper function for `org-agenda-skip-if', do not use it directly.
  4541. ARGS is a list with first element either `todo', `nottodo',
  4542. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4543. a list of TODO keywords, or a state symbol `todo' or `done' or
  4544. `any'."
  4545. (let ((todo-re
  4546. (concat "^\\*+[ \t]+"
  4547. (regexp-opt
  4548. (pcase args
  4549. (`(,_ todo)
  4550. (org-delete-all org-done-keywords
  4551. (copy-sequence org-todo-keywords-1)))
  4552. (`(,_ done) org-done-keywords)
  4553. (`(,_ any) org-todo-keywords-1)
  4554. (`(,_ ,(pred atom))
  4555. (error "Invalid TODO class or type: %S" args))
  4556. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4557. (`(,_ ,todo-list) todo-list))
  4558. 'words))))
  4559. (pcase args
  4560. (`(todo . ,_)
  4561. (let (case-fold-search) (re-search-forward todo-re end t)))
  4562. (`(nottodo . ,_)
  4563. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4564. (`(todo-unblocked . ,_)
  4565. (catch :unblocked
  4566. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4567. (when (org-entry-blocked-p) (throw :unblocked t)))
  4568. nil))
  4569. (`(nottodo-unblocked . ,_)
  4570. (catch :unblocked
  4571. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4572. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4573. t))
  4574. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4575. ;;;###autoload
  4576. (defun org-agenda-list-stuck-projects (&rest ignore)
  4577. "Create agenda view for projects that are stuck.
  4578. Stuck projects are project that have no next actions. For the definitions
  4579. of what a project is and how to check if it stuck, customize the variable
  4580. `org-stuck-projects'."
  4581. (interactive)
  4582. (let* ((org-agenda-overriding-header
  4583. (or org-agenda-overriding-header "List of stuck projects: "))
  4584. (matcher (nth 0 org-stuck-projects))
  4585. (todo (nth 1 org-stuck-projects))
  4586. (tags (nth 2 org-stuck-projects))
  4587. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4588. (todo-wds
  4589. (if (not (member "*" todo)) todo
  4590. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4591. (org-delete-all org-done-keywords-for-agenda
  4592. (copy-sequence org-todo-keywords-for-agenda))))
  4593. (todo-re (and todo
  4594. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4595. (mapconcat #'identity todo-wds "\\|"))))
  4596. (tags-re (cond ((null tags) nil)
  4597. ((member "*" tags) org-tag-line-re)
  4598. (tags
  4599. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4600. (concat org-outline-regexp-bol
  4601. ".*?[ \t]:"
  4602. other-tags
  4603. (regexp-opt tags t)
  4604. ":" other-tags "[ \t]*$")))
  4605. (t nil)))
  4606. (re-list (delq nil (list todo-re tags-re gen-re)))
  4607. (skip-re
  4608. (if (null re-list)
  4609. (error "Missing information to identify unstuck projects")
  4610. (mapconcat #'identity re-list "\\|")))
  4611. (org-agenda-skip-function
  4612. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4613. ;; in the subtree.
  4614. `(lambda ()
  4615. (and (save-excursion
  4616. (let ((case-fold-search nil))
  4617. (re-search-forward
  4618. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4619. (progn (outline-next-heading) (point))))))
  4620. (org-tags-view nil matcher)
  4621. (setq org-agenda-buffer-name (buffer-name))
  4622. (with-current-buffer org-agenda-buffer-name
  4623. (setq org-agenda-redo-command
  4624. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4625. (let ((inhibit-read-only t))
  4626. (add-text-properties
  4627. (point-min) (point-max)
  4628. `(org-redo-cmd ,org-agenda-redo-command))))))
  4629. ;;; Diary integration
  4630. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4631. (defvar diary-list-entries-hook)
  4632. (defvar diary-time-regexp)
  4633. (defun org-get-entries-from-diary (date)
  4634. "Get the (Emacs Calendar) diary entries for DATE."
  4635. (require 'diary-lib)
  4636. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4637. (diary-display-function 'diary-fancy-display)
  4638. (pop-up-frames nil)
  4639. (diary-list-entries-hook
  4640. (cons 'org-diary-default-entry diary-list-entries-hook))
  4641. (diary-file-name-prefix nil) ; turn this feature off
  4642. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4643. entries
  4644. (org-disable-agenda-to-diary t))
  4645. (save-excursion
  4646. (save-window-excursion
  4647. (funcall (if (fboundp 'diary-list-entries)
  4648. 'diary-list-entries 'list-diary-entries)
  4649. date 1)))
  4650. (if (not (get-buffer diary-fancy-buffer))
  4651. (setq entries nil)
  4652. (with-current-buffer diary-fancy-buffer
  4653. (setq buffer-read-only nil)
  4654. (if (zerop (buffer-size))
  4655. ;; No entries
  4656. (setq entries nil)
  4657. ;; Omit the date and other unnecessary stuff
  4658. (org-agenda-cleanup-fancy-diary)
  4659. ;; Add prefix to each line and extend the text properties
  4660. (if (zerop (buffer-size))
  4661. (setq entries nil)
  4662. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4663. (setq entries
  4664. (with-temp-buffer
  4665. (insert entries) (goto-char (point-min))
  4666. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4667. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4668. (replace-match (concat "; " (match-string 1)))))
  4669. (buffer-string)))))
  4670. (set-buffer-modified-p nil)
  4671. (kill-buffer diary-fancy-buffer)))
  4672. (when entries
  4673. (setq entries (org-split-string entries "\n"))
  4674. (setq entries
  4675. (mapcar
  4676. (lambda (x)
  4677. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4678. ;; Extend the text properties to the beginning of the line
  4679. (org-add-props x (text-properties-at (1- (length x)) x)
  4680. 'type "diary" 'date date 'face 'org-agenda-diary))
  4681. entries)))))
  4682. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4683. "Hook run when the fancy diary buffer is cleaned up.")
  4684. (defun org-agenda-cleanup-fancy-diary ()
  4685. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4686. This gets rid of the date, the underline under the date, and the
  4687. dummy entry installed by Org mode to ensure non-empty diary for
  4688. each date. It also removes lines that contain only whitespace."
  4689. (goto-char (point-min))
  4690. (if (looking-at ".*?:[ \t]*")
  4691. (progn
  4692. (replace-match "")
  4693. (re-search-forward "\n=+$" nil t)
  4694. (replace-match "")
  4695. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4696. (re-search-forward "\n=+$" nil t)
  4697. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4698. (goto-char (point-min))
  4699. (while (re-search-forward "^ +\n" nil t)
  4700. (replace-match ""))
  4701. (goto-char (point-min))
  4702. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4703. (replace-match ""))
  4704. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4705. (defun org-modify-diary-entry-string (string)
  4706. "Add text properties to string, allowing Org to act on it."
  4707. (org-add-props string nil
  4708. 'mouse-face 'highlight
  4709. 'help-echo (if buffer-file-name
  4710. (format "mouse-2 or RET jump to diary file %s"
  4711. (abbreviate-file-name buffer-file-name))
  4712. "")
  4713. 'org-agenda-diary-link t
  4714. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4715. (defun org-diary-default-entry ()
  4716. "Add a dummy entry to the diary.
  4717. Needed to avoid empty dates which mess up holiday display."
  4718. ;; Catch the error if dealing with the new add-to-diary-alist
  4719. (when org-disable-agenda-to-diary
  4720. (condition-case nil
  4721. (org-add-to-diary-list original-date "Org mode dummy" "")
  4722. (error
  4723. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4724. (defun org-add-to-diary-list (&rest args)
  4725. (if (fboundp 'diary-add-to-list)
  4726. (apply 'diary-add-to-list args)
  4727. (apply 'add-to-diary-list args)))
  4728. (defvar org-diary-last-run-time nil)
  4729. ;;;###autoload
  4730. (defun org-diary (&rest args)
  4731. "Return diary information from org files.
  4732. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4733. It accesses org files and extracts information from those files to be
  4734. listed in the diary. The function accepts arguments specifying what
  4735. items should be listed. For a list of arguments allowed here, see the
  4736. variable `org-agenda-entry-types'.
  4737. The call in the diary file should look like this:
  4738. &%%(org-diary) ~/path/to/some/orgfile.org
  4739. Use a separate line for each org file to check. Or, if you omit the file name,
  4740. all files listed in `org-agenda-files' will be checked automatically:
  4741. &%%(org-diary)
  4742. If you don't give any arguments (as in the example above), the default value
  4743. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4744. So the example above may also be written as
  4745. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4746. The function expects the lisp variables `entry' and `date' to be provided
  4747. by the caller, because this is how the calendar works. Don't use this
  4748. function from a program - use `org-agenda-get-day-entries' instead."
  4749. (when (> (- (float-time)
  4750. org-agenda-last-marker-time)
  4751. 5)
  4752. ;; I am not sure if this works with sticky agendas, because the marker
  4753. ;; list is then no longer a global variable.
  4754. (org-agenda-reset-markers))
  4755. (org-compile-prefix-format 'agenda)
  4756. (org-set-sorting-strategy 'agenda)
  4757. (setq args (or args org-agenda-entry-types))
  4758. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4759. (list entry)
  4760. (org-agenda-files t)))
  4761. (time (float-time))
  4762. file rtn results)
  4763. (when (or (not org-diary-last-run-time)
  4764. (> (- time
  4765. org-diary-last-run-time)
  4766. 3))
  4767. (org-agenda-prepare-buffers files))
  4768. (setq org-diary-last-run-time time)
  4769. ;; If this is called during org-agenda, don't return any entries to
  4770. ;; the calendar. Org Agenda will list these entries itself.
  4771. (when org-disable-agenda-to-diary (setq files nil))
  4772. (while (setq file (pop files))
  4773. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4774. (setq results (append results rtn)))
  4775. (when results
  4776. (setq results
  4777. (mapcar (lambda (i) (replace-regexp-in-string
  4778. org-link-bracket-re "\\3" i)) results))
  4779. (concat (org-agenda-finalize-entries results) "\n"))))
  4780. ;;; Agenda entry finders
  4781. (defun org-agenda--timestamp-to-absolute (&rest args)
  4782. "Call `org-time-string-to-absolute' with ARGS.
  4783. However, throw `:skip' whenever an error is raised."
  4784. (condition-case e
  4785. (apply #'org-time-string-to-absolute args)
  4786. (org-diary-sexp-no-match (throw :skip nil))
  4787. (error
  4788. (message "%s; Skipping entry" (error-message-string e))
  4789. (throw :skip nil))))
  4790. (defun org-agenda-get-day-entries (file date &rest args)
  4791. "Does the work for `org-diary' and `org-agenda'.
  4792. FILE is the path to a file to be checked for entries. DATE is date like
  4793. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4794. which kind of entries should be extracted. For details about these, see
  4795. the documentation of `org-diary'."
  4796. (let* ((org-startup-folded nil)
  4797. (org-startup-align-all-tables nil)
  4798. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4799. (error "No such file %s" file))))
  4800. (if (not buffer)
  4801. ;; If file does not exist, signal it in diary nonetheless.
  4802. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4803. (with-current-buffer buffer
  4804. (unless (derived-mode-p 'org-mode)
  4805. (error "Agenda file %s is not in Org mode" file))
  4806. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4807. (setf org-agenda-current-date date)
  4808. (save-excursion
  4809. (save-restriction
  4810. (if (eq buffer org-agenda-restrict)
  4811. (narrow-to-region org-agenda-restrict-begin
  4812. org-agenda-restrict-end)
  4813. (widen))
  4814. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4815. ;; first in order to populate DEADLINES before passing it.
  4816. ;;
  4817. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4818. ;; guarding us from modifying `org-agenda-entry-types'.
  4819. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4820. (when (and (memq :scheduled args) (memq :scheduled* args))
  4821. (setf args (delq :scheduled* args)))
  4822. (cond
  4823. ((memq :deadline args)
  4824. (setf args (cons :deadline
  4825. (delq :deadline (delq :deadline* args)))))
  4826. ((memq :deadline* args)
  4827. (setf args (cons :deadline* (delq :deadline* args)))))
  4828. ;; Collect list of headlines. Return them flattened.
  4829. (let ((case-fold-search nil) results deadlines)
  4830. (dolist (arg args (apply #'nconc (nreverse results)))
  4831. (pcase arg
  4832. ((and :todo (guard (org-agenda-today-p date)))
  4833. (push (org-agenda-get-todos) results))
  4834. (:timestamp
  4835. (push (org-agenda-get-blocks) results)
  4836. (push (org-agenda-get-timestamps deadlines) results))
  4837. (:sexp
  4838. (push (org-agenda-get-sexps) results))
  4839. (:scheduled
  4840. (push (org-agenda-get-scheduled deadlines) results))
  4841. (:scheduled*
  4842. (push (org-agenda-get-scheduled deadlines t) results))
  4843. (:closed
  4844. (push (org-agenda-get-progress) results))
  4845. (:deadline
  4846. (setf deadlines (org-agenda-get-deadlines))
  4847. (push deadlines results))
  4848. (:deadline*
  4849. (setf deadlines (org-agenda-get-deadlines t))
  4850. (push deadlines results)))))))))))
  4851. (defsubst org-em (x y list)
  4852. "Is X or Y a member of LIST?"
  4853. (or (memq x list) (memq y list)))
  4854. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4855. (defvar org-agenda-sorting-strategy-selected nil)
  4856. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4857. "Retrieve timestamp information for sorting agenda views.
  4858. Given a point or marker POM, returns a cons cell of the timestamp
  4859. and the timestamp type relevant for the sorting strategy in
  4860. `org-agenda-sorting-strategy-selected'."
  4861. (let (ts ts-date-type)
  4862. (save-match-data
  4863. (cond ((org-em 'scheduled-up 'scheduled-down
  4864. org-agenda-sorting-strategy-selected)
  4865. (setq ts (org-entry-get pom "SCHEDULED")
  4866. ts-date-type " scheduled"))
  4867. ((org-em 'deadline-up 'deadline-down
  4868. org-agenda-sorting-strategy-selected)
  4869. (setq ts (org-entry-get pom "DEADLINE")
  4870. ts-date-type " deadline"))
  4871. ((org-em 'ts-up 'ts-down
  4872. org-agenda-sorting-strategy-selected)
  4873. (setq ts (org-entry-get pom "TIMESTAMP")
  4874. ts-date-type " timestamp"))
  4875. ((org-em 'tsia-up 'tsia-down
  4876. org-agenda-sorting-strategy-selected)
  4877. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4878. ts-date-type " timestamp_ia"))
  4879. ((org-em 'timestamp-up 'timestamp-down
  4880. org-agenda-sorting-strategy-selected)
  4881. (setq ts (or (org-entry-get pom "SCHEDULED")
  4882. (org-entry-get pom "DEADLINE")
  4883. (org-entry-get pom "TIMESTAMP")
  4884. (org-entry-get pom "TIMESTAMP_IA"))
  4885. ts-date-type ""))
  4886. (t (setq ts-date-type "")))
  4887. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4888. ts-date-type))))
  4889. (defun org-agenda-get-todos ()
  4890. "Return the TODO information for agenda display."
  4891. (let* ((props (list 'face nil
  4892. 'done-face 'org-agenda-done
  4893. 'org-not-done-regexp org-not-done-regexp
  4894. 'org-todo-regexp org-todo-regexp
  4895. 'org-complex-heading-regexp org-complex-heading-regexp
  4896. 'mouse-face 'highlight
  4897. 'help-echo
  4898. (format "mouse-2 or RET jump to org file %s"
  4899. (abbreviate-file-name buffer-file-name))))
  4900. (case-fold-search nil)
  4901. (regexp (format org-heading-keyword-regexp-format
  4902. (cond
  4903. ((and org-select-this-todo-keyword
  4904. (equal org-select-this-todo-keyword "*"))
  4905. org-todo-regexp)
  4906. (org-select-this-todo-keyword
  4907. (concat "\\("
  4908. (mapconcat 'identity
  4909. (org-split-string
  4910. org-select-this-todo-keyword
  4911. "|")
  4912. "\\|") "\\)"))
  4913. (t org-not-done-regexp))))
  4914. marker priority category level tags todo-state
  4915. ts-date ts-date-type ts-date-pair
  4916. ee txt beg end inherited-tags todo-state-end-pos)
  4917. (goto-char (point-min))
  4918. (while (re-search-forward regexp nil t)
  4919. (catch :skip
  4920. (save-match-data
  4921. (beginning-of-line)
  4922. (org-agenda-skip)
  4923. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4924. (unless (and (setq todo-state (org-get-todo-state))
  4925. (setq todo-state-end-pos (match-end 2)))
  4926. (goto-char end)
  4927. (throw :skip nil))
  4928. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4929. (goto-char (1+ beg))
  4930. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4931. (throw :skip nil)))
  4932. (goto-char (match-beginning 2))
  4933. (setq marker (org-agenda-new-marker (match-beginning 0))
  4934. category (org-get-category)
  4935. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  4936. ts-date (car ts-date-pair)
  4937. ts-date-type (cdr ts-date-pair)
  4938. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  4939. inherited-tags
  4940. (or (eq org-agenda-show-inherited-tags 'always)
  4941. (and (listp org-agenda-show-inherited-tags)
  4942. (memq 'todo org-agenda-show-inherited-tags))
  4943. (and (eq org-agenda-show-inherited-tags t)
  4944. (or (eq org-agenda-use-tag-inheritance t)
  4945. (memq 'todo org-agenda-use-tag-inheritance))))
  4946. tags (org-get-tags nil (not inherited-tags))
  4947. level (make-string (org-reduced-level (org-outline-level)) ? )
  4948. txt (org-agenda-format-item "" txt level category tags t)
  4949. priority (1+ (org-get-priority txt)))
  4950. (org-add-props txt props
  4951. 'org-marker marker 'org-hd-marker marker
  4952. 'priority priority
  4953. 'level level
  4954. 'ts-date ts-date
  4955. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  4956. (push txt ee)
  4957. (if org-agenda-todo-list-sublevels
  4958. (goto-char todo-state-end-pos)
  4959. (org-end-of-subtree 'invisible))))
  4960. (nreverse ee)))
  4961. (defun org-agenda-todo-custom-ignore-p (time n)
  4962. "Check whether timestamp is farther away than n number of days.
  4963. This function is invoked if `org-agenda-todo-ignore-deadlines',
  4964. `org-agenda-todo-ignore-scheduled' or
  4965. `org-agenda-todo-ignore-timestamp' is set to an integer."
  4966. (let ((days (org-time-stamp-to-now
  4967. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  4968. (if (>= n 0)
  4969. (>= days n)
  4970. (<= days n))))
  4971. ;;;###autoload
  4972. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  4973. (&optional end)
  4974. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  4975. (when (or org-agenda-todo-ignore-with-date
  4976. org-agenda-todo-ignore-scheduled
  4977. org-agenda-todo-ignore-deadlines
  4978. org-agenda-todo-ignore-timestamp)
  4979. (setq end (or end (save-excursion (outline-next-heading) (point))))
  4980. (save-excursion
  4981. (or (and org-agenda-todo-ignore-with-date
  4982. (re-search-forward org-ts-regexp end t))
  4983. (and org-agenda-todo-ignore-scheduled
  4984. (re-search-forward org-scheduled-time-regexp end t)
  4985. (cond
  4986. ((eq org-agenda-todo-ignore-scheduled 'future)
  4987. (> (org-time-stamp-to-now
  4988. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  4989. ((eq org-agenda-todo-ignore-scheduled 'past)
  4990. (<= (org-time-stamp-to-now
  4991. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  4992. ((numberp org-agenda-todo-ignore-scheduled)
  4993. (org-agenda-todo-custom-ignore-p
  4994. (match-string 1) org-agenda-todo-ignore-scheduled))
  4995. (t)))
  4996. (and org-agenda-todo-ignore-deadlines
  4997. (re-search-forward org-deadline-time-regexp end t)
  4998. (cond
  4999. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5000. ((eq org-agenda-todo-ignore-deadlines 'far)
  5001. (not (org-deadline-close-p (match-string 1))))
  5002. ((eq org-agenda-todo-ignore-deadlines 'future)
  5003. (> (org-time-stamp-to-now
  5004. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5005. ((eq org-agenda-todo-ignore-deadlines 'past)
  5006. (<= (org-time-stamp-to-now
  5007. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5008. ((numberp org-agenda-todo-ignore-deadlines)
  5009. (org-agenda-todo-custom-ignore-p
  5010. (match-string 1) org-agenda-todo-ignore-deadlines))
  5011. (t (org-deadline-close-p (match-string 1)))))
  5012. (and org-agenda-todo-ignore-timestamp
  5013. (let ((buffer (current-buffer))
  5014. (regexp
  5015. (concat
  5016. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5017. (start (point)))
  5018. ;; Copy current buffer into a temporary one
  5019. (with-temp-buffer
  5020. (insert-buffer-substring buffer start end)
  5021. (goto-char (point-min))
  5022. ;; Delete SCHEDULED and DEADLINE items
  5023. (while (re-search-forward regexp end t)
  5024. (delete-region (match-beginning 0) (match-end 0)))
  5025. (goto-char (point-min))
  5026. ;; No search for timestamp left
  5027. (when (re-search-forward org-ts-regexp nil t)
  5028. (cond
  5029. ((eq org-agenda-todo-ignore-timestamp 'future)
  5030. (> (org-time-stamp-to-now
  5031. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5032. ((eq org-agenda-todo-ignore-timestamp 'past)
  5033. (<= (org-time-stamp-to-now
  5034. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5035. ((numberp org-agenda-todo-ignore-timestamp)
  5036. (org-agenda-todo-custom-ignore-p
  5037. (match-string 1) org-agenda-todo-ignore-timestamp))
  5038. (t))))))))))
  5039. (defun org-agenda-get-timestamps (&optional deadlines)
  5040. "Return the date stamp information for agenda display.
  5041. Optional argument DEADLINES is a list of deadline items to be
  5042. displayed in agenda view."
  5043. (let* ((props (list 'face 'org-agenda-calendar-event
  5044. 'org-not-done-regexp org-not-done-regexp
  5045. 'org-todo-regexp org-todo-regexp
  5046. 'org-complex-heading-regexp org-complex-heading-regexp
  5047. 'mouse-face 'highlight
  5048. 'help-echo
  5049. (format "mouse-2 or RET jump to Org file %s"
  5050. (abbreviate-file-name buffer-file-name))))
  5051. (current (calendar-absolute-from-gregorian date))
  5052. (today (org-today))
  5053. (deadline-position-alist
  5054. (mapcar (lambda (d)
  5055. (let ((m (get-text-property 0 'org-hd-marker d)))
  5056. (and m (marker-position m))))
  5057. deadlines))
  5058. ;; Match time-stamps set to current date, time-stamps with
  5059. ;; a repeater, and S-exp time-stamps.
  5060. (regexp
  5061. (concat
  5062. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5063. (regexp-quote
  5064. (substring
  5065. (format-time-string
  5066. (car org-time-stamp-formats)
  5067. (apply #'encode-time ; DATE bound by calendar
  5068. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5069. 1 11))
  5070. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5071. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5072. timestamp-items)
  5073. (goto-char (point-min))
  5074. (while (re-search-forward regexp nil t)
  5075. ;; Skip date ranges, scheduled and deadlines, which are handled
  5076. ;; specially. Also skip time-stamps before first headline as
  5077. ;; there would be no entry to add to the agenda. Eventually,
  5078. ;; ignore clock entries.
  5079. (catch :skip
  5080. (save-match-data
  5081. (when (or (org-at-date-range-p)
  5082. (org-at-planning-p)
  5083. (org-before-first-heading-p)
  5084. (and org-agenda-include-inactive-timestamps
  5085. (org-at-clock-log-p)))
  5086. (throw :skip nil))
  5087. (org-agenda-skip))
  5088. (let* ((pos (match-beginning 0))
  5089. (repeat (match-string 1))
  5090. (sexp-entry (match-string 3))
  5091. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5092. (save-excursion
  5093. (goto-char pos)
  5094. (looking-at org-ts-regexp-both)
  5095. (match-string 0))))
  5096. (todo-state (org-get-todo-state))
  5097. (warntime (get-text-property (point) 'org-appt-warntime))
  5098. (done? (member todo-state org-done-keywords)))
  5099. ;; Possibly skip done tasks.
  5100. (when (and done? org-agenda-skip-timestamp-if-done)
  5101. (throw :skip t))
  5102. ;; S-exp entry doesn't match current day: skip it.
  5103. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5104. (throw :skip nil))
  5105. (when repeat
  5106. (let* ((past
  5107. ;; A repeating time stamp is shown at its base
  5108. ;; date and every repeated date up to TODAY. If
  5109. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5110. ;; however, only the last repeat before today
  5111. ;; (inclusive) is shown.
  5112. (org-agenda--timestamp-to-absolute
  5113. repeat
  5114. (if (or (> current today)
  5115. (eq org-agenda-prefer-last-repeat t)
  5116. (member todo-state org-agenda-prefer-last-repeat))
  5117. today
  5118. current)
  5119. 'past (current-buffer) pos))
  5120. (future
  5121. ;; Display every repeated date past TODAY
  5122. ;; (exclusive) unless
  5123. ;; `org-agenda-show-future-repeats' is nil. If
  5124. ;; this variable is set to `next', only display
  5125. ;; the first repeated date after TODAY
  5126. ;; (exclusive).
  5127. (cond
  5128. ((<= current today) past)
  5129. ((not org-agenda-show-future-repeats) past)
  5130. (t
  5131. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5132. (1+ today)
  5133. current)))
  5134. (org-agenda--timestamp-to-absolute
  5135. repeat base 'future (current-buffer) pos))))))
  5136. (when (and (/= current past) (/= current future))
  5137. (throw :skip nil))))
  5138. (save-excursion
  5139. (re-search-backward org-outline-regexp-bol nil t)
  5140. ;; Possibly skip time-stamp when a deadline is set.
  5141. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5142. (assq (point) deadline-position-alist))
  5143. (throw :skip nil))
  5144. (let* ((category (org-get-category pos))
  5145. (inherited-tags
  5146. (or (eq org-agenda-show-inherited-tags 'always)
  5147. (and (consp org-agenda-show-inherited-tags)
  5148. (memq 'agenda org-agenda-show-inherited-tags))
  5149. (and (eq org-agenda-show-inherited-tags t)
  5150. (or (eq org-agenda-use-tag-inheritance t)
  5151. (memq 'agenda
  5152. org-agenda-use-tag-inheritance)))))
  5153. (tags (org-get-tags nil (not inherited-tags)))
  5154. (level (make-string (org-reduced-level (org-outline-level))
  5155. ?\s))
  5156. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5157. (match-string 1)))
  5158. (inactive? (= (char-after pos) ?\[))
  5159. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5160. (item
  5161. (org-agenda-format-item
  5162. (and inactive? org-agenda-inactive-leader)
  5163. head level category tags time-stamp org-ts-regexp habit?)))
  5164. (org-add-props item props
  5165. 'priority (if habit?
  5166. (org-habit-get-priority (org-habit-parse-todo))
  5167. (org-get-priority item))
  5168. 'org-marker (org-agenda-new-marker pos)
  5169. 'org-hd-marker (org-agenda-new-marker)
  5170. 'date date
  5171. 'level level
  5172. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5173. current)
  5174. 'todo-state todo-state
  5175. 'warntime warntime
  5176. 'type "timestamp")
  5177. (push item timestamp-items))))
  5178. (when org-agenda-skip-additional-timestamps-same-entry
  5179. (outline-next-heading))))
  5180. (nreverse timestamp-items)))
  5181. (defun org-agenda-get-sexps ()
  5182. "Return the sexp information for agenda display."
  5183. (require 'diary-lib)
  5184. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5185. 'mouse-face 'highlight
  5186. 'help-echo
  5187. (format "mouse-2 or RET jump to org file %s"
  5188. (abbreviate-file-name buffer-file-name))))
  5189. (regexp "^&?%%(")
  5190. marker category extra level ee txt tags entry
  5191. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5192. (goto-char (point-min))
  5193. (while (re-search-forward regexp nil t)
  5194. (catch :skip
  5195. (org-agenda-skip)
  5196. (setq beg (match-beginning 0))
  5197. (goto-char (1- (match-end 0)))
  5198. (setq b (point))
  5199. (forward-sexp 1)
  5200. (setq sexp (buffer-substring b (point)))
  5201. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5202. (org-trim (match-string 1))
  5203. ""))
  5204. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5205. (when result
  5206. (setq marker (org-agenda-new-marker beg)
  5207. level (make-string (org-reduced-level (org-outline-level)) ? )
  5208. category (org-get-category beg)
  5209. inherited-tags
  5210. (or (eq org-agenda-show-inherited-tags 'always)
  5211. (and (listp org-agenda-show-inherited-tags)
  5212. (memq 'agenda org-agenda-show-inherited-tags))
  5213. (and (eq org-agenda-show-inherited-tags t)
  5214. (or (eq org-agenda-use-tag-inheritance t)
  5215. (memq 'agenda org-agenda-use-tag-inheritance))))
  5216. tags (org-get-tags nil (not inherited-tags))
  5217. todo-state (org-get-todo-state)
  5218. warntime (get-text-property (point) 'org-appt-warntime)
  5219. extra nil)
  5220. (dolist (r (if (stringp result)
  5221. (list result)
  5222. result)) ;; we expect a list here
  5223. (when (and org-agenda-diary-sexp-prefix
  5224. (string-match org-agenda-diary-sexp-prefix r))
  5225. (setq extra (match-string 0 r)
  5226. r (replace-match "" nil nil r)))
  5227. (if (string-match "\\S-" r)
  5228. (setq txt r)
  5229. (setq txt "SEXP entry returned empty string"))
  5230. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5231. (org-add-props txt props 'org-marker marker
  5232. 'date date 'todo-state todo-state
  5233. 'level level 'type "sexp" 'warntime warntime)
  5234. (push txt ee)))))
  5235. (nreverse ee)))
  5236. ;; Calendar sanity: define some functions that are independent of
  5237. ;; `calendar-date-style'.
  5238. (defun org-anniversary (year month day &optional mark)
  5239. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5240. (with-no-warnings
  5241. (let ((calendar-date-style 'iso))
  5242. (diary-anniversary year month day mark))))
  5243. (defun org-cyclic (N year month day &optional mark)
  5244. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5245. (with-no-warnings
  5246. (let ((calendar-date-style 'iso))
  5247. (diary-cyclic N year month day mark))))
  5248. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5249. "Like `diary-block', but with fixed (ISO) order of arguments."
  5250. (with-no-warnings
  5251. (let ((calendar-date-style 'iso))
  5252. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5253. (defun org-date (year month day &optional mark)
  5254. "Like `diary-date', but with fixed (ISO) order of arguments."
  5255. (with-no-warnings
  5256. (let ((calendar-date-style 'iso))
  5257. (diary-date year month day mark))))
  5258. ;; Define the `org-class' function
  5259. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5260. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5261. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5262. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5263. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5264. `holidays', then any date that is known by the Emacs calendar to be a
  5265. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5266. then those holidays will be skipped."
  5267. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5268. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5269. (d (calendar-absolute-from-gregorian date))
  5270. (h (when skip-weeks (calendar-check-holidays date))))
  5271. (and
  5272. (<= date1 d)
  5273. (<= d date2)
  5274. (= (calendar-day-of-week date) dayname)
  5275. (or (not skip-weeks)
  5276. (progn
  5277. (require 'cal-iso)
  5278. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5279. (not (or (and h (memq 'holidays skip-weeks))
  5280. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5281. entry)))
  5282. (defalias 'org-get-closed 'org-agenda-get-progress)
  5283. (defun org-agenda-get-progress ()
  5284. "Return the logged TODO entries for agenda display."
  5285. (let* ((props (list 'mouse-face 'highlight
  5286. 'org-not-done-regexp org-not-done-regexp
  5287. 'org-todo-regexp org-todo-regexp
  5288. 'org-complex-heading-regexp org-complex-heading-regexp
  5289. 'help-echo
  5290. (format "mouse-2 or RET jump to org file %s"
  5291. (abbreviate-file-name buffer-file-name))))
  5292. (items (if (consp org-agenda-show-log-scoped)
  5293. org-agenda-show-log-scoped
  5294. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5295. '(clock)
  5296. org-agenda-log-mode-items)))
  5297. (parts
  5298. (delq nil
  5299. (list
  5300. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5301. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5302. (when (memq 'state items)
  5303. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5304. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5305. (error "`org-agenda-log-mode-items' is empty")))
  5306. (regexp (concat
  5307. "\\(" parts-re "\\)"
  5308. " *\\["
  5309. (regexp-quote
  5310. (substring
  5311. (format-time-string
  5312. (car org-time-stamp-formats)
  5313. (apply 'encode-time ; DATE bound by calendar
  5314. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5315. 1 11))))
  5316. (org-agenda-search-headline-for-time nil)
  5317. marker hdmarker priority category level tags closedp type
  5318. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5319. (goto-char (point-min))
  5320. (while (re-search-forward regexp nil t)
  5321. (catch :skip
  5322. (org-agenda-skip)
  5323. (setq marker (org-agenda-new-marker (match-beginning 0))
  5324. closedp (equal (match-string 1) org-closed-string)
  5325. statep (equal (string-to-char (match-string 1)) ?-)
  5326. clockp (not (or closedp statep))
  5327. state (and statep (match-string 2))
  5328. category (org-get-category (match-beginning 0))
  5329. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5330. (when (string-match "\\]" timestr)
  5331. ;; substring should only run to end of time stamp
  5332. (setq rest (substring timestr (match-end 0))
  5333. timestr (substring timestr 0 (match-end 0)))
  5334. (if (and (not closedp) (not statep)
  5335. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5336. rest))
  5337. (progn (setq timestr (concat (substring timestr 0 -1)
  5338. "-" (match-string 1 rest) "]"))
  5339. (setq clocked (match-string 2 rest)))
  5340. (setq clocked "-")))
  5341. (save-excursion
  5342. (setq extra
  5343. (cond
  5344. ((not org-agenda-log-mode-add-notes) nil)
  5345. (statep
  5346. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5347. (match-string 1)))
  5348. (clockp
  5349. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5350. (match-string 1)))))
  5351. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5352. (throw :skip nil)
  5353. (goto-char (match-beginning 0))
  5354. (setq hdmarker (org-agenda-new-marker)
  5355. inherited-tags
  5356. (or (eq org-agenda-show-inherited-tags 'always)
  5357. (and (listp org-agenda-show-inherited-tags)
  5358. (memq 'todo org-agenda-show-inherited-tags))
  5359. (and (eq org-agenda-show-inherited-tags t)
  5360. (or (eq org-agenda-use-tag-inheritance t)
  5361. (memq 'todo org-agenda-use-tag-inheritance))))
  5362. tags (org-get-tags nil (not inherited-tags))
  5363. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5364. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5365. (setq txt (match-string 1))
  5366. (when extra
  5367. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5368. (setq txt (concat (substring txt 0 (match-beginning 1))
  5369. " - " extra " " (match-string 2 txt)))
  5370. (setq txt (concat txt " - " extra))))
  5371. (setq txt (org-agenda-format-item
  5372. (cond
  5373. (closedp "Closed: ")
  5374. (statep (concat "State: (" state ")"))
  5375. (t (concat "Clocked: (" clocked ")")))
  5376. txt level category tags timestr)))
  5377. (setq type (cond (closedp "closed")
  5378. (statep "state")
  5379. (t "clock")))
  5380. (setq priority 100000)
  5381. (org-add-props txt props
  5382. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5383. 'priority priority 'level level
  5384. 'type type 'date date
  5385. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5386. (push txt ee))
  5387. (goto-char (point-at-eol))))
  5388. (nreverse ee)))
  5389. (defun org-agenda-show-clocking-issues ()
  5390. "Add overlays, showing issues with clocking.
  5391. See also the user option `org-agenda-clock-consistency-checks'."
  5392. (interactive)
  5393. (let* ((pl org-agenda-clock-consistency-checks)
  5394. (re (concat "^[ \t]*"
  5395. org-clock-string
  5396. "[ \t]+"
  5397. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5398. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5399. (tlstart 0.)
  5400. (tlend 0.)
  5401. (maxtime (org-duration-to-minutes
  5402. (or (plist-get pl :max-duration) "24:00")))
  5403. (mintime (org-duration-to-minutes
  5404. (or (plist-get pl :min-duration) 0)))
  5405. (maxgap (org-duration-to-minutes
  5406. ;; default 30:00 means never complain
  5407. (or (plist-get pl :max-gap) "30:00")))
  5408. (gapok (mapcar #'org-duration-to-minutes
  5409. (plist-get pl :gap-ok-around)))
  5410. (def-face (or (plist-get pl :default-face)
  5411. '((:background "DarkRed") (:foreground "white"))))
  5412. issue face m te ts dt ov)
  5413. (goto-char (point-min))
  5414. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5415. (setq issue nil face def-face)
  5416. (catch 'next
  5417. (setq m (org-get-at-bol 'org-marker)
  5418. te nil ts nil)
  5419. (unless (and m (markerp m))
  5420. (setq issue "No valid clock line") (throw 'next t))
  5421. (org-with-point-at m
  5422. (save-excursion
  5423. (goto-char (point-at-bol))
  5424. (unless (looking-at re)
  5425. (error "No valid Clock line")
  5426. (throw 'next t))
  5427. (unless (match-end 3)
  5428. (setq issue "No end time"
  5429. face (or (plist-get pl :no-end-time-face) face))
  5430. (throw 'next t))
  5431. (setq ts (match-string 1)
  5432. te (match-string 3)
  5433. ts (float-time
  5434. (apply #'encode-time (org-parse-time-string ts)))
  5435. te (float-time
  5436. (apply #'encode-time (org-parse-time-string te)))
  5437. dt (- te ts))))
  5438. (cond
  5439. ((> dt (* 60 maxtime))
  5440. ;; a very long clocking chunk
  5441. (setq issue (format "Clocking interval is very long: %s"
  5442. (org-duration-from-minutes (floor dt 60)))
  5443. face (or (plist-get pl :long-face) face)))
  5444. ((< dt (* 60 mintime))
  5445. ;; a very short clocking chunk
  5446. (setq issue (format "Clocking interval is very short: %s"
  5447. (org-duration-from-minutes (floor dt 60)))
  5448. face (or (plist-get pl :short-face) face)))
  5449. ((and (> tlend 0) (< ts tlend))
  5450. ;; Two clock entries are overlapping
  5451. (setq issue (format "Clocking overlap: %d minutes"
  5452. (/ (- tlend ts) 60))
  5453. face (or (plist-get pl :overlap-face) face)))
  5454. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5455. ;; There is a gap, lets see if we need to report it
  5456. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5457. (setq issue (format "Clocking gap: %d minutes"
  5458. (/ (- ts tlend) 60))
  5459. face (or (plist-get pl :gap-face) face))))
  5460. (t nil)))
  5461. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5462. (when issue
  5463. ;; OK, there was some issue, add an overlay to show the issue
  5464. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5465. (overlay-put ov 'before-string
  5466. (concat
  5467. (org-add-props
  5468. (format "%-43s" (concat " " issue))
  5469. nil
  5470. 'face face)
  5471. "\n"))
  5472. (overlay-put ov 'evaporate t)))))
  5473. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5474. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5475. (catch 'exit
  5476. (unless ok-list
  5477. ;; there are no OK times for gaps...
  5478. (throw 'exit nil))
  5479. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5480. ;; This is more than 24 hours, so it is OK.
  5481. ;; because we have at least one OK time, that must be in the
  5482. ;; 24 hour interval.
  5483. (throw 'exit t))
  5484. ;; We have a shorter gap.
  5485. ;; Now we have to get the minute of the day when these times are
  5486. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5487. (t2dec (decode-time (seconds-to-time t2)))
  5488. ;; compute the minute on the day
  5489. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5490. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5491. (when (< min2 min1)
  5492. ;; if min2 is smaller than min1, this means it is on the next day.
  5493. ;; Wrap it to after midnight.
  5494. (setq min2 (+ min2 1440)))
  5495. ;; Now check if any of the OK times is in the gap
  5496. (mapc (lambda (x)
  5497. ;; Wrap the time to after midnight if necessary
  5498. (when (< x min1) (setq x (+ x 1440)))
  5499. ;; Check if in interval
  5500. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5501. ok-list)
  5502. ;; Nope, this gap is not OK
  5503. nil)))
  5504. (defun org-agenda-get-deadlines (&optional with-hour)
  5505. "Return the deadline information for agenda display.
  5506. When WITH-HOUR is non-nil, only return deadlines with an hour
  5507. specification like [h]h:mm."
  5508. (let* ((props (list 'mouse-face 'highlight
  5509. 'org-not-done-regexp org-not-done-regexp
  5510. 'org-todo-regexp org-todo-regexp
  5511. 'org-complex-heading-regexp org-complex-heading-regexp
  5512. 'help-echo
  5513. (format "mouse-2 or RET jump to org file %s"
  5514. (abbreviate-file-name buffer-file-name))))
  5515. (regexp (if with-hour
  5516. org-deadline-time-hour-regexp
  5517. org-deadline-time-regexp))
  5518. (today (org-today))
  5519. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5520. (current (calendar-absolute-from-gregorian date))
  5521. deadline-items)
  5522. (goto-char (point-min))
  5523. (while (re-search-forward regexp nil t)
  5524. (catch :skip
  5525. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5526. (org-agenda-skip)
  5527. (let* ((s (match-string 1))
  5528. (pos (1- (match-beginning 1)))
  5529. (todo-state (save-match-data (org-get-todo-state)))
  5530. (done? (member todo-state org-done-keywords))
  5531. (sexp? (string-prefix-p "%%" s))
  5532. ;; DEADLINE is the deadline date for the entry. It is
  5533. ;; either the base date or the last repeat, according
  5534. ;; to `org-agenda-prefer-last-repeat'.
  5535. (deadline
  5536. (cond
  5537. (sexp? (org-agenda--timestamp-to-absolute s current))
  5538. ((or (eq org-agenda-prefer-last-repeat t)
  5539. (member todo-state org-agenda-prefer-last-repeat))
  5540. (org-agenda--timestamp-to-absolute
  5541. s today 'past (current-buffer) pos))
  5542. (t (org-agenda--timestamp-to-absolute s))))
  5543. ;; REPEAT is the future repeat closest from CURRENT,
  5544. ;; according to `org-agenda-show-future-repeats'. If
  5545. ;; the latter is nil, or if the time stamp has no
  5546. ;; repeat part, default to DEADLINE.
  5547. (repeat
  5548. (cond
  5549. (sexp? deadline)
  5550. ((<= current today) deadline)
  5551. ((not org-agenda-show-future-repeats) deadline)
  5552. (t
  5553. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5554. (1+ today)
  5555. current)))
  5556. (org-agenda--timestamp-to-absolute
  5557. s base 'future (current-buffer) pos)))))
  5558. (diff (- deadline current))
  5559. (suppress-prewarning
  5560. (let ((scheduled
  5561. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5562. (org-entry-get nil "SCHEDULED"))))
  5563. (cond
  5564. ((not scheduled) nil)
  5565. ;; The current item has a scheduled date, so
  5566. ;; evaluate its prewarning lead time.
  5567. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5568. ;; Use global prewarning-restart lead time.
  5569. org-agenda-skip-deadline-prewarning-if-scheduled)
  5570. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5571. 'pre-scheduled)
  5572. ;; Set pre-warning to no earlier than SCHEDULED.
  5573. (min (- deadline
  5574. (org-agenda--timestamp-to-absolute scheduled))
  5575. org-deadline-warning-days))
  5576. ;; Set pre-warning to deadline.
  5577. (t 0))))
  5578. (wdays (or suppress-prewarning (org-get-wdays s))))
  5579. (cond
  5580. ;; Only display deadlines at their base date, at future
  5581. ;; repeat occurrences or in today agenda.
  5582. ((= current deadline) nil)
  5583. ((= current repeat) nil)
  5584. ((not today?) (throw :skip nil))
  5585. ;; Upcoming deadline: display within warning period WDAYS.
  5586. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5587. ;; Overdue deadline: warn about it for
  5588. ;; `org-deadline-past-days' duration.
  5589. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5590. ;; Possibly skip done tasks.
  5591. (when (and done?
  5592. (or org-agenda-skip-deadline-if-done
  5593. (/= deadline current)))
  5594. (throw :skip nil))
  5595. (save-excursion
  5596. (re-search-backward "^\\*+[ \t]+" nil t)
  5597. (goto-char (match-end 0))
  5598. (let* ((category (org-get-category))
  5599. (level (make-string (org-reduced-level (org-outline-level))
  5600. ?\s))
  5601. (head (buffer-substring (point) (line-end-position)))
  5602. (inherited-tags
  5603. (or (eq org-agenda-show-inherited-tags 'always)
  5604. (and (listp org-agenda-show-inherited-tags)
  5605. (memq 'agenda org-agenda-show-inherited-tags))
  5606. (and (eq org-agenda-show-inherited-tags t)
  5607. (or (eq org-agenda-use-tag-inheritance t)
  5608. (memq 'agenda
  5609. org-agenda-use-tag-inheritance)))))
  5610. (tags (org-get-tags nil (not inherited-tags)))
  5611. (time
  5612. (cond
  5613. ;; No time of day designation if it is only
  5614. ;; a reminder.
  5615. ((and (/= current deadline) (/= current repeat)) nil)
  5616. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5617. (concat (substring s (match-beginning 1)) " "))
  5618. (t 'time)))
  5619. (item
  5620. (org-agenda-format-item
  5621. ;; Insert appropriate suffixes before deadlines.
  5622. ;; Those only apply to today agenda.
  5623. (pcase-let ((`(,now ,future ,past)
  5624. org-agenda-deadline-leaders))
  5625. (cond
  5626. ((and today? (< deadline today)) (format past (- diff)))
  5627. ((and today? (> deadline today)) (format future diff))
  5628. (t now)))
  5629. head level category tags time))
  5630. (face (org-agenda-deadline-face
  5631. (- 1 (/ (float diff) (max wdays 1)))))
  5632. (upcoming? (and today? (> deadline today)))
  5633. (warntime (get-text-property (point) 'org-appt-warntime)))
  5634. (org-add-props item props
  5635. 'org-marker (org-agenda-new-marker pos)
  5636. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5637. 'warntime warntime
  5638. 'level level
  5639. 'ts-date deadline
  5640. 'priority
  5641. ;; Adjust priority to today reminders about deadlines.
  5642. ;; Overdue deadlines get the highest priority
  5643. ;; increase, then imminent deadlines and eventually
  5644. ;; more distant deadlines.
  5645. (let ((adjust (if today? (- diff) 0)))
  5646. (+ adjust (org-get-priority item)))
  5647. 'todo-state todo-state
  5648. 'type (if upcoming? "upcoming-deadline" "deadline")
  5649. 'date (if upcoming? date deadline)
  5650. 'face (if done? 'org-agenda-done face)
  5651. 'undone-face face
  5652. 'done-face 'org-agenda-done)
  5653. (push item deadline-items))))))
  5654. (nreverse deadline-items)))
  5655. (defun org-agenda-deadline-face (fraction)
  5656. "Return the face to displaying a deadline item.
  5657. FRACTION is what fraction of the head-warning time has passed."
  5658. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5659. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5660. "Return the scheduled information for agenda display.
  5661. Optional argument DEADLINES is a list of deadline items to be
  5662. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5663. scheduled items with an hour specification like [h]h:mm."
  5664. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5665. 'org-todo-regexp org-todo-regexp
  5666. 'org-complex-heading-regexp org-complex-heading-regexp
  5667. 'done-face 'org-agenda-done
  5668. 'mouse-face 'highlight
  5669. 'help-echo
  5670. (format "mouse-2 or RET jump to Org file %s"
  5671. (abbreviate-file-name buffer-file-name))))
  5672. (regexp (if with-hour
  5673. org-scheduled-time-hour-regexp
  5674. org-scheduled-time-regexp))
  5675. (today (org-today))
  5676. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5677. (current (calendar-absolute-from-gregorian date))
  5678. (deadline-pos
  5679. (mapcar (lambda (d)
  5680. (let ((m (get-text-property 0 'org-hd-marker d)))
  5681. (and m (marker-position m))))
  5682. deadlines))
  5683. scheduled-items)
  5684. (goto-char (point-min))
  5685. (while (re-search-forward regexp nil t)
  5686. (catch :skip
  5687. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5688. (org-agenda-skip)
  5689. (let* ((s (match-string 1))
  5690. (pos (1- (match-beginning 1)))
  5691. (todo-state (save-match-data (org-get-todo-state)))
  5692. (donep (member todo-state org-done-keywords))
  5693. (sexp? (string-prefix-p "%%" s))
  5694. ;; SCHEDULE is the scheduled date for the entry. It is
  5695. ;; either the bare date or the last repeat, according
  5696. ;; to `org-agenda-prefer-last-repeat'.
  5697. (schedule
  5698. (cond
  5699. (sexp? (org-agenda--timestamp-to-absolute s current))
  5700. ((or (eq org-agenda-prefer-last-repeat t)
  5701. (member todo-state org-agenda-prefer-last-repeat))
  5702. (org-agenda--timestamp-to-absolute
  5703. s today 'past (current-buffer) pos))
  5704. (t (org-agenda--timestamp-to-absolute s))))
  5705. ;; REPEAT is the future repeat closest from CURRENT,
  5706. ;; according to `org-agenda-show-future-repeats'. If
  5707. ;; the latter is nil, or if the time stamp has no
  5708. ;; repeat part, default to SCHEDULE.
  5709. (repeat
  5710. (cond
  5711. (sexp? schedule)
  5712. ((<= current today) schedule)
  5713. ((not org-agenda-show-future-repeats) schedule)
  5714. (t
  5715. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5716. (1+ today)
  5717. current)))
  5718. (org-agenda--timestamp-to-absolute
  5719. s base 'future (current-buffer) pos)))))
  5720. (diff (- current schedule))
  5721. (warntime (get-text-property (point) 'org-appt-warntime))
  5722. (pastschedp (< schedule today))
  5723. (futureschedp (> schedule today))
  5724. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5725. (suppress-delay
  5726. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5727. (org-entry-get nil "DEADLINE"))))
  5728. (cond
  5729. ((not deadline) nil)
  5730. ;; The current item has a deadline date, so
  5731. ;; evaluate its delay time.
  5732. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5733. ;; Use global delay time.
  5734. (- org-agenda-skip-scheduled-delay-if-deadline))
  5735. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5736. 'post-deadline)
  5737. ;; Set delay to no later than DEADLINE.
  5738. (min (- schedule
  5739. (org-agenda--timestamp-to-absolute deadline))
  5740. org-scheduled-delay-days))
  5741. (t 0))))
  5742. (ddays
  5743. (cond
  5744. ;; Nullify delay when a repeater triggered already
  5745. ;; and the delay is of the form --Xd.
  5746. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5747. (> schedule (org-agenda--timestamp-to-absolute s)))
  5748. 0)
  5749. (suppress-delay
  5750. (let ((org-scheduled-delay-days suppress-delay))
  5751. (org-get-wdays s t t)))
  5752. (t (org-get-wdays s t)))))
  5753. ;; Display scheduled items at base date (SCHEDULE), today if
  5754. ;; scheduled before the current date, and at any repeat past
  5755. ;; today. However, skip delayed items and items that have
  5756. ;; been displayed for more than `org-scheduled-past-days'.
  5757. (unless (and todayp
  5758. habitp
  5759. (bound-and-true-p org-habit-show-all-today))
  5760. (when (or (and (> ddays 0) (< diff ddays))
  5761. (> diff (or (and habitp org-habit-scheduled-past-days)
  5762. org-scheduled-past-days))
  5763. (> schedule current)
  5764. (and (/= current schedule)
  5765. (/= current today)
  5766. (/= current repeat)))
  5767. (throw :skip nil)))
  5768. ;; Possibly skip done tasks.
  5769. (when (and donep
  5770. (or org-agenda-skip-scheduled-if-done
  5771. (/= schedule current)))
  5772. (throw :skip nil))
  5773. ;; Skip entry if it already appears as a deadline, per
  5774. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5775. ;; doesn't apply to habits.
  5776. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5777. ((guard
  5778. (or (not (memq (line-beginning-position 0) deadline-pos))
  5779. habitp))
  5780. nil)
  5781. (`repeated-after-deadline
  5782. (let ((deadline (time-to-days
  5783. (org-get-deadline-time (point)))))
  5784. (and (<= schedule deadline) (> current deadline))))
  5785. (`not-today pastschedp)
  5786. (`t t)
  5787. (_ nil))
  5788. (throw :skip nil))
  5789. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5790. ;; only show them for today. Also skip done habits.
  5791. (when (and habitp
  5792. (or donep
  5793. (not (bound-and-true-p org-habit-show-habits))
  5794. (and (not todayp)
  5795. (bound-and-true-p
  5796. org-habit-show-habits-only-for-today))))
  5797. (throw :skip nil))
  5798. (save-excursion
  5799. (re-search-backward "^\\*+[ \t]+" nil t)
  5800. (goto-char (match-end 0))
  5801. (let* ((category (org-get-category))
  5802. (inherited-tags
  5803. (or (eq org-agenda-show-inherited-tags 'always)
  5804. (and (listp org-agenda-show-inherited-tags)
  5805. (memq 'agenda org-agenda-show-inherited-tags))
  5806. (and (eq org-agenda-show-inherited-tags t)
  5807. (or (eq org-agenda-use-tag-inheritance t)
  5808. (memq 'agenda
  5809. org-agenda-use-tag-inheritance)))))
  5810. (tags (org-get-tags nil (not inherited-tags)))
  5811. (level (make-string (org-reduced-level (org-outline-level))
  5812. ?\s))
  5813. (head (buffer-substring (point) (line-end-position)))
  5814. (time
  5815. (cond
  5816. ;; No time of day designation if it is only a
  5817. ;; reminder, except for habits, which always show
  5818. ;; the time of day. Habits are an exception
  5819. ;; because if there is a time of day, that is
  5820. ;; interpreted to mean they should usually happen
  5821. ;; then, even if doing the habit was missed.
  5822. ((and
  5823. (not habitp)
  5824. (/= current schedule)
  5825. (/= current repeat))
  5826. nil)
  5827. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5828. (concat (substring s (match-beginning 1)) " "))
  5829. (t 'time)))
  5830. (item
  5831. (org-agenda-format-item
  5832. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5833. ;; Show a reminder of a past scheduled today.
  5834. (if (and todayp pastschedp)
  5835. (format past diff)
  5836. first))
  5837. head level category tags time nil habitp))
  5838. (face (cond ((and (not habitp) pastschedp)
  5839. 'org-scheduled-previously)
  5840. ((and habitp futureschedp)
  5841. 'org-agenda-done)
  5842. (todayp 'org-scheduled-today)
  5843. (t 'org-scheduled)))
  5844. (habitp (and habitp (org-habit-parse-todo))))
  5845. (org-add-props item props
  5846. 'undone-face face
  5847. 'face (if donep 'org-agenda-done face)
  5848. 'org-marker (org-agenda-new-marker pos)
  5849. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5850. 'type (if pastschedp "past-scheduled" "scheduled")
  5851. 'date (if pastschedp schedule date)
  5852. 'ts-date schedule
  5853. 'warntime warntime
  5854. 'level level
  5855. 'priority (if habitp (org-habit-get-priority habitp)
  5856. (+ 99 diff (org-get-priority item)))
  5857. 'org-habit-p habitp
  5858. 'todo-state todo-state)
  5859. (push item scheduled-items))))))
  5860. (nreverse scheduled-items)))
  5861. (defun org-agenda-get-blocks ()
  5862. "Return the date-range information for agenda display."
  5863. (let* ((props (list 'face nil
  5864. 'org-not-done-regexp org-not-done-regexp
  5865. 'org-todo-regexp org-todo-regexp
  5866. 'org-complex-heading-regexp org-complex-heading-regexp
  5867. 'mouse-face 'highlight
  5868. 'help-echo
  5869. (format "mouse-2 or RET jump to org file %s"
  5870. (abbreviate-file-name buffer-file-name))))
  5871. (regexp org-tr-regexp)
  5872. (d0 (calendar-absolute-from-gregorian date))
  5873. marker hdmarker ee txt d1 d2 s1 s2 category
  5874. level todo-state tags pos head donep inherited-tags)
  5875. (goto-char (point-min))
  5876. (while (re-search-forward regexp nil t)
  5877. (catch :skip
  5878. (org-agenda-skip)
  5879. (setq pos (point))
  5880. (let ((start-time (match-string 1))
  5881. (end-time (match-string 2)))
  5882. (setq s1 (match-string 1)
  5883. s2 (match-string 2)
  5884. d1 (time-to-days
  5885. (condition-case err
  5886. (org-time-string-to-time s1)
  5887. (error
  5888. (error
  5889. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5890. s1
  5891. pos
  5892. (current-buffer)
  5893. (error-message-string err)))))
  5894. d2 (time-to-days
  5895. (condition-case err
  5896. (org-time-string-to-time s2)
  5897. (error
  5898. (error
  5899. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5900. s2
  5901. pos
  5902. (current-buffer)
  5903. (error-message-string err))))))
  5904. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5905. ;; Only allow days between the limits, because the normal
  5906. ;; date stamps will catch the limits.
  5907. (save-excursion
  5908. (setq todo-state (org-get-todo-state))
  5909. (setq donep (member todo-state org-done-keywords))
  5910. (when (and donep org-agenda-skip-timestamp-if-done)
  5911. (throw :skip t))
  5912. (setq marker (org-agenda-new-marker (point))
  5913. category (org-get-category))
  5914. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5915. (throw :skip nil)
  5916. (goto-char (match-beginning 0))
  5917. (setq hdmarker (org-agenda-new-marker (point))
  5918. inherited-tags
  5919. (or (eq org-agenda-show-inherited-tags 'always)
  5920. (and (listp org-agenda-show-inherited-tags)
  5921. (memq 'agenda org-agenda-show-inherited-tags))
  5922. (and (eq org-agenda-show-inherited-tags t)
  5923. (or (eq org-agenda-use-tag-inheritance t)
  5924. (memq 'agenda org-agenda-use-tag-inheritance))))
  5925. tags (org-get-tags nil (not inherited-tags)))
  5926. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5927. (looking-at "\\*+[ \t]+\\(.*\\)")
  5928. (setq head (match-string 1))
  5929. (let ((remove-re
  5930. (if org-agenda-remove-timeranges-from-blocks
  5931. (concat
  5932. "<" (regexp-quote s1) ".*?>"
  5933. "--"
  5934. "<" (regexp-quote s2) ".*?>")
  5935. nil)))
  5936. (setq txt (org-agenda-format-item
  5937. (format
  5938. (nth (if (= d1 d2) 0 1)
  5939. org-agenda-timerange-leaders)
  5940. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5941. head level category tags
  5942. (cond ((and (= d1 d0) (= d2 d0))
  5943. (concat "<" start-time ">--<" end-time ">"))
  5944. ((= d1 d0)
  5945. (concat "<" start-time ">"))
  5946. ((= d2 d0)
  5947. (concat "<" end-time ">")))
  5948. remove-re))))
  5949. (org-add-props txt props
  5950. 'org-marker marker 'org-hd-marker hdmarker
  5951. 'type "block" 'date date
  5952. 'level level
  5953. 'todo-state todo-state
  5954. 'priority (org-get-priority txt))
  5955. (push txt ee))))
  5956. (goto-char pos)))
  5957. ;; Sort the entries by expiration date.
  5958. (nreverse ee)))
  5959. ;;; Agenda presentation and sorting
  5960. (defvar org-prefix-has-time nil
  5961. "A flag, set by `org-compile-prefix-format'.
  5962. The flag is set if the currently compiled format contains a `%t'.")
  5963. (defvar org-prefix-has-tag nil
  5964. "A flag, set by `org-compile-prefix-format'.
  5965. The flag is set if the currently compiled format contains a `%T'.")
  5966. (defvar org-prefix-has-effort nil
  5967. "A flag, set by `org-compile-prefix-format'.
  5968. The flag is set if the currently compiled format contains a `%e'.")
  5969. (defvar org-prefix-has-breadcrumbs nil
  5970. "A flag, set by `org-compile-prefix-format'.
  5971. The flag is set if the currently compiled format contains a `%b'.")
  5972. (defvar org-prefix-category-length nil
  5973. "Used by `org-compile-prefix-format' to remember the category field width.")
  5974. (defvar org-prefix-category-max-length nil
  5975. "Used by `org-compile-prefix-format' to remember the category field width.")
  5976. (defun org-agenda-get-category-icon (category)
  5977. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5978. (cl-dolist (entry org-agenda-category-icon-alist)
  5979. (when (string-match-p (car entry) category)
  5980. (if (listp (cadr entry))
  5981. (cl-return (cadr entry))
  5982. (cl-return (apply #'create-image (cdr entry)))))))
  5983. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5984. remove-re habitp)
  5985. "Format TXT to be inserted into the agenda buffer.
  5986. In particular, add the prefix and corresponding text properties.
  5987. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5988. LEVEL may be a string to replace the `%l' specifier.
  5989. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5990. category taken from local variable or file name. It will replace the `%c'
  5991. specifier in the format.
  5992. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  5993. TXT for sorting of this entry, and for the `%t' specifier in the format.
  5994. When DOTIME is a string, this string is searched for a time before TXT is.
  5995. TAGS can be the tags of the headline.
  5996. Any match of REMOVE-RE will be removed from TXT."
  5997. ;; We keep the org-prefix-* variable values along with a compiled
  5998. ;; formatter, so that multiple agendas existing at the same time do
  5999. ;; not step on each other toes.
  6000. ;;
  6001. ;; It was inconvenient to make these variables buffer local in
  6002. ;; Agenda buffers, because this function expects to be called with
  6003. ;; the buffer where item comes from being current, and not agenda
  6004. ;; buffer
  6005. (let* ((bindings (car org-prefix-format-compiled))
  6006. (formatter (cadr org-prefix-format-compiled)))
  6007. (cl-loop for (var value) in bindings
  6008. do (set var value))
  6009. (save-match-data
  6010. ;; Diary entries sometimes have extra whitespace at the beginning
  6011. (setq txt (org-trim txt))
  6012. ;; Fix the tags part in txt
  6013. (setq txt (org-agenda-fix-displayed-tags
  6014. txt tags
  6015. org-agenda-show-inherited-tags
  6016. org-agenda-hide-tags-regexp))
  6017. (let* ((category (or category
  6018. (if buffer-file-name
  6019. (file-name-sans-extension
  6020. (file-name-nondirectory buffer-file-name))
  6021. "")))
  6022. (category-icon (org-agenda-get-category-icon category))
  6023. (category-icon (if category-icon
  6024. (propertize " " 'display category-icon)
  6025. ""))
  6026. (effort (and (not (string= txt ""))
  6027. (get-text-property 1 'effort txt)))
  6028. ;; time, tag, effort are needed for the eval of the prefix format
  6029. (tag (if tags (nth (1- (length tags)) tags) ""))
  6030. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6031. time
  6032. (ts (when dotime (concat
  6033. (if (stringp dotime) dotime "")
  6034. (and org-agenda-search-headline-for-time txt))))
  6035. (time-of-day (and dotime (org-get-time-of-day ts)))
  6036. stamp plain s0 s1 s2 rtn srp l
  6037. duration breadcrumbs)
  6038. (and (derived-mode-p 'org-mode) buffer-file-name
  6039. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6040. (when (and dotime time-of-day)
  6041. ;; Extract starting and ending time and move them to prefix
  6042. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6043. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6044. (setq s0 (match-string 0 ts)
  6045. srp (and stamp (match-end 3))
  6046. s1 (match-string (if plain 1 2) ts)
  6047. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6048. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6049. ;; them, we might want to remove them there to avoid duplication.
  6050. ;; The user can turn this off with a variable.
  6051. (when (and org-prefix-has-time
  6052. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6053. (string-match (concat (regexp-quote s0) " *") txt)
  6054. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6055. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6056. (= (match-beginning 0) 0)
  6057. t))
  6058. (setq txt (replace-match "" nil nil txt))))
  6059. ;; Normalize the time(s) to 24 hour
  6060. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6061. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6062. ;; Try to set s2 if s1 and
  6063. ;; `org-agenda-default-appointment-duration' are set
  6064. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6065. (setq s2
  6066. (org-duration-from-minutes
  6067. (+ (org-duration-to-minutes s1 t)
  6068. org-agenda-default-appointment-duration)
  6069. nil t)))
  6070. ;; Compute the duration
  6071. (when s2
  6072. (setq duration (- (org-duration-to-minutes s2)
  6073. (org-duration-to-minutes s1)))))
  6074. (when (string-match org-tag-group-re txt)
  6075. ;; Tags are in the string
  6076. (if (or (eq org-agenda-remove-tags t)
  6077. (and org-agenda-remove-tags
  6078. org-prefix-has-tag))
  6079. (setq txt (replace-match "" t t txt))
  6080. (setq txt (replace-match
  6081. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6082. (match-string 1 txt))
  6083. t t txt))))
  6084. (when remove-re
  6085. (while (string-match remove-re txt)
  6086. (setq txt (replace-match "" t t txt))))
  6087. ;; Set org-heading property on `txt' to mark the start of the
  6088. ;; heading.
  6089. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6090. ;; Prepare the variables needed in the eval of the compiled format
  6091. (when org-prefix-has-breadcrumbs
  6092. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6093. (let ((s (org-format-outline-path (org-get-outline-path)
  6094. (1- (frame-width))
  6095. nil "->")))
  6096. (if (eq "" s) "" (concat s "->"))))))
  6097. (setq time (cond (s2 (concat
  6098. (org-agenda-time-of-day-to-ampm-maybe s1)
  6099. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6100. (when org-agenda-timegrid-use-ampm " ")))
  6101. (s1 (concat
  6102. (org-agenda-time-of-day-to-ampm-maybe s1)
  6103. (if org-agenda-timegrid-use-ampm
  6104. (concat time-grid-trailing-characters " ")
  6105. time-grid-trailing-characters)))
  6106. (t ""))
  6107. extra (or (and (not habitp) extra) "")
  6108. category (if (symbolp category) (symbol-name category) category)
  6109. level (or level ""))
  6110. (if (string-match org-link-bracket-re category)
  6111. (progn
  6112. (setq l (if (match-end 3)
  6113. (- (match-end 3) (match-beginning 3))
  6114. (- (match-end 1) (match-beginning 1))))
  6115. (when (< l (or org-prefix-category-length 0))
  6116. (setq category (copy-sequence category))
  6117. (org-add-props category nil
  6118. 'extra-space (make-string
  6119. (- org-prefix-category-length l 1) ?\ ))))
  6120. (when (and org-prefix-category-max-length
  6121. (>= (length category) org-prefix-category-max-length))
  6122. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6123. ;; Evaluate the compiled format
  6124. (setq rtn (concat (eval formatter) txt))
  6125. ;; And finally add the text properties
  6126. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6127. (org-add-props rtn nil
  6128. 'org-category category
  6129. 'tags (mapcar 'org-downcase-keep-props tags)
  6130. 'org-highest-priority org-highest-priority
  6131. 'org-lowest-priority org-lowest-priority
  6132. 'time-of-day time-of-day
  6133. 'duration duration
  6134. 'breadcrumbs breadcrumbs
  6135. 'txt txt
  6136. 'level level
  6137. 'time time
  6138. 'extra extra
  6139. 'format org-prefix-format-compiled
  6140. 'dotime dotime)))))
  6141. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6142. "Remove tags string from TXT, and add a modified list of tags.
  6143. The modified list may contain inherited tags, and tags matched by
  6144. `org-agenda-hide-tags-regexp' will be removed."
  6145. (when (or add-inherited hide-re)
  6146. (when (string-match org-tag-group-re txt)
  6147. (setq txt (substring txt 0 (match-beginning 0))))
  6148. (setq tags
  6149. (delq nil
  6150. (mapcar (lambda (tg)
  6151. (if (or (and hide-re (string-match hide-re tg))
  6152. (and (not add-inherited)
  6153. (get-text-property 0 'inherited tg)))
  6154. nil
  6155. tg))
  6156. tags)))
  6157. (when tags
  6158. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6159. i)
  6160. (setq txt (concat txt " :"
  6161. (mapconcat
  6162. (lambda (x)
  6163. (setq i (get-text-property 0 'inherited x))
  6164. (if (and have-i (not i))
  6165. (progn
  6166. (setq have-i nil)
  6167. (concat ":" x))
  6168. x))
  6169. tags ":")
  6170. (if have-i "::" ":"))))))
  6171. txt)
  6172. (defun org-downcase-keep-props (s)
  6173. (let ((props (text-properties-at 0 s)))
  6174. (setq s (downcase s))
  6175. (add-text-properties 0 (length s) props s)
  6176. s))
  6177. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6178. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6179. "Add a time-grid for agenda items which need it.
  6180. LIST is the list of agenda items formatted by `org-agenda-list'.
  6181. NDAYS is the span of the current agenda view.
  6182. TODAYP is t when the current agenda view is on today."
  6183. (catch 'exit
  6184. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6185. ((and todayp (member 'today (car org-agenda-time-grid))))
  6186. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6187. ((member 'weekly (car org-agenda-time-grid)))
  6188. (t (throw 'exit list)))
  6189. (let* ((have (delq nil (mapcar
  6190. (lambda (x) (get-text-property 1 'time-of-day x))
  6191. list)))
  6192. (string (nth 3 org-agenda-time-grid))
  6193. (gridtimes (nth 1 org-agenda-time-grid))
  6194. (req (car org-agenda-time-grid))
  6195. (remove (member 'remove-match req))
  6196. new time)
  6197. (when (and (member 'require-timed req) (not have))
  6198. ;; don't show empty grid
  6199. (throw 'exit list))
  6200. (while (setq time (pop gridtimes))
  6201. (unless (and remove (member time have))
  6202. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6203. (push (org-agenda-format-item
  6204. nil string nil "" nil
  6205. (concat (substring time 0 -2) ":" (substring time -2)))
  6206. new)
  6207. (put-text-property
  6208. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6209. (when (and todayp org-agenda-show-current-time-in-grid)
  6210. (push (org-agenda-format-item
  6211. nil org-agenda-current-time-string nil "" nil
  6212. (format-time-string "%H:%M "))
  6213. new)
  6214. (put-text-property
  6215. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6216. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6217. (append new list)
  6218. (append list new)))))
  6219. (defun org-compile-prefix-format (key)
  6220. "Compile the prefix format into a Lisp form that can be evaluated.
  6221. The resulting form and associated variable bindings is returned
  6222. and stored in the variable `org-prefix-format-compiled'."
  6223. (setq org-prefix-has-time nil
  6224. org-prefix-has-tag nil
  6225. org-prefix-category-length nil
  6226. org-prefix-has-effort nil
  6227. org-prefix-has-breadcrumbs nil)
  6228. (let ((s (cond
  6229. ((stringp org-agenda-prefix-format)
  6230. org-agenda-prefix-format)
  6231. ((assq key org-agenda-prefix-format)
  6232. (cdr (assq key org-agenda-prefix-format)))
  6233. (t " %-12:c%?-12t% s")))
  6234. (start 0)
  6235. varform vars var e c f opt)
  6236. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6237. s start)
  6238. (setq var (or (cdr (assoc (match-string 4 s)
  6239. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6240. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6241. 'eval)
  6242. c (or (match-string 3 s) "")
  6243. opt (match-beginning 1)
  6244. start (1+ (match-beginning 0)))
  6245. (cl-case var
  6246. (time (setq org-prefix-has-time t))
  6247. (tag (setq org-prefix-has-tag t))
  6248. (effort (setq org-prefix-has-effort t))
  6249. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6250. (setq f (concat "%" (match-string 2 s) "s"))
  6251. (when (eq var 'category)
  6252. (setq org-prefix-category-length
  6253. (floor (abs (string-to-number (match-string 2 s)))))
  6254. (setq org-prefix-category-max-length
  6255. (let ((x (match-string 2 s)))
  6256. (when (string-match-p "\\.[0-9]+" x)
  6257. (string-to-number (substring (match-string 0 x) 1))))))
  6258. (if (eq var 'eval)
  6259. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6260. (if opt
  6261. (setq varform
  6262. `(if (or (equal "" ,var) (equal nil ,var))
  6263. ""
  6264. (format ,f (concat ,var ,c))))
  6265. (setq varform
  6266. `(format ,f (if (or (equal ,var "")
  6267. (equal ,var nil)) ""
  6268. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6269. (setq s (replace-match "%s" t nil s))
  6270. (push varform vars))
  6271. (setq vars (nreverse vars))
  6272. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6273. (setq org-prefix-format-compiled
  6274. (list
  6275. `((org-prefix-has-time ,org-prefix-has-time)
  6276. (org-prefix-has-tag ,org-prefix-has-tag)
  6277. (org-prefix-category-length ,org-prefix-category-length)
  6278. (org-prefix-has-effort ,org-prefix-has-effort)
  6279. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6280. `(format ,s ,@vars))))))
  6281. (defun org-set-sorting-strategy (key)
  6282. (if (symbolp (car org-agenda-sorting-strategy))
  6283. ;; the old format
  6284. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6285. (setq org-agenda-sorting-strategy-selected
  6286. (or (cdr (assq key org-agenda-sorting-strategy))
  6287. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6288. '(time-up category-keep priority-down)))))
  6289. (defun org-get-time-of-day (s &optional string mod24)
  6290. "Check string S for a time of day.
  6291. If found, return it as a military time number between 0 and 2400.
  6292. If not found, return nil.
  6293. The optional STRING argument forces conversion into a 5 character wide string
  6294. HH:MM."
  6295. (save-match-data
  6296. (when
  6297. (and
  6298. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6299. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6300. (not (eq (get-text-property 1 'face s) 'org-link)))
  6301. (let* ((h (string-to-number (match-string 1 s)))
  6302. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6303. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6304. (am-p (equal ampm "am"))
  6305. (h1 (cond ((not ampm) h)
  6306. ((= h 12) (if am-p 0 12))
  6307. (t (+ h (if am-p 0 12)))))
  6308. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6309. (mod h1 24) h1))
  6310. (t0 (+ (* 100 h2) m))
  6311. (t1 (concat (if (>= h1 24) "+" " ")
  6312. (if (and org-agenda-time-leading-zero
  6313. (< t0 1000)) "0" "")
  6314. (if (< t0 100) "0" "")
  6315. (if (< t0 10) "0" "")
  6316. (int-to-string t0))))
  6317. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6318. (defvar org-agenda-before-sorting-filter-function nil
  6319. "Function to be applied to agenda items prior to sorting.
  6320. Prior to sorting also means just before they are inserted into the agenda.
  6321. To aid sorting, you may revisit the original entries and add more text
  6322. properties which will later be used by the sorting functions.
  6323. The function should take a string argument, an agenda line.
  6324. It has access to the text properties in that line, which contain among
  6325. other things, the property `org-hd-marker' that points to the entry
  6326. where the line comes from. Note that not all lines going into the agenda
  6327. have this property, only most.
  6328. The function should return the modified string. It is probably best
  6329. to ONLY change text properties.
  6330. You can also use this function as a filter, by returning nil for lines
  6331. you don't want to have in the agenda at all. For this application, you
  6332. could bind the variable in the options section of a custom command.")
  6333. (defun org-agenda-finalize-entries (list &optional type)
  6334. "Sort, limit and concatenate the LIST of agenda items.
  6335. The optional argument TYPE tells the agenda type."
  6336. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6337. (cdr (assoc type org-agenda-max-effort)))
  6338. (t org-agenda-max-effort)))
  6339. (max-todo (cond ((listp org-agenda-max-todos)
  6340. (cdr (assoc type org-agenda-max-todos)))
  6341. (t org-agenda-max-todos)))
  6342. (max-tags (cond ((listp org-agenda-max-tags)
  6343. (cdr (assoc type org-agenda-max-tags)))
  6344. (t org-agenda-max-tags)))
  6345. (max-entries (cond ((listp org-agenda-max-entries)
  6346. (cdr (assoc type org-agenda-max-entries)))
  6347. (t org-agenda-max-entries))))
  6348. (when org-agenda-before-sorting-filter-function
  6349. (setq list
  6350. (delq nil
  6351. (mapcar
  6352. org-agenda-before-sorting-filter-function list))))
  6353. (setq list (mapcar 'org-agenda-highlight-todo list)
  6354. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6355. (when max-effort
  6356. (setq list (org-agenda-limit-entries
  6357. list 'effort-minutes max-effort
  6358. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6359. 32767 -1))))))
  6360. (when max-todo
  6361. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6362. (when max-tags
  6363. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6364. (when max-entries
  6365. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6366. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6367. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6368. (mapconcat 'identity list "\n")))
  6369. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6370. "Limit the number of agenda entries."
  6371. (let ((include (and limit (< limit 0))))
  6372. (if limit
  6373. (let ((fun (or fn (lambda (p) (when p 1))))
  6374. (lim 0))
  6375. (delq nil
  6376. (mapcar
  6377. (lambda (e)
  6378. (let ((pval (funcall
  6379. fun (get-text-property (1- (length e))
  6380. prop e))))
  6381. (when pval (setq lim (+ lim pval)))
  6382. (cond ((and pval (<= lim (abs limit))) e)
  6383. ((and include (not pval)) e))))
  6384. list)))
  6385. list)))
  6386. (defun org-agenda-limit-interactively (remove)
  6387. "In agenda, interactively limit entries to various maximums."
  6388. (interactive "P")
  6389. (if remove
  6390. (progn (setq org-agenda-max-entries nil
  6391. org-agenda-max-todos nil
  6392. org-agenda-max-tags nil
  6393. org-agenda-max-effort nil)
  6394. (org-agenda-redo))
  6395. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6396. (msg (cond ((= max ?E) "How many minutes? ")
  6397. ((= max ?e) "How many entries? ")
  6398. ((= max ?t) "How many TODO entries? ")
  6399. ((= max ?T) "How many tagged entries? ")
  6400. (t (user-error "Wrong input"))))
  6401. (num (string-to-number (read-from-minibuffer msg))))
  6402. (cond ((equal max ?e)
  6403. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6404. ((equal max ?t)
  6405. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6406. ((equal max ?T)
  6407. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6408. ((equal max ?E)
  6409. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6410. (org-agenda-fit-window-to-buffer))
  6411. (defun org-agenda-highlight-todo (x)
  6412. (let ((org-done-keywords org-done-keywords-for-agenda)
  6413. (case-fold-search nil)
  6414. re)
  6415. (if (eq x 'line)
  6416. (save-excursion
  6417. (beginning-of-line 1)
  6418. (setq re (org-get-at-bol 'org-todo-regexp))
  6419. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6420. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6421. (add-text-properties (match-beginning 0) (match-end 1)
  6422. (list 'face (org-get-todo-face 1)))
  6423. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6424. (delete-region (match-beginning 1) (1- (match-end 0)))
  6425. (goto-char (match-beginning 1))
  6426. (insert (format org-agenda-todo-keyword-format s)))))
  6427. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6428. (setq re (get-text-property 0 'org-todo-regexp x))
  6429. (when (and re
  6430. ;; Test `pl' because if there's no heading content,
  6431. ;; there's no point matching to highlight. Note
  6432. ;; that if we didn't test `pl' first, and there
  6433. ;; happened to be no keyword from `org-todo-regexp'
  6434. ;; on this heading line, then the `equal' comparison
  6435. ;; afterwards would spuriously succeed in the case
  6436. ;; where `pl' is nil -- causing an args-out-of-range
  6437. ;; error when we try to add text properties to text
  6438. ;; that isn't there.
  6439. pl
  6440. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6441. x pl) pl))
  6442. (add-text-properties
  6443. (or (match-end 1) (match-end 0)) (match-end 0)
  6444. (list 'face (org-get-todo-face (match-string 2 x)))
  6445. x)
  6446. (when (match-end 1)
  6447. (setq x
  6448. (concat
  6449. (substring x 0 (match-end 1))
  6450. (format org-agenda-todo-keyword-format
  6451. (match-string 2 x))
  6452. ;; Remove `display' property as the icon could leak
  6453. ;; on the white space.
  6454. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6455. 'display))
  6456. (substring x (match-end 3)))))))
  6457. x)))
  6458. (defsubst org-cmp-values (a b property)
  6459. "Compare the numeric value of text PROPERTY for string A and B."
  6460. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6461. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6462. (cond ((> pa pb) +1)
  6463. ((< pa pb) -1))))
  6464. (defsubst org-cmp-effort (a b)
  6465. "Compare the effort values of string A and B."
  6466. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6467. ;; `effort-minutes' property is not directly accessible from
  6468. ;; the strings, but is stored as a property in `txt'.
  6469. (ea (or (get-text-property
  6470. 0 'effort-minutes (get-text-property 0 'txt a))
  6471. def))
  6472. (eb (or (get-text-property
  6473. 0 'effort-minutes (get-text-property 0 'txt b))
  6474. def)))
  6475. (cond ((> ea eb) +1)
  6476. ((< ea eb) -1))))
  6477. (defsubst org-cmp-category (a b)
  6478. "Compare the string values of categories of strings A and B."
  6479. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6480. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6481. (cond ((string-lessp ca cb) -1)
  6482. ((string-lessp cb ca) +1))))
  6483. (defsubst org-cmp-todo-state (a b)
  6484. "Compare the todo states of strings A and B."
  6485. (let* ((ma (or (get-text-property 1 'org-marker a)
  6486. (get-text-property 1 'org-hd-marker a)))
  6487. (mb (or (get-text-property 1 'org-marker b)
  6488. (get-text-property 1 'org-hd-marker b)))
  6489. (fa (and ma (marker-buffer ma)))
  6490. (fb (and mb (marker-buffer mb)))
  6491. (todo-kwds
  6492. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6493. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6494. (ta (or (get-text-property 1 'todo-state a) ""))
  6495. (tb (or (get-text-property 1 'todo-state b) ""))
  6496. (la (- (length (member ta todo-kwds))))
  6497. (lb (- (length (member tb todo-kwds))))
  6498. (donepa (member ta org-done-keywords-for-agenda))
  6499. (donepb (member tb org-done-keywords-for-agenda)))
  6500. (cond ((and donepa (not donepb)) -1)
  6501. ((and (not donepa) donepb) +1)
  6502. ((< la lb) -1)
  6503. ((< lb la) +1))))
  6504. (defsubst org-cmp-alpha (a b)
  6505. "Compare the headlines, alphabetically."
  6506. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6507. (plb (text-property-any 0 (length b) 'org-heading t b))
  6508. (ta (and pla (substring a pla)))
  6509. (tb (and plb (substring b plb)))
  6510. (case-fold-search nil))
  6511. (when pla
  6512. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6513. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6514. (setq ta (substring ta (match-end 0))))
  6515. (setq ta (downcase ta)))
  6516. (when plb
  6517. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6518. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6519. (setq tb (substring tb (match-end 0))))
  6520. (setq tb (downcase tb)))
  6521. (cond ((not (or ta tb)) nil)
  6522. ((not ta) +1)
  6523. ((not tb) -1)
  6524. ((string-lessp ta tb) -1)
  6525. ((string-lessp tb ta) +1))))
  6526. (defsubst org-cmp-tag (a b)
  6527. "Compare the string values of the first tags of A and B."
  6528. (let ((ta (car (last (get-text-property 1 'tags a))))
  6529. (tb (car (last (get-text-property 1 'tags b)))))
  6530. (cond ((not (or ta tb)) nil)
  6531. ((not ta) +1)
  6532. ((not tb) -1)
  6533. ((string-lessp ta tb) -1)
  6534. ((string-lessp tb ta) +1))))
  6535. (defsubst org-cmp-time (a b)
  6536. "Compare the time-of-day values of strings A and B."
  6537. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6538. (ta (or (get-text-property 1 'time-of-day a) def))
  6539. (tb (or (get-text-property 1 'time-of-day b) def)))
  6540. (cond ((< ta tb) -1)
  6541. ((< tb ta) +1))))
  6542. (defsubst org-cmp-ts (a b type)
  6543. "Compare the timestamps values of entries A and B.
  6544. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6545. \"timestamp_ia\", compare within each of these type. When TYPE
  6546. is the empty string, compare all timestamps without respect of
  6547. their type."
  6548. (let* ((def (and (not org-sort-agenda-notime-is-late) -1))
  6549. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6550. (get-text-property 1 'ts-date a))
  6551. def))
  6552. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6553. (get-text-property 1 'ts-date b))
  6554. def)))
  6555. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6556. ((if tb (and ta (< tb ta)) ta) +1))))
  6557. (defsubst org-cmp-habit-p (a b)
  6558. "Compare the todo states of strings A and B."
  6559. (let ((ha (get-text-property 1 'org-habit-p a))
  6560. (hb (get-text-property 1 'org-habit-p b)))
  6561. (cond ((and ha (not hb)) -1)
  6562. ((and (not ha) hb) +1))))
  6563. (defun org-entries-lessp (a b)
  6564. "Predicate for sorting agenda entries."
  6565. ;; The following variables will be used when the form is evaluated.
  6566. ;; So even though the compiler complains, keep them.
  6567. (let* ((ss org-agenda-sorting-strategy-selected)
  6568. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6569. (org-cmp-ts a b "")))
  6570. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6571. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6572. (org-cmp-ts a b "scheduled")))
  6573. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6574. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6575. (org-cmp-ts a b "deadline")))
  6576. (deadline-down (if deadline-up (- deadline-up) nil))
  6577. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6578. (org-cmp-ts a b "timestamp_ia")))
  6579. (tsia-down (if tsia-up (- tsia-up) nil))
  6580. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6581. (org-cmp-ts a b "timestamp")))
  6582. (ts-down (if ts-up (- ts-up) nil))
  6583. (time-up (and (org-em 'time-up 'time-down ss)
  6584. (org-cmp-time a b)))
  6585. (time-down (if time-up (- time-up) nil))
  6586. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6587. (org-cmp-values a b 'org-stats)))
  6588. (stats-down (if stats-up (- stats-up) nil))
  6589. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6590. (org-cmp-values a b 'priority)))
  6591. (priority-down (if priority-up (- priority-up) nil))
  6592. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6593. (org-cmp-effort a b)))
  6594. (effort-down (if effort-up (- effort-up) nil))
  6595. (category-up (and (or (org-em 'category-up 'category-down ss)
  6596. (memq 'category-keep ss))
  6597. (org-cmp-category a b)))
  6598. (category-down (if category-up (- category-up) nil))
  6599. (category-keep (if category-up +1 nil))
  6600. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6601. (org-cmp-tag a b)))
  6602. (tag-down (if tag-up (- tag-up) nil))
  6603. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6604. (org-cmp-todo-state a b)))
  6605. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6606. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6607. (org-cmp-habit-p a b)))
  6608. (habit-down (if habit-up (- habit-up) nil))
  6609. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6610. (org-cmp-alpha a b)))
  6611. (alpha-down (if alpha-up (- alpha-up) nil))
  6612. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6613. user-defined-up user-defined-down)
  6614. (when (and need-user-cmp org-agenda-cmp-user-defined
  6615. (functionp org-agenda-cmp-user-defined))
  6616. (setq user-defined-up
  6617. (funcall org-agenda-cmp-user-defined a b)
  6618. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6619. (cdr (assoc
  6620. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6621. '((-1 . t) (1 . nil) (nil . nil))))))
  6622. ;;; Agenda restriction lock
  6623. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6624. "Overlay to mark the headline to which agenda commands are restricted.")
  6625. (overlay-put org-agenda-restriction-lock-overlay
  6626. 'face 'org-agenda-restriction-lock)
  6627. (overlay-put org-agenda-restriction-lock-overlay
  6628. 'help-echo "Agendas are currently limited to this subtree.")
  6629. (delete-overlay org-agenda-restriction-lock-overlay)
  6630. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6631. "Set the restriction lock to the agenda item at point from within the agenda.
  6632. When called with a `\\[universal-argument]' prefix, restrict to
  6633. the file which contains the item.
  6634. Argument ARG is the prefix argument."
  6635. (interactive "P")
  6636. (unless (derived-mode-p 'org-agenda-mode)
  6637. (user-error "Not in an Org agenda buffer"))
  6638. (let* ((marker (or (org-get-at-bol 'org-marker)
  6639. (org-agenda-error)))
  6640. (buffer (marker-buffer marker))
  6641. (pos (marker-position marker)))
  6642. (with-current-buffer buffer
  6643. (goto-char pos)
  6644. (org-agenda-set-restriction-lock arg))))
  6645. ;;;###autoload
  6646. (defun org-agenda-set-restriction-lock (&optional type)
  6647. "Set restriction lock for agenda to current subtree or file.
  6648. When in a restricted subtree, remove it.
  6649. The restriction will span over the entire file if TYPE is `file',
  6650. or if type is '(4), or if the cursor is before the first headline
  6651. in the file. Otherwise, only apply the restriction to the current
  6652. subtree."
  6653. (interactive "P")
  6654. (if (and org-agenda-overriding-restriction
  6655. (member org-agenda-restriction-lock-overlay
  6656. (overlays-at (point)))
  6657. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6658. (point)))
  6659. (org-agenda-remove-restriction-lock 'noupdate)
  6660. (org-agenda-remove-restriction-lock 'noupdate)
  6661. (and (equal type '(4)) (setq type 'file))
  6662. (setq type (cond
  6663. (type type)
  6664. ((org-at-heading-p) 'subtree)
  6665. ((condition-case nil (org-back-to-heading t) (error nil))
  6666. 'subtree)
  6667. (t 'file)))
  6668. (if (eq type 'subtree)
  6669. (progn
  6670. (setq org-agenda-restrict (current-buffer))
  6671. (setq org-agenda-overriding-restriction 'subtree)
  6672. (put 'org-agenda-files 'org-restrict
  6673. (list (buffer-file-name (buffer-base-buffer))))
  6674. (org-back-to-heading t)
  6675. (move-overlay org-agenda-restriction-lock-overlay
  6676. (point)
  6677. (if org-agenda-restriction-lock-highlight-subtree
  6678. (save-excursion (org-end-of-subtree t t) (point))
  6679. (point-at-eol)))
  6680. (move-marker org-agenda-restrict-begin (point))
  6681. (move-marker org-agenda-restrict-end
  6682. (save-excursion (org-end-of-subtree t t)))
  6683. (message "Locking agenda restriction to subtree"))
  6684. (put 'org-agenda-files 'org-restrict
  6685. (list (buffer-file-name (buffer-base-buffer))))
  6686. (setq org-agenda-restrict nil)
  6687. (setq org-agenda-overriding-restriction 'file)
  6688. (move-marker org-agenda-restrict-begin nil)
  6689. (move-marker org-agenda-restrict-end nil)
  6690. (message "Locking agenda restriction to file"))
  6691. (setq current-prefix-arg nil))
  6692. (org-agenda-maybe-redo))
  6693. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6694. "Remove agenda restriction lock."
  6695. (interactive "P")
  6696. (if (not org-agenda-restrict)
  6697. (message "No agenda restriction to remove.")
  6698. (delete-overlay org-agenda-restriction-lock-overlay)
  6699. (delete-overlay org-speedbar-restriction-lock-overlay)
  6700. (setq org-agenda-overriding-restriction nil)
  6701. (setq org-agenda-restrict nil)
  6702. (put 'org-agenda-files 'org-restrict nil)
  6703. (move-marker org-agenda-restrict-begin nil)
  6704. (move-marker org-agenda-restrict-end nil)
  6705. (setq current-prefix-arg nil)
  6706. (message "Agenda restriction lock removed")
  6707. (or noupdate (org-agenda-maybe-redo))))
  6708. (defun org-agenda-maybe-redo ()
  6709. "If there is any window showing the agenda view, update it."
  6710. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6711. org-agenda-buffer-name)
  6712. t))
  6713. (w0 (selected-window)))
  6714. (when w
  6715. (select-window w)
  6716. (org-agenda-redo)
  6717. (select-window w0)
  6718. (if org-agenda-overriding-restriction
  6719. (message "Agenda view shifted to new %s restriction"
  6720. org-agenda-overriding-restriction)
  6721. (message "Agenda restriction lock removed")))))
  6722. ;;; Agenda commands
  6723. (defun org-agenda-check-type (error &rest types)
  6724. "Check if agenda buffer is of allowed type.
  6725. If ERROR is non-nil, throw an error, otherwise just return nil.
  6726. Allowed types are `agenda' `todo' `tags' `search'."
  6727. (cond ((not org-agenda-type)
  6728. (error "No Org agenda currently displayed"))
  6729. ((memq org-agenda-type types) t)
  6730. (error
  6731. (error "Not allowed in %s-type agenda buffers" org-agenda-type))
  6732. (t nil)))
  6733. (defun org-agenda-Quit ()
  6734. "Exit the agenda, killing the agenda buffer.
  6735. Like `org-agenda-quit', but kill the buffer even when
  6736. `org-agenda-sticky' is non-nil."
  6737. (interactive)
  6738. (org-agenda--quit))
  6739. (defun org-agenda-quit ()
  6740. "Exit the agenda.
  6741. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6742. instead of killing it.
  6743. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6744. the pre-agenda window configuration.
  6745. When column view is active, exit column view instead of the
  6746. agenda."
  6747. (interactive)
  6748. (org-agenda--quit org-agenda-sticky))
  6749. (defun org-agenda--quit (&optional bury)
  6750. (if org-agenda-columns-active
  6751. (org-columns-quit)
  6752. (let ((wconf org-agenda-pre-window-conf)
  6753. (buf (current-buffer))
  6754. (org-agenda-last-indirect-window
  6755. (and (eq org-indirect-buffer-display 'other-window)
  6756. org-agenda-last-indirect-buffer
  6757. (get-buffer-window org-agenda-last-indirect-buffer))))
  6758. (cond
  6759. ((eq org-agenda-window-setup 'other-frame)
  6760. (delete-frame))
  6761. ((and org-agenda-restore-windows-after-quit
  6762. wconf)
  6763. ;; Maybe restore the pre-agenda window configuration. Reset
  6764. ;; `org-agenda-pre-window-conf' before running
  6765. ;; `set-window-configuration', which loses the current buffer.
  6766. (setq org-agenda-pre-window-conf nil)
  6767. (set-window-configuration wconf))
  6768. (t
  6769. (when org-agenda-last-indirect-window
  6770. (delete-window org-agenda-last-indirect-window))
  6771. (and (not (eq org-agenda-window-setup 'current-window))
  6772. (not (one-window-p))
  6773. (delete-window))))
  6774. (if bury
  6775. ;; Set the agenda buffer as the current buffer instead of
  6776. ;; passing it as an argument to `bury-buffer' so that
  6777. ;; `bury-buffer' removes it from the window.
  6778. (with-current-buffer buf
  6779. (bury-buffer))
  6780. (kill-buffer buf)
  6781. (setq org-agenda-archives-mode nil
  6782. org-agenda-buffer nil)))))
  6783. (defun org-agenda-exit ()
  6784. "Exit the agenda, killing Org buffers loaded by the agenda.
  6785. Like `org-agenda-Quit', but kill any buffers that were created by
  6786. the agenda. Org buffers visited directly by the user will not be
  6787. touched. Also, exit the agenda even if it is in column view."
  6788. (interactive)
  6789. (when org-agenda-columns-active
  6790. (org-columns-quit))
  6791. (org-release-buffers org-agenda-new-buffers)
  6792. (setq org-agenda-new-buffers nil)
  6793. (org-agenda-Quit))
  6794. (defun org-agenda-kill-all-agenda-buffers ()
  6795. "Kill all buffers in `org-agenda-mode'.
  6796. This is used when toggling sticky agendas."
  6797. (interactive)
  6798. (let (blist)
  6799. (dolist (buf (buffer-list))
  6800. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6801. (push buf blist)))
  6802. (mapc 'kill-buffer blist)))
  6803. (defun org-agenda-execute (arg)
  6804. "Execute another agenda command, keeping same window.
  6805. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6806. in the agenda."
  6807. (interactive "P")
  6808. (let ((org-agenda-window-setup 'current-window))
  6809. (org-agenda arg)))
  6810. (defun org-agenda-redo (&optional all)
  6811. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6812. (interactive "P")
  6813. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6814. (cpa (unless (eq all t) current-prefix-arg))
  6815. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6816. (org-agenda-sticky nil)
  6817. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6818. org-agenda-buffer-name))
  6819. (org-agenda-keep-modes t)
  6820. (tag-filter org-agenda-tag-filter)
  6821. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6822. (top-hl-filter org-agenda-top-headline-filter)
  6823. (cat-filter org-agenda-category-filter)
  6824. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6825. (re-filter org-agenda-regexp-filter)
  6826. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6827. (effort-filter org-agenda-effort-filter)
  6828. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6829. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6830. (cols org-agenda-columns-active)
  6831. (line (org-current-line))
  6832. (window-line (- line (org-current-line (window-start))))
  6833. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6834. (redo-cmd (get-text-property p 'org-redo-cmd))
  6835. (last-args (get-text-property p 'org-last-args))
  6836. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6837. (org-agenda-overriding-cmd-arguments
  6838. (unless (eq all t)
  6839. (cond ((listp last-args)
  6840. (cons (or cpa (car last-args)) (cdr last-args)))
  6841. ((stringp last-args)
  6842. last-args))))
  6843. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6844. (put 'org-agenda-tag-filter :preset-filter nil)
  6845. (put 'org-agenda-category-filter :preset-filter nil)
  6846. (put 'org-agenda-regexp-filter :preset-filter nil)
  6847. (put 'org-agenda-effort-filter :preset-filter nil)
  6848. (and cols (org-columns-quit))
  6849. (message "Rebuilding agenda buffer...")
  6850. (if series-redo-cmd
  6851. (eval series-redo-cmd)
  6852. (org-let lprops redo-cmd))
  6853. (setq org-agenda-undo-list nil
  6854. org-agenda-pending-undo-list nil
  6855. org-agenda-tag-filter tag-filter
  6856. org-agenda-category-filter cat-filter
  6857. org-agenda-regexp-filter re-filter
  6858. org-agenda-effort-filter effort-filter
  6859. org-agenda-top-headline-filter top-hl-filter)
  6860. (message "Rebuilding agenda buffer...done")
  6861. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6862. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6863. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6864. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6865. (let ((tag (or tag-filter tag-preset))
  6866. (cat (or cat-filter cat-preset))
  6867. (effort (or effort-filter effort-preset))
  6868. (re (or re-filter re-preset)))
  6869. (when tag (org-agenda-filter-apply tag 'tag t))
  6870. (when cat (org-agenda-filter-apply cat 'category))
  6871. (when effort (org-agenda-filter-apply effort 'effort))
  6872. (when re (org-agenda-filter-apply re 'regexp)))
  6873. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6874. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6875. (org-goto-line line)
  6876. (recenter window-line)))
  6877. (defun org-agenda-redo-all (&optional exhaustive)
  6878. "Rebuild all agenda views in the current buffer.
  6879. With a prefix argument, do so in all agenda buffers."
  6880. (interactive "P")
  6881. (if exhaustive
  6882. (dolist (buffer (buffer-list))
  6883. (with-current-buffer buffer
  6884. (when (derived-mode-p 'org-agenda-mode)
  6885. (org-agenda-redo t))))
  6886. (org-agenda-redo t)))
  6887. (defvar org-global-tags-completion-table nil)
  6888. (defvar org-agenda-filter-form nil)
  6889. (defvar org-agenda-filtered-by-category nil)
  6890. (defsubst org-agenda-get-category ()
  6891. "Return the category of the agenda line."
  6892. (org-get-at-bol 'org-category))
  6893. (defun org-agenda-filter-by-category (strip)
  6894. "Filter lines in the agenda buffer that have a specific category.
  6895. The category is that of the current line.
  6896. Without prefix argument, keep only the lines of that category.
  6897. With a prefix argument, exclude the lines of that category.
  6898. "
  6899. (interactive "P")
  6900. (if (and org-agenda-filtered-by-category
  6901. org-agenda-category-filter)
  6902. (org-agenda-filter-show-all-cat)
  6903. (let ((cat (org-no-properties (org-agenda-get-category))))
  6904. (cond
  6905. ((and cat strip)
  6906. (org-agenda-filter-apply
  6907. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6908. (cat
  6909. (org-agenda-filter-apply
  6910. (setq org-agenda-category-filter
  6911. (list (concat "+" cat))) 'category))
  6912. (t (error "No category at point"))))))
  6913. (defun org-find-top-headline (&optional pos)
  6914. "Find the topmost parent headline and return it.
  6915. POS when non-nil is the marker or buffer position to start the
  6916. search from."
  6917. (save-excursion
  6918. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  6919. (when pos (goto-char pos))
  6920. ;; Skip up to the topmost parent.
  6921. (while (org-up-heading-safe))
  6922. (ignore-errors (nth 4 (org-heading-components))))))
  6923. (defvar org-agenda-filtered-by-top-headline nil)
  6924. (defun org-agenda-filter-by-top-headline (strip)
  6925. "Keep only those lines that are descendants from the same top headline.
  6926. The top headline is that of the current line."
  6927. (interactive "P")
  6928. (if org-agenda-filtered-by-top-headline
  6929. (progn
  6930. (setq org-agenda-filtered-by-top-headline nil
  6931. org-agenda-top-headline-filter nil)
  6932. (org-agenda-filter-show-all-top-filter))
  6933. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6934. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6935. (error "No top-level headline at point")))))
  6936. (defvar org-agenda-regexp-filter nil)
  6937. (defun org-agenda-filter-by-regexp (strip)
  6938. "Filter agenda entries by regular expressions.
  6939. With one prefix argument, filter out entries matching the regexp.
  6940. If there is already a regexp filter, remove it unless called with
  6941. two prefix arguments."
  6942. (interactive "P")
  6943. (cond
  6944. ((and org-agenda-regexp-filter (not (equal strip '(16))))
  6945. (org-agenda-filter-show-all-re)
  6946. (message "Regexp filter removed"))
  6947. (t (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6948. (read-from-minibuffer
  6949. (if (equal strip '(4))
  6950. "Filter out entries matching regexp: "
  6951. "Narrow to entries matching regexp: ")))))
  6952. (push flt org-agenda-regexp-filter)
  6953. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp)))))
  6954. (defvar org-agenda-effort-filter nil)
  6955. (defun org-agenda-filter-by-effort (strip)
  6956. "Filter agenda entries by effort.
  6957. With no prefix argument, keep entries matching the effort condition.
  6958. With one prefix argument, filter out entries matching the condition.
  6959. With two prefix arguments, remove the effort filters."
  6960. (interactive "P")
  6961. (cond
  6962. ((member strip '(nil 4))
  6963. (let* ((efforts (split-string
  6964. (or (cdr (assoc (concat org-effort-property "_ALL")
  6965. org-global-properties))
  6966. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  6967. ;; XXX: the following handles only up to 10 different
  6968. ;; effort values.
  6969. (allowed-keys (if (null efforts) nil
  6970. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  6971. (number-sequence 1 (length efforts)))))
  6972. (op nil))
  6973. (while (not (memq op '(?< ?> ?=)))
  6974. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6975. ;; Select appropriate duration. Ignore non-digit characters.
  6976. (let ((prompt
  6977. (apply #'format
  6978. (concat "Effort %c "
  6979. (mapconcat (lambda (s) (concat "[%d]" s))
  6980. efforts
  6981. " "))
  6982. op allowed-keys))
  6983. (eff -1))
  6984. (while (not (memq eff allowed-keys))
  6985. (message prompt)
  6986. (setq eff (- (read-char-exclusive) 48)))
  6987. (setq org-agenda-effort-filter
  6988. (list (concat (if strip "-" "+")
  6989. (char-to-string op)
  6990. ;; Numbering is 1 2 3 ... 9 0, but we want
  6991. ;; 0 1 2 ... 8 9.
  6992. (nth (mod (1- eff) 10) efforts)))))
  6993. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6994. (t (org-agenda-filter-show-all-effort)
  6995. (message "Effort filter removed"))))
  6996. (defun org-agenda-filter-remove-all ()
  6997. "Remove all filters from the current agenda buffer."
  6998. (interactive)
  6999. (when org-agenda-tag-filter
  7000. (org-agenda-filter-show-all-tag))
  7001. (when org-agenda-category-filter
  7002. (org-agenda-filter-show-all-cat))
  7003. (when org-agenda-regexp-filter
  7004. (org-agenda-filter-show-all-re))
  7005. (when org-agenda-top-headline-filter
  7006. (org-agenda-filter-show-all-top-filter))
  7007. (when org-agenda-effort-filter
  7008. (org-agenda-filter-show-all-effort))
  7009. (org-agenda-finalize))
  7010. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  7011. "Keep only those lines in the agenda buffer that have a specific tag.
  7012. The tag is selected with its fast selection letter, as configured.
  7013. With a `\\[universal-argument]' prefix, exclude the agenda search.
  7014. With a `\\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7015. i.e. don't
  7016. filter on all its group members.
  7017. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7018. should be used to exclude the search - the interactive user can
  7019. also press `-' or `+' to switch between filtering and excluding."
  7020. (interactive "P")
  7021. (let* ((alist org-tag-alist-for-agenda)
  7022. (tag-chars (mapconcat
  7023. (lambda (x) (if (and (not (symbolp (car x)))
  7024. (cdr x))
  7025. (char-to-string (cdr x))
  7026. ""))
  7027. org-tag-alist-for-agenda ""))
  7028. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  7029. (string-to-list tag-chars)))
  7030. (exclude (or exclude (equal arg '(4))))
  7031. (expand (not (equal arg '(16))))
  7032. (inhibit-read-only t)
  7033. (current org-agenda-tag-filter)
  7034. a n tag)
  7035. (unless char
  7036. (while (not (memq char valid-char-list))
  7037. (org-unlogged-message
  7038. "%s by tag [%s ]:tag-char, [TAB]:tag, %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  7039. (if exclude "Exclude" "Filter")
  7040. tag-chars
  7041. (if org-agenda-auto-exclude-function "[RET], " "")
  7042. (if expand "" ", no grouptag expand"))
  7043. (setq char (read-char-exclusive))
  7044. ;; Excluding or filtering down
  7045. (cond ((eq char ?-) (setq exclude t))
  7046. ((eq char ?+) (setq exclude nil)))))
  7047. (when (eq char ?\t)
  7048. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  7049. (setq-local org-global-tags-completion-table
  7050. (org-global-tags-completion-table)))
  7051. (let ((completion-ignore-case t))
  7052. (setq tag (completing-read
  7053. "Tag: " org-global-tags-completion-table nil t))))
  7054. (cond
  7055. ((eq char ?\r)
  7056. (org-agenda-filter-show-all-tag)
  7057. (when org-agenda-auto-exclude-function
  7058. (setq org-agenda-tag-filter nil)
  7059. (dolist (tag (org-agenda-get-represented-tags))
  7060. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7061. (when modifier
  7062. (push modifier org-agenda-tag-filter))))
  7063. (unless (null org-agenda-tag-filter)
  7064. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7065. ((eq char ?/)
  7066. (org-agenda-filter-show-all-tag)
  7067. (when (get 'org-agenda-tag-filter :preset-filter)
  7068. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7069. ((eq char ?.)
  7070. (setq org-agenda-tag-filter
  7071. (mapcar (lambda(tag) (concat "+" tag))
  7072. (org-get-at-bol 'tags)))
  7073. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7074. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7075. ((or (eq char ?\s)
  7076. (setq a (rassoc char alist))
  7077. (and tag (setq a (cons tag nil))))
  7078. (org-agenda-filter-show-all-tag)
  7079. (setq tag (car a))
  7080. (setq org-agenda-tag-filter
  7081. (cons (concat (if exclude "-" "+") tag)
  7082. current))
  7083. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7084. (t (error "Invalid tag selection character %c" char)))))
  7085. (defun org-agenda-get-represented-tags ()
  7086. "Get a list of all tags currently represented in the agenda."
  7087. (let (p tags)
  7088. (save-excursion
  7089. (goto-char (point-min))
  7090. (while (setq p (next-single-property-change (point) 'tags))
  7091. (goto-char p)
  7092. (mapc (lambda (x) (add-to-list 'tags x))
  7093. (get-text-property (point) 'tags))))
  7094. tags))
  7095. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7096. "Create the form that tests a line for agenda filter. Optional
  7097. argument EXPAND can be used for the TYPE tag and will expand the
  7098. tags in the FILTER if any of the tags in FILTER are grouptags."
  7099. (let (f f1)
  7100. (cond
  7101. ;; Tag filter
  7102. ((eq type 'tag)
  7103. (setq filter
  7104. (delete-dups
  7105. (append (get 'org-agenda-tag-filter :preset-filter)
  7106. filter)))
  7107. (dolist (x filter)
  7108. (let ((op (string-to-char x)))
  7109. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7110. (setq x (list x)))
  7111. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7112. (push f1 f))))
  7113. ;; Category filter
  7114. ((eq type 'category)
  7115. (setq filter
  7116. (delete-dups
  7117. (append (get 'org-agenda-category-filter :preset-filter)
  7118. filter)))
  7119. (dolist (x filter)
  7120. (if (equal "-" (substring x 0 1))
  7121. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7122. (setq f1 (list 'equal (substring x 1) 'cat)))
  7123. (push f1 f)))
  7124. ;; Regexp filter
  7125. ((eq type 'regexp)
  7126. (setq filter
  7127. (delete-dups
  7128. (append (get 'org-agenda-regexp-filter :preset-filter)
  7129. filter)))
  7130. (dolist (x filter)
  7131. (if (equal "-" (substring x 0 1))
  7132. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7133. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7134. (push f1 f)))
  7135. ;; Effort filter
  7136. ((eq type 'effort)
  7137. (setq filter
  7138. (delete-dups
  7139. (append (get 'org-agenda-effort-filter :preset-filter)
  7140. filter)))
  7141. (dolist (x filter)
  7142. (push (org-agenda-filter-effort-form x) f))))
  7143. (cons 'and (nreverse f))))
  7144. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7145. "Return a form associated to tag-expression TAGS.
  7146. Build a form testing a line for agenda filter for
  7147. tag-expressions. OP is an operator of type CHAR that allows the
  7148. function to set the right switches in the returned form."
  7149. (let (form)
  7150. ;; Any of the expressions can match if OP is +, all must match if
  7151. ;; the operator is -.
  7152. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7153. (let* ((tag (substring x 1))
  7154. (f (cond
  7155. ((string= "" tag) '(not tags))
  7156. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7157. ;; TAG is a regexp.
  7158. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7159. (t (list 'member (downcase tag) 'tags)))))
  7160. (push (if (eq op ?-) (list 'not f) f) form)))))
  7161. (defun org-agenda-filter-effort-form (e)
  7162. "Return the form to compare the effort of the current line with what E says.
  7163. E looks like \"+<2:25\"."
  7164. (let (op)
  7165. (setq e (substring e 1))
  7166. (setq op (string-to-char e) e (substring e 1))
  7167. (setq op (cond ((equal op ?<) '<=)
  7168. ((equal op ?>) '>=)
  7169. ((equal op ??) op)
  7170. (t '=)))
  7171. (list 'org-agenda-compare-effort (list 'quote op)
  7172. (org-duration-to-minutes e))))
  7173. (defun org-agenda-compare-effort (op value)
  7174. "Compare the effort of the current line with VALUE, using OP.
  7175. If the line does not have an effort defined, return nil."
  7176. ;; `effort-minutes' property cannot be extracted directly from
  7177. ;; current line but is stored as a property in `txt'.
  7178. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7179. (funcall op
  7180. (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
  7181. value)))
  7182. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7183. "Expand group tags in FILTER for the agenda.
  7184. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7185. (if org-group-tags
  7186. (let ((case-fold-search t) rtn)
  7187. (mapc
  7188. (lambda (f)
  7189. (let (f0 dir)
  7190. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7191. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7192. (setq dir (if no-operator "" "+") f0 f))
  7193. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7194. (org-tags-expand f0 t t))
  7195. rtn))))
  7196. filter)
  7197. (reverse rtn))
  7198. filter))
  7199. (defun org-agenda-filter-apply (filter type &optional expand)
  7200. "Set FILTER as the new agenda filter and apply it. Optional
  7201. argument EXPAND can be used for the TYPE tag and will expand the
  7202. tags in the FILTER if any of the tags in FILTER are grouptags."
  7203. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7204. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7205. (let (tags cat txt)
  7206. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7207. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7208. ;; category is used as the filter:
  7209. (setq org-agenda-filtered-by-category
  7210. (and (eq type 'category)
  7211. (not (equal (substring (car filter) 0 1) "-"))))
  7212. (org-agenda-set-mode-name)
  7213. (save-excursion
  7214. (goto-char (point-min))
  7215. (while (not (eobp))
  7216. (if (org-get-at-bol 'org-marker)
  7217. (progn
  7218. (setq tags (org-get-at-bol 'tags)
  7219. cat (org-agenda-get-category)
  7220. txt (org-get-at-bol 'txt))
  7221. (unless (eval org-agenda-filter-form)
  7222. (org-agenda-filter-hide-line type))
  7223. (beginning-of-line 2))
  7224. (beginning-of-line 2))))
  7225. (when (get-char-property (point) 'invisible)
  7226. (ignore-errors (org-agenda-previous-line)))))
  7227. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7228. "Filter by top headline HL."
  7229. (org-agenda-set-mode-name)
  7230. (save-excursion
  7231. (goto-char (point-min))
  7232. (while (not (eobp))
  7233. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7234. (tophl (and pos (org-find-top-headline pos))))
  7235. (when (and tophl (funcall (if negative 'identity 'not)
  7236. (string= hl tophl)))
  7237. (org-agenda-filter-hide-line 'top-headline)))
  7238. (beginning-of-line 2)))
  7239. (when (get-char-property (point) 'invisible)
  7240. (org-agenda-previous-line))
  7241. (setq org-agenda-top-headline-filter hl
  7242. org-agenda-filtered-by-top-headline t))
  7243. (defun org-agenda-filter-hide-line (type)
  7244. "Hide lines with TYPE in the agenda buffer."
  7245. (let* ((b (max (point-min) (1- (point-at-bol))))
  7246. (e (point-at-eol)))
  7247. (let ((inhibit-read-only t))
  7248. (add-text-properties
  7249. b e `(invisible org-filtered org-filter-type ,type)))))
  7250. (defun org-agenda-remove-filter (type)
  7251. (interactive)
  7252. "Remove filter of type TYPE from the agenda buffer."
  7253. (save-excursion
  7254. (goto-char (point-min))
  7255. (let ((inhibit-read-only t) pos)
  7256. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7257. (goto-char pos)
  7258. (remove-text-properties
  7259. (point) (next-single-property-change (point) 'org-filter-type)
  7260. `(invisible org-filtered org-filter-type ,type))))
  7261. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7262. (setq org-agenda-filter-form nil)
  7263. (org-agenda-set-mode-name)
  7264. (org-agenda-finalize)))
  7265. (defun org-agenda-filter-show-all-tag nil
  7266. (org-agenda-remove-filter 'tag))
  7267. (defun org-agenda-filter-show-all-re nil
  7268. (org-agenda-remove-filter 'regexp))
  7269. (defun org-agenda-filter-show-all-effort nil
  7270. (org-agenda-remove-filter 'effort))
  7271. (defun org-agenda-filter-show-all-cat nil
  7272. (org-agenda-remove-filter 'category))
  7273. (defun org-agenda-filter-show-all-top-filter nil
  7274. (org-agenda-remove-filter 'top-headline))
  7275. (defun org-agenda-manipulate-query-add ()
  7276. "Manipulate the query by adding a search term with positive selection.
  7277. Positive selection means the term must be matched for selection of an entry."
  7278. (interactive)
  7279. (org-agenda-manipulate-query ?\[))
  7280. (defun org-agenda-manipulate-query-subtract ()
  7281. "Manipulate the query by adding a search term with negative selection.
  7282. Negative selection means term must not be matched for selection of an entry."
  7283. (interactive)
  7284. (org-agenda-manipulate-query ?\]))
  7285. (defun org-agenda-manipulate-query-add-re ()
  7286. "Manipulate the query by adding a search regexp with positive selection.
  7287. Positive selection means the regexp must match for selection of an entry."
  7288. (interactive)
  7289. (org-agenda-manipulate-query ?\{))
  7290. (defun org-agenda-manipulate-query-subtract-re ()
  7291. "Manipulate the query by adding a search regexp with negative selection.
  7292. Negative selection means regexp must not match for selection of an entry."
  7293. (interactive)
  7294. (org-agenda-manipulate-query ?\}))
  7295. (defun org-agenda-manipulate-query (char)
  7296. (cond
  7297. ((eq org-agenda-type 'agenda)
  7298. (let ((org-agenda-include-inactive-timestamps t))
  7299. (org-agenda-redo))
  7300. (message "Display now includes inactive timestamps as well"))
  7301. ((eq org-agenda-type 'search)
  7302. (org-add-to-string
  7303. 'org-agenda-query-string
  7304. (if org-agenda-last-search-view-search-was-boolean
  7305. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7306. (?\{ . " +{}") (?\} . " -{}"))))
  7307. " "))
  7308. (setq org-agenda-redo-command
  7309. (list 'org-search-view
  7310. (car (get-text-property (min (1- (point-max)) (point))
  7311. 'org-last-args))
  7312. org-agenda-query-string
  7313. (+ (length org-agenda-query-string)
  7314. (if (member char '(?\{ ?\})) 0 1))))
  7315. (set-register org-agenda-query-register org-agenda-query-string)
  7316. (let ((org-agenda-overriding-arguments
  7317. (cdr org-agenda-redo-command)))
  7318. (org-agenda-redo)))
  7319. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7320. org-agenda-type))))
  7321. (defun org-add-to-string (var string)
  7322. (set var (concat (symbol-value var) string)))
  7323. (defun org-agenda-goto-date (span)
  7324. "Jump to DATE in agenda."
  7325. (interactive "P")
  7326. (let* ((org-read-date-prefer-future
  7327. (eval org-agenda-jump-prefer-future))
  7328. (date (org-read-date))
  7329. (day (time-to-days (org-time-string-to-time date)))
  7330. (org-agenda-sticky-orig org-agenda-sticky)
  7331. (org-agenda-buffer-tmp-name (buffer-name))
  7332. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7333. (0-arg (or current-prefix-arg (car args)))
  7334. (2-arg (nth 2 args))
  7335. (with-hour-p (nth 4 org-agenda-redo-command))
  7336. (newcmd (list 'org-agenda-list 0-arg date
  7337. (org-agenda-span-to-ndays
  7338. 2-arg (org-time-string-to-absolute date))
  7339. with-hour-p))
  7340. (newargs (cdr newcmd))
  7341. (inhibit-read-only t)
  7342. org-agenda-sticky)
  7343. (if (not (org-agenda-check-type t 'agenda))
  7344. (error "Not available in non-agenda views")
  7345. (add-text-properties (point-min) (point-max)
  7346. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7347. (org-agenda-redo)
  7348. (goto-char (point-min))
  7349. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7350. (save-excursion (move-beginning-of-line 2) (eobp))))
  7351. (move-beginning-of-line 2))
  7352. (setq org-agenda-sticky org-agenda-sticky-orig
  7353. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7354. (defun org-agenda-goto-today ()
  7355. "Go to today."
  7356. (interactive)
  7357. (org-agenda-check-type t 'agenda)
  7358. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7359. (curspan (nth 2 args))
  7360. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7361. (cond
  7362. (tdpos (goto-char tdpos))
  7363. ((eq org-agenda-type 'agenda)
  7364. (let* ((sd (org-agenda-compute-starting-span
  7365. (org-today) (or curspan org-agenda-span)))
  7366. (org-agenda-overriding-arguments args))
  7367. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7368. (org-agenda-redo)
  7369. (org-agenda-find-same-or-today-or-agenda)))
  7370. (t (error "Cannot find today")))))
  7371. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7372. (goto-char
  7373. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7374. (text-property-any (point-min) (point-max) 'org-today t)
  7375. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7376. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7377. (org-agenda-backward-block))
  7378. (point-min))))
  7379. (defun org-agenda-backward-block ()
  7380. "Move backward by one agenda block."
  7381. (interactive)
  7382. (org-agenda-forward-block 'backward))
  7383. (defun org-agenda-forward-block (&optional backward)
  7384. "Move forward by one agenda block.
  7385. When optional argument BACKWARD is set, go backward"
  7386. (interactive)
  7387. (cond ((not (derived-mode-p 'org-agenda-mode))
  7388. (user-error
  7389. "Cannot execute this command outside of org-agenda-mode buffers"))
  7390. ((looking-at (if backward "\\`" "\\'"))
  7391. (message "Already at the %s block" (if backward "first" "last")))
  7392. (t (let ((pos (prog1 (point)
  7393. (ignore-errors (if backward (backward-char 1)
  7394. (move-end-of-line 1)))))
  7395. (f (if backward
  7396. 'previous-single-property-change
  7397. 'next-single-property-change))
  7398. moved dest)
  7399. (while (and (setq dest (funcall
  7400. f (point) 'org-agenda-structural-header))
  7401. (not (get-text-property
  7402. (point) 'org-agenda-structural-header)))
  7403. (setq moved t)
  7404. (goto-char dest))
  7405. (if moved (move-beginning-of-line 1)
  7406. (goto-char (if backward (point-min) (point-max)))
  7407. (move-beginning-of-line 1)
  7408. (message "No %s block" (if backward "previous" "further")))))))
  7409. (defun org-agenda-later (arg)
  7410. "Go forward in time by the current span.
  7411. With prefix ARG, go forward that many times the current span."
  7412. (interactive "p")
  7413. (org-agenda-check-type t 'agenda)
  7414. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7415. (span (or (nth 2 args) org-agenda-current-span))
  7416. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7417. (greg (calendar-gregorian-from-absolute sd))
  7418. (cnt (org-get-at-bol 'org-day-cnt))
  7419. greg2)
  7420. (cond
  7421. ((numberp span)
  7422. (setq sd (+ (* span arg) sd)))
  7423. ((eq span 'day)
  7424. (setq sd (+ arg sd)))
  7425. ((eq span 'week)
  7426. (setq sd (+ (* 7 arg) sd)))
  7427. ((eq span 'fortnight)
  7428. (setq sd (+ (* 14 arg) sd)))
  7429. ((eq span 'month)
  7430. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7431. sd (calendar-absolute-from-gregorian greg2))
  7432. (setcar greg2 (1+ (car greg2))))
  7433. ((eq span 'year)
  7434. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7435. sd (calendar-absolute-from-gregorian greg2))
  7436. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7437. (t
  7438. (setq sd (+ (* span arg) sd))))
  7439. (let ((org-agenda-overriding-cmd
  7440. ;; `cmd' may have been set by `org-agenda-run-series' which
  7441. ;; uses `org-agenda-overriding-cmd' to decide whether
  7442. ;; overriding is allowed for `cmd'
  7443. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7444. (org-agenda-overriding-arguments
  7445. (list (car args) sd span)))
  7446. (org-agenda-redo)
  7447. (org-agenda-find-same-or-today-or-agenda cnt))))
  7448. (defun org-agenda-earlier (arg)
  7449. "Go backward in time by the current span.
  7450. With prefix ARG, go backward that many times the current span."
  7451. (interactive "p")
  7452. (org-agenda-later (- arg)))
  7453. (defun org-agenda-view-mode-dispatch ()
  7454. "Call one of the view mode commands."
  7455. (interactive)
  7456. (org-unlogged-message
  7457. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7458. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7459. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7460. (pcase (read-char-exclusive)
  7461. (?\ (call-interactively 'org-agenda-reset-view))
  7462. (?d (call-interactively 'org-agenda-day-view))
  7463. (?w (call-interactively 'org-agenda-week-view))
  7464. (?t (call-interactively 'org-agenda-fortnight-view))
  7465. (?m (call-interactively 'org-agenda-month-view))
  7466. (?y (call-interactively 'org-agenda-year-view))
  7467. (?l (call-interactively 'org-agenda-log-mode))
  7468. (?L (org-agenda-log-mode '(4)))
  7469. (?c (org-agenda-log-mode 'clockcheck))
  7470. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7471. (?a (call-interactively 'org-agenda-archives-mode))
  7472. (?A (org-agenda-archives-mode 'files))
  7473. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7474. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7475. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7476. (?D (call-interactively 'org-agenda-toggle-diary))
  7477. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7478. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7479. (org-agenda-check-type t 'agenda)
  7480. (org-agenda-redo))
  7481. (message "Display now includes inactive timestamps as well"))
  7482. (?q (message "Abort"))
  7483. (key (user-error "Invalid key: %s" key))))
  7484. (defun org-agenda-reset-view ()
  7485. "Switch to default view for agenda."
  7486. (interactive)
  7487. (org-agenda-change-time-span org-agenda-span))
  7488. (defun org-agenda-day-view (&optional day-of-month)
  7489. "Switch to daily view for agenda.
  7490. With argument DAY-OF-MONTH, switch to that day of the month."
  7491. (interactive "P")
  7492. (org-agenda-change-time-span 'day day-of-month))
  7493. (defun org-agenda-week-view (&optional iso-week)
  7494. "Switch to weekly view for agenda.
  7495. With argument ISO-WEEK, switch to the corresponding ISO week.
  7496. If ISO-WEEK has more then 2 digits, only the last two encode
  7497. the week. Any digits before this encode a year. So 200712
  7498. means week 12 of year 2007. Years ranging from 70 years ago
  7499. to 30 years in the future can also be written as 2-digit years."
  7500. (interactive "P")
  7501. (org-agenda-change-time-span 'week iso-week))
  7502. (defun org-agenda-fortnight-view (&optional iso-week)
  7503. "Switch to fortnightly view for agenda.
  7504. With argument ISO-WEEK, switch to the corresponding ISO week.
  7505. If ISO-WEEK has more then 2 digits, only the last two encode
  7506. the week. Any digits before this encode a year. So 200712
  7507. means week 12 of year 2007. Years ranging from 70 years ago
  7508. to 30 years in the future can also be written as 2-digit years."
  7509. (interactive "P")
  7510. (org-agenda-change-time-span 'fortnight iso-week))
  7511. (defun org-agenda-month-view (&optional month)
  7512. "Switch to monthly view for agenda.
  7513. With argument MONTH, switch to that month. If MONTH has more
  7514. then 2 digits, only the last two encode the month. Any digits
  7515. before this encode a year. So 200712 means December year 2007.
  7516. Years ranging from 70 years ago to 30 years in the future can
  7517. also be written as 2-digit years."
  7518. (interactive "P")
  7519. (org-agenda-change-time-span 'month month))
  7520. (defun org-agenda-year-view (&optional year)
  7521. "Switch to yearly view for agenda.
  7522. With argument YEAR, switch to that year. Years ranging from 70
  7523. years ago to 30 years in the future can also be written as
  7524. 2-digit years."
  7525. (interactive "P")
  7526. (when year
  7527. (setq year (org-small-year-to-year year)))
  7528. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7529. (org-agenda-change-time-span 'year year)
  7530. (error "Abort")))
  7531. (defun org-agenda-change-time-span (span &optional n)
  7532. "Change the agenda view to SPAN.
  7533. SPAN may be `day', `week', `fortnight', `month', `year'."
  7534. (org-agenda-check-type t 'agenda)
  7535. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7536. (curspan (nth 2 args)))
  7537. (when (and (not n) (equal curspan span))
  7538. (error "Viewing span is already \"%s\"" span))
  7539. (let* ((sd (or (org-get-at-bol 'day)
  7540. (nth 1 args)
  7541. org-starting-day))
  7542. (sd (org-agenda-compute-starting-span sd span n))
  7543. (org-agenda-overriding-cmd
  7544. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7545. (org-agenda-overriding-arguments
  7546. (list (car args) sd span)))
  7547. (org-agenda-redo)
  7548. (org-agenda-find-same-or-today-or-agenda))
  7549. (org-agenda-set-mode-name)
  7550. (message "Switched to %s view" span)))
  7551. (defun org-agenda-compute-starting-span (sd span &optional n)
  7552. "Compute starting date for agenda.
  7553. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7554. is a cons cell with the starting date and the number of days,
  7555. so that the date SD will be in that range."
  7556. (let* ((greg (calendar-gregorian-from-absolute sd))
  7557. (dg (nth 1 greg))
  7558. (mg (car greg))
  7559. (yg (nth 2 greg)))
  7560. (cond
  7561. ((eq span 'day)
  7562. (when n
  7563. (setq sd (+ (calendar-absolute-from-gregorian
  7564. (list mg 1 yg))
  7565. n -1))))
  7566. ((or (eq span 'week) (eq span 'fortnight))
  7567. (let* ((nt (calendar-day-of-week
  7568. (calendar-gregorian-from-absolute sd)))
  7569. (d (if org-agenda-start-on-weekday
  7570. (- nt org-agenda-start-on-weekday)
  7571. 0))
  7572. y1)
  7573. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7574. (when n
  7575. (require 'cal-iso)
  7576. (when (> n 99)
  7577. (setq y1 (org-small-year-to-year (/ n 100))
  7578. n (mod n 100)))
  7579. (setq sd
  7580. (calendar-iso-to-absolute
  7581. (list n 1
  7582. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7583. ((eq span 'month)
  7584. (let (y1)
  7585. (when (and n (> n 99))
  7586. (setq y1 (org-small-year-to-year (/ n 100))
  7587. n (mod n 100)))
  7588. (setq sd (calendar-absolute-from-gregorian
  7589. (list (or n mg) 1 (or y1 yg))))))
  7590. ((eq span 'year)
  7591. (setq sd (calendar-absolute-from-gregorian
  7592. (list 1 1 (or n yg))))))
  7593. sd))
  7594. (defun org-agenda-next-date-line (&optional arg)
  7595. "Jump to the next line indicating a date in agenda buffer."
  7596. (interactive "p")
  7597. (org-agenda-check-type t 'agenda)
  7598. (beginning-of-line 1)
  7599. ;; This does not work if user makes date format that starts with a blank
  7600. (when (looking-at-p "^\\S-") (forward-char 1))
  7601. (unless (re-search-forward "^\\S-" nil t arg)
  7602. (backward-char 1)
  7603. (error "No next date after this line in this buffer"))
  7604. (goto-char (match-beginning 0)))
  7605. (defun org-agenda-previous-date-line (&optional arg)
  7606. "Jump to the previous line indicating a date in agenda buffer."
  7607. (interactive "p")
  7608. (org-agenda-check-type t 'agenda)
  7609. (beginning-of-line 1)
  7610. (unless (re-search-backward "^\\S-" nil t arg)
  7611. (error "No previous date before this line in this buffer")))
  7612. ;; Initialize the highlight
  7613. (defvar org-hl (make-overlay 1 1))
  7614. (overlay-put org-hl 'face 'highlight)
  7615. (defun org-highlight (begin end &optional buffer)
  7616. "Highlight a region with overlay."
  7617. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7618. (defun org-unhighlight ()
  7619. "Detach overlay INDEX."
  7620. (delete-overlay org-hl))
  7621. (defun org-unhighlight-once ()
  7622. "Remove the highlight from its position, and this function from the hook."
  7623. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7624. (org-unhighlight))
  7625. (defvar org-agenda-pre-follow-window-conf nil)
  7626. (defun org-agenda-follow-mode ()
  7627. "Toggle follow mode in an agenda buffer."
  7628. (interactive)
  7629. (unless org-agenda-follow-mode
  7630. (setq org-agenda-pre-follow-window-conf
  7631. (current-window-configuration)))
  7632. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7633. (unless org-agenda-follow-mode
  7634. (set-window-configuration org-agenda-pre-follow-window-conf))
  7635. (org-agenda-set-mode-name)
  7636. (org-agenda-do-context-action)
  7637. (message "Follow mode is %s"
  7638. (if org-agenda-follow-mode "on" "off")))
  7639. (defun org-agenda-entry-text-mode (&optional arg)
  7640. "Toggle entry text mode in an agenda buffer."
  7641. (interactive "P")
  7642. (if (or org-agenda-tag-filter
  7643. org-agenda-category-filter
  7644. org-agenda-regexp-filter
  7645. org-agenda-top-headline-filter)
  7646. (user-error "Can't show entry text in filtered views")
  7647. (setq org-agenda-entry-text-mode (or (integerp arg)
  7648. (not org-agenda-entry-text-mode)))
  7649. (org-agenda-entry-text-hide)
  7650. (and org-agenda-entry-text-mode
  7651. (let ((org-agenda-entry-text-maxlines
  7652. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7653. (org-agenda-entry-text-show)))
  7654. (org-agenda-set-mode-name)
  7655. (message "Entry text mode is %s%s"
  7656. (if org-agenda-entry-text-mode "on" "off")
  7657. (if (not org-agenda-entry-text-mode) ""
  7658. (format " (maximum number of lines is %d)"
  7659. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7660. (defun org-agenda-clockreport-mode ()
  7661. "Toggle clocktable mode in an agenda buffer."
  7662. (interactive)
  7663. (org-agenda-check-type t 'agenda)
  7664. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7665. (org-agenda-set-mode-name)
  7666. (org-agenda-redo)
  7667. (message "Clocktable mode is %s"
  7668. (if org-agenda-clockreport-mode "on" "off")))
  7669. (defun org-agenda-log-mode (&optional special)
  7670. "Toggle log mode in an agenda buffer.
  7671. With argument SPECIAL, show all possible log items, not only the ones
  7672. configured in `org-agenda-log-mode-items'.
  7673. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7674. log items, nothing else."
  7675. (interactive "P")
  7676. (org-agenda-check-type t 'agenda)
  7677. (setq org-agenda-show-log
  7678. (cond
  7679. ((equal special '(16)) 'only)
  7680. ((eq special 'clockcheck)
  7681. (if (eq org-agenda-show-log 'clockcheck)
  7682. nil 'clockcheck))
  7683. (special '(closed clock state))
  7684. (t (not org-agenda-show-log))))
  7685. (org-agenda-set-mode-name)
  7686. (org-agenda-redo)
  7687. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7688. (defun org-agenda-archives-mode (&optional with-files)
  7689. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7690. When called with a prefix argument, include all archive files as well."
  7691. (interactive "P")
  7692. (setq org-agenda-archives-mode
  7693. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7694. (org-agenda-set-mode-name)
  7695. (org-agenda-redo)
  7696. (message
  7697. "%s"
  7698. (cond
  7699. ((eq org-agenda-archives-mode nil)
  7700. "No archives are included")
  7701. ((eq org-agenda-archives-mode 'trees)
  7702. (format "Trees with :%s: tag are included" org-archive-tag))
  7703. ((eq org-agenda-archives-mode t)
  7704. (format "Trees with :%s: tag and all active archive files are included"
  7705. org-archive-tag)))))
  7706. (defun org-agenda-toggle-diary ()
  7707. "Toggle diary inclusion in an agenda buffer."
  7708. (interactive)
  7709. (org-agenda-check-type t 'agenda)
  7710. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7711. (org-agenda-redo)
  7712. (org-agenda-set-mode-name)
  7713. (message "Diary inclusion turned %s"
  7714. (if org-agenda-include-diary "on" "off")))
  7715. (defun org-agenda-toggle-deadlines ()
  7716. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7717. (interactive)
  7718. (org-agenda-check-type t 'agenda)
  7719. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7720. (org-agenda-redo)
  7721. (org-agenda-set-mode-name)
  7722. (message "Deadlines inclusion turned %s"
  7723. (if org-agenda-include-deadlines "on" "off")))
  7724. (defun org-agenda-toggle-time-grid ()
  7725. "Toggle time grid in an agenda buffer."
  7726. (interactive)
  7727. (org-agenda-check-type t 'agenda)
  7728. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7729. (org-agenda-redo)
  7730. (org-agenda-set-mode-name)
  7731. (message "Time-grid turned %s"
  7732. (if org-agenda-use-time-grid "on" "off")))
  7733. (defun org-agenda-set-mode-name ()
  7734. "Set the mode name to indicate all the small mode settings."
  7735. (setq mode-name
  7736. (list "Org-Agenda"
  7737. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7738. " "
  7739. '(:eval (org-agenda-span-name org-agenda-current-span))
  7740. (if org-agenda-follow-mode " Follow" "")
  7741. (if org-agenda-entry-text-mode " ETxt" "")
  7742. (if org-agenda-include-diary " Diary" "")
  7743. (if org-agenda-include-deadlines " Ddl" "")
  7744. (if org-agenda-use-time-grid " Grid" "")
  7745. (if (and (boundp 'org-habit-show-habits)
  7746. org-habit-show-habits) " Habit" "")
  7747. (cond
  7748. ((consp org-agenda-show-log) " LogAll")
  7749. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7750. (org-agenda-show-log " Log")
  7751. (t ""))
  7752. (if (or org-agenda-category-filter
  7753. (get 'org-agenda-category-filter :preset-filter))
  7754. '(:eval (propertize
  7755. (concat " <"
  7756. (mapconcat
  7757. 'identity
  7758. (append
  7759. (get 'org-agenda-category-filter :preset-filter)
  7760. org-agenda-category-filter)
  7761. "")
  7762. ">")
  7763. 'face 'org-agenda-filter-category
  7764. 'help-echo "Category used in filtering")) "")
  7765. (if (or org-agenda-tag-filter
  7766. (get 'org-agenda-tag-filter :preset-filter))
  7767. '(:eval (propertize
  7768. (concat " {"
  7769. (mapconcat
  7770. 'identity
  7771. (append
  7772. (get 'org-agenda-tag-filter :preset-filter)
  7773. org-agenda-tag-filter)
  7774. "")
  7775. "}")
  7776. 'face 'org-agenda-filter-tags
  7777. 'help-echo "Tags used in filtering")) "")
  7778. (if (or org-agenda-effort-filter
  7779. (get 'org-agenda-effort-filter :preset-filter))
  7780. '(:eval (propertize
  7781. (concat " {"
  7782. (mapconcat
  7783. 'identity
  7784. (append
  7785. (get 'org-agenda-effort-filter :preset-filter)
  7786. org-agenda-effort-filter)
  7787. "")
  7788. "}")
  7789. 'face 'org-agenda-filter-effort
  7790. 'help-echo "Effort conditions used in filtering")) "")
  7791. (if (or org-agenda-regexp-filter
  7792. (get 'org-agenda-regexp-filter :preset-filter))
  7793. '(:eval (propertize
  7794. (concat " ["
  7795. (mapconcat
  7796. 'identity
  7797. (append
  7798. (get 'org-agenda-regexp-filter :preset-filter)
  7799. org-agenda-regexp-filter)
  7800. "")
  7801. "]")
  7802. 'face 'org-agenda-filter-regexp
  7803. 'help-echo "Regexp used in filtering")) "")
  7804. (if org-agenda-archives-mode
  7805. (if (eq org-agenda-archives-mode t)
  7806. " Archives"
  7807. (format " :%s:" org-archive-tag))
  7808. "")
  7809. (if org-agenda-clockreport-mode " Clock" "")))
  7810. (force-mode-line-update))
  7811. (defun org-agenda-update-agenda-type ()
  7812. "Update the agenda type after each command."
  7813. (setq org-agenda-type
  7814. (or (get-text-property (point) 'org-agenda-type)
  7815. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7816. (defun org-agenda-next-line ()
  7817. "Move cursor to the next line, and show if follow mode is active."
  7818. (interactive)
  7819. (call-interactively 'next-line)
  7820. (org-agenda-do-context-action))
  7821. (defun org-agenda-previous-line ()
  7822. "Move cursor to the previous line, and show if follow-mode is active."
  7823. (interactive)
  7824. (call-interactively 'previous-line)
  7825. (org-agenda-do-context-action))
  7826. (defun org-agenda-next-item (n)
  7827. "Move cursor to next agenda item."
  7828. (interactive "p")
  7829. (let ((col (current-column)))
  7830. (dotimes (c n)
  7831. (when (next-single-property-change (point-at-eol) 'org-marker)
  7832. (move-end-of-line 1)
  7833. (goto-char (next-single-property-change (point) 'org-marker))))
  7834. (org-move-to-column col))
  7835. (org-agenda-do-context-action))
  7836. (defun org-agenda-previous-item (n)
  7837. "Move cursor to next agenda item."
  7838. (interactive "p")
  7839. (dotimes (c n)
  7840. (let ((col (current-column))
  7841. (goto (save-excursion
  7842. (move-end-of-line 0)
  7843. (previous-single-property-change (point) 'org-marker))))
  7844. (when goto (goto-char goto))
  7845. (org-move-to-column col)))
  7846. (org-agenda-do-context-action))
  7847. (defun org-agenda-do-context-action ()
  7848. "Show outline path and, maybe, follow mode window."
  7849. (let ((m (org-get-at-bol 'org-marker)))
  7850. (when (and (markerp m) (marker-buffer m))
  7851. (and org-agenda-follow-mode
  7852. (if org-agenda-follow-indirect
  7853. (org-agenda-tree-to-indirect-buffer nil)
  7854. (org-agenda-show)))
  7855. (and org-agenda-show-outline-path
  7856. (org-with-point-at m (org-display-outline-path t))))))
  7857. (defun org-agenda-show-tags ()
  7858. "Show the tags applicable to the current item."
  7859. (interactive)
  7860. (let* ((tags (org-get-at-bol 'tags)))
  7861. (if tags
  7862. (message "Tags are :%s:"
  7863. (org-no-properties (mapconcat 'identity tags ":")))
  7864. (message "No tags associated with this line"))))
  7865. (defun org-agenda-goto (&optional highlight)
  7866. "Go to the entry at point in the corresponding Org file."
  7867. (interactive)
  7868. (let* ((marker (or (org-get-at-bol 'org-marker)
  7869. (org-agenda-error)))
  7870. (buffer (marker-buffer marker))
  7871. (pos (marker-position marker)))
  7872. (switch-to-buffer-other-window buffer)
  7873. (widen)
  7874. (push-mark)
  7875. (goto-char pos)
  7876. (when (derived-mode-p 'org-mode)
  7877. (org-show-context 'agenda)
  7878. (recenter (/ (window-height) 2))
  7879. (org-back-to-heading t)
  7880. (let ((case-fold-search nil))
  7881. (when (re-search-forward org-complex-heading-regexp nil t)
  7882. (goto-char (match-beginning 4)))))
  7883. (run-hooks 'org-agenda-after-show-hook)
  7884. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7885. (defvar org-agenda-after-show-hook nil
  7886. "Normal hook run after an item has been shown from the agenda.
  7887. Point is in the buffer where the item originated.")
  7888. (defun org-agenda-kill ()
  7889. "Kill the entry or subtree belonging to the current agenda entry."
  7890. (interactive)
  7891. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7892. (let* ((bufname-orig (buffer-name))
  7893. (marker (or (org-get-at-bol 'org-marker)
  7894. (org-agenda-error)))
  7895. (buffer (marker-buffer marker))
  7896. (pos (marker-position marker))
  7897. (type (org-get-at-bol 'type))
  7898. dbeg dend (n 0) conf)
  7899. (org-with-remote-undo buffer
  7900. (with-current-buffer buffer
  7901. (save-excursion
  7902. (goto-char pos)
  7903. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7904. (setq dbeg (progn (org-back-to-heading t) (point))
  7905. dend (org-end-of-subtree t t))
  7906. (setq dbeg (point-at-bol)
  7907. dend (min (point-max) (1+ (point-at-eol)))))
  7908. (goto-char dbeg)
  7909. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7910. (setq conf (or (eq t org-agenda-confirm-kill)
  7911. (and (numberp org-agenda-confirm-kill)
  7912. (> n org-agenda-confirm-kill))))
  7913. (and conf
  7914. (not (y-or-n-p
  7915. (format "Delete entry with %d lines in buffer \"%s\"? "
  7916. n (buffer-name buffer))))
  7917. (error "Abort"))
  7918. (let ((org-agenda-buffer-name bufname-orig))
  7919. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7920. (with-current-buffer buffer (delete-region dbeg dend))
  7921. (message "Agenda item and source killed"))))
  7922. (defvar org-archive-default-command) ; defined in org-archive.el
  7923. (defun org-agenda-archive-default ()
  7924. "Archive the entry or subtree belonging to the current agenda entry."
  7925. (interactive)
  7926. (require 'org-archive)
  7927. (org-agenda-archive-with org-archive-default-command))
  7928. (defun org-agenda-archive-default-with-confirmation ()
  7929. "Archive the entry or subtree belonging to the current agenda entry."
  7930. (interactive)
  7931. (require 'org-archive)
  7932. (org-agenda-archive-with org-archive-default-command 'confirm))
  7933. (defun org-agenda-archive ()
  7934. "Archive the entry or subtree belonging to the current agenda entry."
  7935. (interactive)
  7936. (org-agenda-archive-with 'org-archive-subtree))
  7937. (defun org-agenda-archive-to-archive-sibling ()
  7938. "Move the entry to the archive sibling."
  7939. (interactive)
  7940. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7941. (defun org-agenda-archive-with (cmd &optional confirm)
  7942. "Move the entry to the archive sibling."
  7943. (interactive)
  7944. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7945. (let* ((bufname-orig (buffer-name))
  7946. (marker (or (org-get-at-bol 'org-marker)
  7947. (org-agenda-error)))
  7948. (buffer (marker-buffer marker))
  7949. (pos (marker-position marker)))
  7950. (org-with-remote-undo buffer
  7951. (with-current-buffer buffer
  7952. (if (derived-mode-p 'org-mode)
  7953. (if (and confirm
  7954. (not (y-or-n-p "Archive this subtree or entry? ")))
  7955. (error "Abort")
  7956. (save-window-excursion
  7957. (goto-char pos)
  7958. (let ((org-agenda-buffer-name bufname-orig))
  7959. (org-remove-subtree-entries-from-agenda))
  7960. (org-back-to-heading t)
  7961. (funcall cmd)))
  7962. (error "Archiving works only in Org files"))))))
  7963. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7964. "Remove all lines in the agenda that correspond to a given subtree.
  7965. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7966. If this information is not given, the function uses the tree at point."
  7967. (let ((buf (or buf (current-buffer))) m p)
  7968. (save-excursion
  7969. (unless (and beg end)
  7970. (org-back-to-heading t)
  7971. (setq beg (point))
  7972. (org-end-of-subtree t)
  7973. (setq end (point)))
  7974. (set-buffer (get-buffer org-agenda-buffer-name))
  7975. (save-excursion
  7976. (goto-char (point-max))
  7977. (beginning-of-line 1)
  7978. (while (not (bobp))
  7979. (when (and (setq m (org-get-at-bol 'org-marker))
  7980. (equal buf (marker-buffer m))
  7981. (setq p (marker-position m))
  7982. (>= p beg)
  7983. (< p end))
  7984. (let ((inhibit-read-only t))
  7985. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7986. (beginning-of-line 0))))))
  7987. (defun org-agenda-refile (&optional goto rfloc no-update)
  7988. "Refile the item at point.
  7989. When called with `\\[universal-argument] \\[universal-argument]', \
  7990. go to the location of the last
  7991. refiled item.
  7992. When called with `\\[universal-argument] \\[universal-argument] \
  7993. \\[universal-argument]' prefix or when GOTO is 0, clear
  7994. the refile cache.
  7995. RFLOC can be a refile location obtained in a different way.
  7996. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7997. (interactive "P")
  7998. (cond
  7999. ((member goto '(0 (64)))
  8000. (org-refile-cache-clear))
  8001. ((equal goto '(16))
  8002. (org-refile-goto-last-stored))
  8003. (t
  8004. (let* ((buffer-orig (buffer-name))
  8005. (marker (or (org-get-at-bol 'org-hd-marker)
  8006. (org-agenda-error)))
  8007. (buffer (marker-buffer marker))
  8008. (pos (marker-position marker))
  8009. (rfloc (or rfloc
  8010. (org-refile-get-location
  8011. (if goto "Goto" "Refile to") buffer
  8012. org-refile-allow-creating-parent-nodes))))
  8013. (with-current-buffer buffer
  8014. (org-with-wide-buffer
  8015. (goto-char marker)
  8016. (let ((org-agenda-buffer-name buffer-orig))
  8017. (org-remove-subtree-entries-from-agenda))
  8018. (org-refile goto buffer rfloc))))
  8019. (unless no-update (org-agenda-redo)))))
  8020. (defun org-agenda-open-link (&optional arg)
  8021. "Open the link(s) in the current entry, if any.
  8022. This looks for a link in the displayed line in the agenda.
  8023. It also looks at the text of the entry itself."
  8024. (interactive "P")
  8025. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8026. (org-get-at-bol 'org-marker)))
  8027. (buffer (and marker (marker-buffer marker)))
  8028. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8029. (lkall (and buffer (org-offer-links-in-entry
  8030. buffer marker arg prefix)))
  8031. (lk0 (car lkall))
  8032. (lk (if (stringp lk0) (list lk0) lk0))
  8033. (lkend (cdr lkall))
  8034. trg)
  8035. (cond
  8036. ((and buffer lk)
  8037. (mapcar (lambda(l)
  8038. (with-current-buffer buffer
  8039. (setq trg (and (string-match org-link-bracket-re l)
  8040. (match-string 1 l)))
  8041. (if (or (not trg) (string-match org-link-any-re trg))
  8042. (org-with-wide-buffer
  8043. (goto-char marker)
  8044. (when (search-forward l nil lkend)
  8045. (goto-char (match-beginning 0))
  8046. (org-open-at-point)))
  8047. ;; This is an internal link, widen the buffer
  8048. (switch-to-buffer-other-window buffer)
  8049. (widen)
  8050. (goto-char marker)
  8051. (when (search-forward l nil lkend)
  8052. (goto-char (match-beginning 0))
  8053. (org-open-at-point)))))
  8054. lk))
  8055. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8056. (save-excursion
  8057. (beginning-of-line 1)
  8058. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8059. (org-link-open-from-string (match-string 1)))
  8060. (t (message "No link to open here")))))
  8061. (defun org-agenda-copy-local-variable (var)
  8062. "Get a variable from a referenced buffer and install it here."
  8063. (let ((m (org-get-at-bol 'org-marker)))
  8064. (when (and m (buffer-live-p (marker-buffer m)))
  8065. (set (make-local-variable var)
  8066. (with-current-buffer (marker-buffer m)
  8067. (symbol-value var))))))
  8068. (defun org-agenda-switch-to (&optional delete-other-windows)
  8069. "Go to the Org mode file which contains the item at point.
  8070. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8071. displayed Org file fills the frame."
  8072. (interactive)
  8073. (if (and org-return-follows-link
  8074. (not (org-get-at-bol 'org-marker))
  8075. (org-in-regexp org-link-bracket-re))
  8076. (org-link-open-from-string (match-string 0))
  8077. (let* ((marker (or (org-get-at-bol 'org-marker)
  8078. (org-agenda-error)))
  8079. (buffer (marker-buffer marker))
  8080. (pos (marker-position marker)))
  8081. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8082. (pop-to-buffer-same-window buffer)
  8083. (when delete-other-windows (delete-other-windows))
  8084. (widen)
  8085. (goto-char pos)
  8086. (when (derived-mode-p 'org-mode)
  8087. (org-show-context 'agenda)
  8088. (run-hooks 'org-agenda-after-show-hook)))))
  8089. (defun org-agenda-goto-mouse (ev)
  8090. "Go to the Org file which contains the item at the mouse click."
  8091. (interactive "e")
  8092. (mouse-set-point ev)
  8093. (org-agenda-goto))
  8094. (defun org-agenda-show (&optional full-entry)
  8095. "Display the Org file which contains the item at point.
  8096. With prefix argument FULL-ENTRY, make the entire entry visible
  8097. if it was hidden in the outline."
  8098. (interactive "P")
  8099. (let ((win (selected-window)))
  8100. (org-agenda-goto t)
  8101. (when full-entry (org-show-entry))
  8102. (select-window win)))
  8103. (defvar org-agenda-show-window nil)
  8104. (defun org-agenda-show-and-scroll-up (&optional arg)
  8105. "Display the Org file which contains the item at point.
  8106. When called repeatedly, scroll the window that is displaying the buffer.
  8107. With a `\\[universal-argument]' prefix argument, display the item, but \
  8108. fold drawers."
  8109. (interactive "P")
  8110. (let ((win (selected-window)))
  8111. (if (and (window-live-p org-agenda-show-window)
  8112. (eq this-command last-command))
  8113. (progn
  8114. (select-window org-agenda-show-window)
  8115. (ignore-errors (scroll-up)))
  8116. (org-agenda-goto t)
  8117. (org-show-entry)
  8118. (if arg (org-cycle-hide-drawers 'children)
  8119. (org-with-wide-buffer
  8120. (narrow-to-region (org-entry-beginning-position)
  8121. (org-entry-end-position))
  8122. (org-show-all '(drawers))))
  8123. (when arg )
  8124. (setq org-agenda-show-window (selected-window)))
  8125. (select-window win)))
  8126. (defun org-agenda-show-scroll-down ()
  8127. "Scroll down the window showing the agenda."
  8128. (interactive)
  8129. (let ((win (selected-window)))
  8130. (when (window-live-p org-agenda-show-window)
  8131. (select-window org-agenda-show-window)
  8132. (ignore-errors (scroll-down))
  8133. (select-window win))))
  8134. (defun org-agenda-show-1 (&optional more)
  8135. "Display the Org file which contains the item at point.
  8136. The prefix arg selects the amount of information to display:
  8137. 0 hide the subtree
  8138. 1 just show the entry according to defaults.
  8139. 2 show the children view
  8140. 3 show the subtree view
  8141. 4 show the entire subtree and any LOGBOOK drawers
  8142. 5 show the entire subtree and any drawers
  8143. With prefix argument FULL-ENTRY, make the entire entry visible
  8144. if it was hidden in the outline."
  8145. (interactive "p")
  8146. (let ((win (selected-window)))
  8147. (org-agenda-goto t)
  8148. (org-back-to-heading)
  8149. (set-window-start (selected-window) (point-at-bol))
  8150. (cond
  8151. ((= more 0)
  8152. (outline-hide-subtree)
  8153. (save-excursion
  8154. (org-back-to-heading)
  8155. (run-hook-with-args 'org-cycle-hook 'folded))
  8156. (message "Remote: FOLDED"))
  8157. ((and (called-interactively-p 'any) (= more 1))
  8158. (message "Remote: show with default settings"))
  8159. ((= more 2)
  8160. (outline-show-entry)
  8161. (org-show-children)
  8162. (save-excursion
  8163. (org-back-to-heading)
  8164. (run-hook-with-args 'org-cycle-hook 'children))
  8165. (message "Remote: CHILDREN"))
  8166. ((= more 3)
  8167. (outline-show-subtree)
  8168. (save-excursion
  8169. (org-back-to-heading)
  8170. (run-hook-with-args 'org-cycle-hook 'subtree))
  8171. (message "Remote: SUBTREE"))
  8172. ((= more 4)
  8173. (outline-show-subtree)
  8174. (save-excursion
  8175. (org-back-to-heading)
  8176. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8177. (message "Remote: SUBTREE AND LOGBOOK"))
  8178. ((> more 4)
  8179. (outline-show-subtree)
  8180. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8181. (select-window win)))
  8182. (defvar org-agenda-cycle-counter nil)
  8183. (defun org-agenda-cycle-show (&optional n)
  8184. "Show the current entry in another window, with default settings.
  8185. Default settings are taken from `org-show-context-detail'. When
  8186. use repeatedly in immediate succession, the remote entry will
  8187. cycle through visibility
  8188. children -> subtree -> folded
  8189. When called with a numeric prefix arg, that arg will be passed through to
  8190. `org-agenda-show-1'. For the interpretation of that argument, see the
  8191. docstring of `org-agenda-show-1'."
  8192. (interactive "P")
  8193. (if (integerp n)
  8194. (setq org-agenda-cycle-counter n)
  8195. (if (not (eq last-command this-command))
  8196. (setq org-agenda-cycle-counter 1)
  8197. (if (equal org-agenda-cycle-counter 0)
  8198. (setq org-agenda-cycle-counter 2)
  8199. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8200. (when (> org-agenda-cycle-counter 3)
  8201. (setq org-agenda-cycle-counter 0)))))
  8202. (org-agenda-show-1 org-agenda-cycle-counter))
  8203. (defun org-agenda-recenter (arg)
  8204. "Display the Org file which contains the item at point and recenter."
  8205. (interactive "P")
  8206. (let ((win (selected-window)))
  8207. (org-agenda-goto t)
  8208. (recenter arg)
  8209. (select-window win)))
  8210. (defun org-agenda-show-mouse (ev)
  8211. "Display the Org file which contains the item at the mouse click."
  8212. (interactive "e")
  8213. (mouse-set-point ev)
  8214. (org-agenda-show))
  8215. (defun org-agenda-check-no-diary ()
  8216. "Check if the entry is a diary link and abort if yes."
  8217. (when (org-get-at-bol 'org-agenda-diary-link)
  8218. (org-agenda-error)))
  8219. (defun org-agenda-error ()
  8220. "Throw an error when a command is not allowed in the agenda."
  8221. (user-error "Command not allowed in this line"))
  8222. (defun org-agenda-tree-to-indirect-buffer (arg)
  8223. "Show the subtree corresponding to the current entry in an indirect buffer.
  8224. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8225. With a numerical prefix ARG, go up to this level and then take that tree.
  8226. With a negative numeric ARG, go up by this number of levels.
  8227. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8228. i.e. don't use
  8229. the dedicated frame."
  8230. (interactive "P")
  8231. (if current-prefix-arg
  8232. (org-agenda-do-tree-to-indirect-buffer arg)
  8233. (let ((agenda-buffer (buffer-name))
  8234. (agenda-window (selected-window))
  8235. (indirect-window
  8236. (and org-last-indirect-buffer
  8237. (get-buffer-window org-last-indirect-buffer))))
  8238. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8239. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8240. (eq org-indirect-buffer-display 'dedicated-frame))
  8241. (unwind-protect
  8242. (unless (and indirect-window (window-live-p indirect-window))
  8243. (setq indirect-window (split-window agenda-window)))
  8244. (and indirect-window (select-window indirect-window))
  8245. (switch-to-buffer org-last-indirect-buffer :norecord)
  8246. (fit-window-to-buffer indirect-window)))
  8247. (select-window (get-buffer-window agenda-buffer))
  8248. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8249. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8250. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8251. (org-agenda-check-no-diary)
  8252. (let* ((marker (or (org-get-at-bol 'org-marker)
  8253. (org-agenda-error)))
  8254. (buffer (marker-buffer marker))
  8255. (pos (marker-position marker)))
  8256. (with-current-buffer buffer
  8257. (save-excursion
  8258. (goto-char pos)
  8259. (org-tree-to-indirect-buffer arg)))))
  8260. (defvar org-last-heading-marker (make-marker)
  8261. "Marker pointing to the headline that last changed its TODO state
  8262. by a remote command from the agenda.")
  8263. (defun org-agenda-todo-nextset ()
  8264. "Switch TODO entry to next sequence."
  8265. (interactive)
  8266. (org-agenda-todo 'nextset))
  8267. (defun org-agenda-todo-previousset ()
  8268. "Switch TODO entry to previous sequence."
  8269. (interactive)
  8270. (org-agenda-todo 'previousset))
  8271. (defun org-agenda-todo (&optional arg)
  8272. "Cycle TODO state of line at point, also in Org file.
  8273. This changes the line at point, all other lines in the agenda referring to
  8274. the same tree node, and the headline of the tree node in the Org file."
  8275. (interactive "P")
  8276. (org-agenda-check-no-diary)
  8277. (let* ((col (current-column))
  8278. (marker (or (org-get-at-bol 'org-marker)
  8279. (org-agenda-error)))
  8280. (buffer (marker-buffer marker))
  8281. (pos (marker-position marker))
  8282. (hdmarker (org-get-at-bol 'org-hd-marker))
  8283. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8284. (inhibit-read-only t)
  8285. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8286. (org-with-remote-undo buffer
  8287. (with-current-buffer buffer
  8288. (widen)
  8289. (goto-char pos)
  8290. (org-show-context 'agenda)
  8291. (let ((current-prefix-arg arg))
  8292. (call-interactively 'org-todo))
  8293. (and (bolp) (forward-char 1))
  8294. (setq newhead (org-get-heading))
  8295. (when (and (bound-and-true-p
  8296. org-agenda-headline-snapshot-before-repeat)
  8297. (not (equal org-agenda-headline-snapshot-before-repeat
  8298. newhead))
  8299. todayp)
  8300. (setq newhead org-agenda-headline-snapshot-before-repeat
  8301. just-one t))
  8302. (save-excursion
  8303. (org-back-to-heading)
  8304. (move-marker org-last-heading-marker (point))))
  8305. (beginning-of-line 1)
  8306. (save-window-excursion
  8307. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8308. (when (bound-and-true-p org-clock-out-when-done)
  8309. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8310. newhead)
  8311. (org-agenda-unmark-clocking-task))
  8312. (org-move-to-column col)
  8313. (org-agenda-mark-clocking-task))))
  8314. (defun org-agenda-add-note (&optional arg)
  8315. "Add a time-stamped note to the entry at point."
  8316. (interactive "P")
  8317. (org-agenda-check-no-diary)
  8318. (let* ((marker (or (org-get-at-bol 'org-marker)
  8319. (org-agenda-error)))
  8320. (buffer (marker-buffer marker))
  8321. (pos (marker-position marker))
  8322. (hdmarker (org-get-at-bol 'org-hd-marker))
  8323. (inhibit-read-only t))
  8324. (with-current-buffer buffer
  8325. (widen)
  8326. (goto-char pos)
  8327. (org-show-context 'agenda)
  8328. (org-add-note))))
  8329. (defun org-agenda-change-all-lines (newhead hdmarker
  8330. &optional fixface just-this)
  8331. "Change all lines in the agenda buffer which match HDMARKER.
  8332. The new content of the line will be NEWHEAD (as modified by
  8333. `org-agenda-format-item'). HDMARKER is checked with
  8334. `equal' against all `org-hd-marker' text properties in the file.
  8335. If FIXFACE is non-nil, the face of each item is modified according to
  8336. the new TODO state.
  8337. If JUST-THIS is non-nil, change just the current line, not all.
  8338. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8339. (let* ((inhibit-read-only t)
  8340. (line (org-current-line))
  8341. (org-agenda-buffer (current-buffer))
  8342. (thetags (with-current-buffer (marker-buffer hdmarker)
  8343. (org-get-tags hdmarker)))
  8344. props m pl undone-face done-face finish new dotime level cat tags)
  8345. (save-excursion
  8346. (goto-char (point-max))
  8347. (beginning-of-line 1)
  8348. (while (not finish)
  8349. (setq finish (bobp))
  8350. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8351. (or (not just-this) (= (org-current-line) line))
  8352. (equal m hdmarker))
  8353. (setq props (text-properties-at (point))
  8354. dotime (org-get-at-bol 'dotime)
  8355. cat (org-agenda-get-category)
  8356. level (org-get-at-bol 'level)
  8357. tags thetags
  8358. new
  8359. (let ((org-prefix-format-compiled
  8360. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8361. org-prefix-format-compiled))
  8362. (extra (org-get-at-bol 'extra)))
  8363. (with-current-buffer (marker-buffer hdmarker)
  8364. (org-with-wide-buffer
  8365. (org-agenda-format-item extra newhead level cat tags dotime))))
  8366. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8367. undone-face (org-get-at-bol 'undone-face)
  8368. done-face (org-get-at-bol 'done-face))
  8369. (beginning-of-line 1)
  8370. (cond
  8371. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8372. ((looking-at ".*")
  8373. ;; When replacing the whole line, preserve bulk mark
  8374. ;; overlay, if any.
  8375. (let ((mark (catch :overlay
  8376. (dolist (o (overlays-in (point) (+ 2 (point))))
  8377. (when (eq (overlay-get o 'type)
  8378. 'org-marked-entry-overlay)
  8379. (throw :overlay o))))))
  8380. (replace-match new t t)
  8381. (beginning-of-line)
  8382. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8383. (add-text-properties (point-at-bol) (point-at-eol) props)
  8384. (when fixface
  8385. (add-text-properties
  8386. (point-at-bol) (point-at-eol)
  8387. (list 'face
  8388. (if org-last-todo-state-is-todo
  8389. undone-face done-face))))
  8390. (org-agenda-highlight-todo 'line)
  8391. (beginning-of-line 1))
  8392. (t (error "Line update did not work")))
  8393. (save-restriction
  8394. (narrow-to-region (point-at-bol) (point-at-eol))
  8395. (org-agenda-finalize)))
  8396. (beginning-of-line 0)))))
  8397. (defun org-agenda-align-tags (&optional line)
  8398. "Align all tags in agenda items to `org-agenda-tags-column'.
  8399. When optional argument LINE is non-nil, align tags only on the
  8400. current line."
  8401. (let ((inhibit-read-only t)
  8402. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8403. (- (window-text-width))
  8404. org-agenda-tags-column))
  8405. (end (and line (line-end-position)))
  8406. l c)
  8407. (save-excursion
  8408. (goto-char (if line (line-beginning-position) (point-min)))
  8409. (while (re-search-forward org-tag-group-re end t)
  8410. (add-text-properties
  8411. (match-beginning 1) (match-end 1)
  8412. (list 'face (delq nil (let ((prop (get-text-property
  8413. (match-beginning 1) 'face)))
  8414. (or (listp prop) (setq prop (list prop)))
  8415. (if (memq 'org-tag prop)
  8416. prop
  8417. (cons 'org-tag prop))))))
  8418. (setq l (string-width (match-string 1))
  8419. c (if (< org-agenda-tags-column 0)
  8420. (- (abs org-agenda-tags-column) l)
  8421. org-agenda-tags-column))
  8422. (goto-char (match-beginning 1))
  8423. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8424. (point))
  8425. (insert (org-add-props
  8426. (make-string (max 1 (- c (current-column))) ?\s)
  8427. (plist-put (copy-sequence (text-properties-at (point)))
  8428. 'face nil))))
  8429. (goto-char (point-min))
  8430. (org-font-lock-add-tag-faces (point-max)))))
  8431. (defun org-agenda-priority-up ()
  8432. "Increase the priority of line at point, also in Org file."
  8433. (interactive)
  8434. (org-agenda-priority 'up))
  8435. (defun org-agenda-priority-down ()
  8436. "Decrease the priority of line at point, also in Org file."
  8437. (interactive)
  8438. (org-agenda-priority 'down))
  8439. (defun org-agenda-priority (&optional force-direction)
  8440. "Set the priority of line at point, also in Org file.
  8441. This changes the line at point, all other lines in the agenda referring to
  8442. the same tree node, and the headline of the tree node in the Org file.
  8443. Called with a universal prefix arg, show the priority instead of setting it."
  8444. (interactive "P")
  8445. (if (equal force-direction '(4))
  8446. (org-show-priority)
  8447. (unless org-enable-priority-commands
  8448. (error "Priority commands are disabled"))
  8449. (org-agenda-check-no-diary)
  8450. (let* ((col (current-column))
  8451. (marker (or (org-get-at-bol 'org-marker)
  8452. (org-agenda-error)))
  8453. (hdmarker (org-get-at-bol 'org-hd-marker))
  8454. (buffer (marker-buffer hdmarker))
  8455. (pos (marker-position hdmarker))
  8456. (inhibit-read-only t)
  8457. newhead)
  8458. (org-with-remote-undo buffer
  8459. (with-current-buffer buffer
  8460. (widen)
  8461. (goto-char pos)
  8462. (org-show-context 'agenda)
  8463. (org-priority force-direction)
  8464. (end-of-line 1)
  8465. (setq newhead (org-get-heading)))
  8466. (org-agenda-change-all-lines newhead hdmarker)
  8467. (org-move-to-column col)))))
  8468. ;; FIXME: should fix the tags property of the agenda line.
  8469. (defun org-agenda-set-tags (&optional tag onoff)
  8470. "Set tags for the current headline."
  8471. (interactive)
  8472. (org-agenda-check-no-diary)
  8473. (if (and (org-region-active-p) (called-interactively-p 'any))
  8474. (call-interactively 'org-change-tag-in-region)
  8475. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8476. (org-agenda-error)))
  8477. (buffer (marker-buffer hdmarker))
  8478. (pos (marker-position hdmarker))
  8479. (inhibit-read-only t)
  8480. newhead)
  8481. (org-with-remote-undo buffer
  8482. (with-current-buffer buffer
  8483. (widen)
  8484. (goto-char pos)
  8485. (org-show-context 'agenda)
  8486. (if tag
  8487. (org-toggle-tag tag onoff)
  8488. (call-interactively #'org-set-tags-command))
  8489. (end-of-line 1)
  8490. (setq newhead (org-get-heading)))
  8491. (org-agenda-change-all-lines newhead hdmarker)
  8492. (beginning-of-line 1)))))
  8493. (defun org-agenda-set-property ()
  8494. "Set a property for the current headline."
  8495. (interactive)
  8496. (org-agenda-check-no-diary)
  8497. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8498. (org-agenda-error)))
  8499. (buffer (marker-buffer hdmarker))
  8500. (pos (marker-position hdmarker))
  8501. (inhibit-read-only t)
  8502. newhead)
  8503. (org-with-remote-undo buffer
  8504. (with-current-buffer buffer
  8505. (widen)
  8506. (goto-char pos)
  8507. (org-show-context 'agenda)
  8508. (call-interactively 'org-set-property)))))
  8509. (defun org-agenda-set-effort ()
  8510. "Set the effort property for the current headline."
  8511. (interactive)
  8512. (org-agenda-check-no-diary)
  8513. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8514. (org-agenda-error)))
  8515. (buffer (marker-buffer hdmarker))
  8516. (pos (marker-position hdmarker))
  8517. (inhibit-read-only t)
  8518. newhead)
  8519. (org-with-remote-undo buffer
  8520. (with-current-buffer buffer
  8521. (widen)
  8522. (goto-char pos)
  8523. (org-show-context 'agenda)
  8524. (call-interactively 'org-set-effort)
  8525. (end-of-line 1)
  8526. (setq newhead (org-get-heading)))
  8527. (org-agenda-change-all-lines newhead hdmarker))))
  8528. (defun org-agenda-toggle-archive-tag ()
  8529. "Toggle the archive tag for the current entry."
  8530. (interactive)
  8531. (org-agenda-check-no-diary)
  8532. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8533. (org-agenda-error)))
  8534. (buffer (marker-buffer hdmarker))
  8535. (pos (marker-position hdmarker))
  8536. (inhibit-read-only t)
  8537. newhead)
  8538. (org-with-remote-undo buffer
  8539. (with-current-buffer buffer
  8540. (widen)
  8541. (goto-char pos)
  8542. (org-show-context 'agenda)
  8543. (call-interactively 'org-toggle-archive-tag)
  8544. (end-of-line 1)
  8545. (setq newhead (org-get-heading)))
  8546. (org-agenda-change-all-lines newhead hdmarker)
  8547. (beginning-of-line 1))))
  8548. (defun org-agenda-do-date-later (arg)
  8549. (interactive "P")
  8550. (cond
  8551. ((or (equal arg '(16))
  8552. (memq last-command
  8553. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8554. (setq this-command 'org-agenda-date-later-minutes)
  8555. (org-agenda-date-later-minutes 1))
  8556. ((or (equal arg '(4))
  8557. (memq last-command
  8558. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8559. (setq this-command 'org-agenda-date-later-hours)
  8560. (org-agenda-date-later-hours 1))
  8561. (t
  8562. (org-agenda-date-later (prefix-numeric-value arg)))))
  8563. (defun org-agenda-do-date-earlier (arg)
  8564. (interactive "P")
  8565. (cond
  8566. ((or (equal arg '(16))
  8567. (memq last-command
  8568. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8569. (setq this-command 'org-agenda-date-earlier-minutes)
  8570. (org-agenda-date-earlier-minutes 1))
  8571. ((or (equal arg '(4))
  8572. (memq last-command
  8573. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8574. (setq this-command 'org-agenda-date-earlier-hours)
  8575. (org-agenda-date-earlier-hours 1))
  8576. (t
  8577. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8578. (defun org-agenda-date-later (arg &optional what)
  8579. "Change the date of this item to ARG day(s) later."
  8580. (interactive "p")
  8581. (org-agenda-check-type t 'agenda)
  8582. (org-agenda-check-no-diary)
  8583. (let* ((marker (or (org-get-at-bol 'org-marker)
  8584. (org-agenda-error)))
  8585. (buffer (marker-buffer marker))
  8586. (pos (marker-position marker))
  8587. cdate today)
  8588. (org-with-remote-undo buffer
  8589. (with-current-buffer buffer
  8590. (widen)
  8591. (goto-char pos)
  8592. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8593. (when (and org-agenda-move-date-from-past-immediately-to-today
  8594. (equal arg 1)
  8595. (or (not what) (eq what 'day))
  8596. (not (save-match-data (org-at-date-range-p))))
  8597. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8598. cdate (calendar-absolute-from-gregorian
  8599. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8600. today (org-today))
  8601. (when (> today cdate)
  8602. ;; immediately shift to today
  8603. (setq arg (- today cdate))))
  8604. (org-timestamp-change arg (or what 'day))
  8605. (when (and (org-at-date-range-p)
  8606. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8607. (let ((end org-last-changed-timestamp))
  8608. (org-timestamp-change arg (or what 'day))
  8609. (setq org-last-changed-timestamp
  8610. (concat org-last-changed-timestamp "--" end)))))
  8611. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8612. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8613. (defun org-agenda-date-earlier (arg &optional what)
  8614. "Change the date of this item to ARG day(s) earlier."
  8615. (interactive "p")
  8616. (org-agenda-date-later (- arg) what))
  8617. (defun org-agenda-date-later-minutes (arg)
  8618. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8619. (interactive "p")
  8620. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8621. (org-agenda-date-later arg 'minute))
  8622. (defun org-agenda-date-earlier-minutes (arg)
  8623. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8624. (interactive "p")
  8625. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8626. (org-agenda-date-earlier arg 'minute))
  8627. (defun org-agenda-date-later-hours (arg)
  8628. "Change the time of this item, in hour steps."
  8629. (interactive "p")
  8630. (org-agenda-date-later arg 'hour))
  8631. (defun org-agenda-date-earlier-hours (arg)
  8632. "Change the time of this item, in hour steps."
  8633. (interactive "p")
  8634. (org-agenda-date-earlier arg 'hour))
  8635. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8636. "Show new date stamp via text properties."
  8637. ;; We use text properties to make this undoable
  8638. (let ((inhibit-read-only t))
  8639. (setq stamp (concat prefix " => " stamp " "))
  8640. (save-excursion
  8641. (goto-char (point-max))
  8642. (while (not (bobp))
  8643. (when (equal marker (org-get-at-bol 'org-marker))
  8644. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8645. (org-move-to-column (- (window-width) (length stamp)) t)
  8646. (add-text-properties
  8647. (1- (point)) (point-at-eol)
  8648. (list 'display (org-add-props stamp nil
  8649. 'face '(secondary-selection default))))
  8650. (beginning-of-line 1))
  8651. (beginning-of-line 0)))))
  8652. (defun org-agenda-date-prompt (arg)
  8653. "Change the date of this item. Date is prompted for, with default today.
  8654. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8655. be used to request time specification in the time stamp."
  8656. (interactive "P")
  8657. (org-agenda-check-type t 'agenda)
  8658. (org-agenda-check-no-diary)
  8659. (let* ((marker (or (org-get-at-bol 'org-marker)
  8660. (org-agenda-error)))
  8661. (buffer (marker-buffer marker))
  8662. (pos (marker-position marker)))
  8663. (org-with-remote-undo buffer
  8664. (with-current-buffer buffer
  8665. (widen)
  8666. (goto-char pos)
  8667. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8668. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8669. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8670. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8671. (defun org-agenda-schedule (arg &optional time)
  8672. "Schedule the item at point.
  8673. ARG is passed through to `org-schedule'."
  8674. (interactive "P")
  8675. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8676. (org-agenda-check-no-diary)
  8677. (let* ((marker (or (org-get-at-bol 'org-marker)
  8678. (org-agenda-error)))
  8679. (type (marker-insertion-type marker))
  8680. (buffer (marker-buffer marker))
  8681. (pos (marker-position marker))
  8682. ts)
  8683. (set-marker-insertion-type marker t)
  8684. (org-with-remote-undo buffer
  8685. (with-current-buffer buffer
  8686. (widen)
  8687. (goto-char pos)
  8688. (setq ts (org-schedule arg time)))
  8689. (org-agenda-show-new-time marker ts " S"))
  8690. (message "%s" ts)))
  8691. (defun org-agenda-deadline (arg &optional time)
  8692. "Schedule the item at point.
  8693. ARG is passed through to `org-deadline'."
  8694. (interactive "P")
  8695. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8696. (org-agenda-check-no-diary)
  8697. (let* ((marker (or (org-get-at-bol 'org-marker)
  8698. (org-agenda-error)))
  8699. (buffer (marker-buffer marker))
  8700. (pos (marker-position marker))
  8701. ts)
  8702. (org-with-remote-undo buffer
  8703. (with-current-buffer buffer
  8704. (widen)
  8705. (goto-char pos)
  8706. (setq ts (org-deadline arg time)))
  8707. (org-agenda-show-new-time marker ts " D"))
  8708. (message "%s" ts)))
  8709. (defun org-agenda-clock-in (&optional arg)
  8710. "Start the clock on the currently selected item."
  8711. (interactive "P")
  8712. (org-agenda-check-no-diary)
  8713. (if (equal arg '(4))
  8714. (org-clock-in arg)
  8715. (let* ((marker (or (org-get-at-bol 'org-marker)
  8716. (org-agenda-error)))
  8717. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8718. (pos (marker-position marker))
  8719. (col (current-column))
  8720. newhead)
  8721. (org-with-remote-undo (marker-buffer marker)
  8722. (with-current-buffer (marker-buffer marker)
  8723. (widen)
  8724. (goto-char pos)
  8725. (org-show-context 'agenda)
  8726. (org-clock-in arg)
  8727. (setq newhead (org-get-heading)))
  8728. (org-agenda-change-all-lines newhead hdmarker))
  8729. (org-move-to-column col))))
  8730. (defun org-agenda-clock-out ()
  8731. "Stop the currently running clock."
  8732. (interactive)
  8733. (unless (marker-buffer org-clock-marker)
  8734. (error "No running clock"))
  8735. (let ((marker (make-marker)) (col (current-column)) newhead)
  8736. (org-with-remote-undo (marker-buffer org-clock-marker)
  8737. (with-current-buffer (marker-buffer org-clock-marker)
  8738. (org-with-wide-buffer
  8739. (goto-char org-clock-marker)
  8740. (org-back-to-heading t)
  8741. (move-marker marker (point))
  8742. (org-clock-out)
  8743. (setq newhead (org-get-heading)))))
  8744. (org-agenda-change-all-lines newhead marker)
  8745. (move-marker marker nil)
  8746. (org-move-to-column col)
  8747. (org-agenda-unmark-clocking-task)))
  8748. (defun org-agenda-clock-cancel (&optional arg)
  8749. "Cancel the currently running clock."
  8750. (interactive "P")
  8751. (unless (marker-buffer org-clock-marker)
  8752. (user-error "No running clock"))
  8753. (org-with-remote-undo (marker-buffer org-clock-marker)
  8754. (org-clock-cancel)))
  8755. (defun org-agenda-clock-goto ()
  8756. "Jump to the currently clocked in task within the agenda.
  8757. If the currently clocked in task is not listed in the agenda
  8758. buffer, display it in another window."
  8759. (interactive)
  8760. (let (pos)
  8761. (mapc (lambda (o)
  8762. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  8763. (setq pos (overlay-start o))))
  8764. (overlays-in (point-min) (point-max)))
  8765. (cond (pos (goto-char pos))
  8766. ;; If the currently clocked entry is not in the agenda
  8767. ;; buffer, we visit it in another window:
  8768. ((bound-and-true-p org-clock-current-task)
  8769. (org-switch-to-buffer-other-window (org-clock-goto)))
  8770. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8771. (defun org-agenda-diary-entry-in-org-file ()
  8772. "Make a diary entry in the file `org-agenda-diary-file'."
  8773. (let (d1 d2 char (text "") dp1 dp2)
  8774. (if (equal (buffer-name) "*Calendar*")
  8775. (setq d1 (calendar-cursor-to-date t)
  8776. d2 (car calendar-mark-ring))
  8777. (setq dp1 (get-text-property (point-at-bol) 'day))
  8778. (unless dp1 (user-error "No date defined in current line"))
  8779. (setq d1 (calendar-gregorian-from-absolute dp1)
  8780. d2 (and (ignore-errors (mark))
  8781. (save-excursion
  8782. (goto-char (mark))
  8783. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8784. (calendar-gregorian-from-absolute dp2))))
  8785. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8786. (setq char (read-char-exclusive))
  8787. (cond
  8788. ((equal char ?d)
  8789. (setq text (read-string "Day entry: "))
  8790. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8791. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8792. ((equal char ?a)
  8793. (setq d1 (list (car d1) (nth 1 d1)
  8794. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8795. (nth 2 d1))))
  8796. (setq text (read-string "Anniversary (use %d to show years): "))
  8797. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8798. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8799. ((equal char ?b)
  8800. (setq text (read-string "Block entry: "))
  8801. (unless (and d1 d2 (not (equal d1 d2)))
  8802. (user-error "No block of days selected"))
  8803. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8804. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8805. ((equal char ?j)
  8806. (org-switch-to-buffer-other-window
  8807. (find-file-noselect org-agenda-diary-file))
  8808. (require 'org-datetree)
  8809. (org-datetree-find-date-create d1)
  8810. (org-reveal t))
  8811. (t (user-error "Invalid selection character `%c'" char)))))
  8812. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8813. "Where in `org-agenda-diary-file' should new entries be added?
  8814. Valid values:
  8815. date-tree in the date tree, as first child of the date
  8816. date-tree-last in the date tree, as last child of the date
  8817. top-level as top-level entries at the end of the file."
  8818. :group 'org-agenda
  8819. :type '(choice
  8820. (const :tag "first in a date tree" date-tree)
  8821. (const :tag "last in a date tree" date-tree-last)
  8822. (const :tag "as top level at end of file" top-level)))
  8823. (defcustom org-agenda-insert-diary-extract-time nil
  8824. "Non-nil means extract any time specification from the diary entry."
  8825. :group 'org-agenda
  8826. :version "24.1"
  8827. :type 'boolean)
  8828. (defcustom org-agenda-bulk-mark-char ">"
  8829. "A single-character string to be used as the bulk mark."
  8830. :group 'org-agenda
  8831. :version "24.1"
  8832. :type 'string)
  8833. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8834. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8835. If TEXT is not empty, it will become the headline of the new entry, and
  8836. the resulting entry will not be shown. When TEXT is empty, switch to
  8837. `org-agenda-diary-file' and let the user finish the entry there."
  8838. (let ((cw (current-window-configuration)))
  8839. (org-switch-to-buffer-other-window
  8840. (find-file-noselect org-agenda-diary-file))
  8841. (widen)
  8842. (goto-char (point-min))
  8843. (cl-case type
  8844. (anniversary
  8845. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8846. (progn
  8847. (or (org-at-heading-p t)
  8848. (progn
  8849. (outline-next-heading)
  8850. (insert "* Anniversaries\n\n")
  8851. (beginning-of-line -1)))))
  8852. (outline-next-heading)
  8853. (org-back-over-empty-lines)
  8854. (backward-char 1)
  8855. (insert "\n")
  8856. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8857. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8858. (day
  8859. (let ((org-prefix-has-time t)
  8860. (org-agenda-time-leading-zero t)
  8861. fmt time time2)
  8862. (when org-agenda-insert-diary-extract-time
  8863. ;; Use org-agenda-format-item to parse text for a time-range and
  8864. ;; remove it. FIXME: This is a hack, we should refactor
  8865. ;; that function to make time extraction available separately
  8866. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8867. time (get-text-property 0 'time fmt)
  8868. time2 (if (> (length time) 0)
  8869. ;; split-string removes trailing ...... if
  8870. ;; no end time given. First space
  8871. ;; separates time from date.
  8872. (concat " " (car (split-string time "\\.")))
  8873. nil)
  8874. text (get-text-property 0 'txt fmt)))
  8875. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8876. (org-agenda-insert-diary-as-top-level text)
  8877. (require 'org-datetree)
  8878. (org-datetree-find-date-create d1)
  8879. (org-agenda-insert-diary-make-new-entry text))
  8880. (org-insert-time-stamp (org-time-from-absolute
  8881. (calendar-absolute-from-gregorian d1))
  8882. nil nil nil nil time2))
  8883. (end-of-line 0))
  8884. ((block) ;; Wrap this in (strictly unnecessary) parens because
  8885. ;; otherwise the indentation gets confused by the
  8886. ;; special meaning of 'block
  8887. (when (> (calendar-absolute-from-gregorian d1)
  8888. (calendar-absolute-from-gregorian d2))
  8889. (setq d1 (prog1 d2 (setq d2 d1))))
  8890. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8891. (org-agenda-insert-diary-as-top-level text)
  8892. (require 'org-datetree)
  8893. (org-datetree-find-date-create d1)
  8894. (org-agenda-insert-diary-make-new-entry text))
  8895. (org-insert-time-stamp (org-time-from-absolute
  8896. (calendar-absolute-from-gregorian d1)))
  8897. (insert "--")
  8898. (org-insert-time-stamp (org-time-from-absolute
  8899. (calendar-absolute-from-gregorian d2)))
  8900. (end-of-line 0)))
  8901. (if (string-match "\\S-" text)
  8902. (progn
  8903. (set-window-configuration cw)
  8904. (message "%s entry added to %s"
  8905. (capitalize (symbol-name type))
  8906. (abbreviate-file-name org-agenda-diary-file)))
  8907. (org-reveal t)
  8908. (message "Please finish entry here"))))
  8909. (defun org-agenda-insert-diary-as-top-level (text)
  8910. "Make new entry as a top-level entry at the end of the file.
  8911. Add TEXT as headline, and position the cursor in the second line so that
  8912. a timestamp can be added there."
  8913. (widen)
  8914. (goto-char (point-max))
  8915. (unless (bolp) (insert "\n"))
  8916. (org-insert-heading nil t t)
  8917. (insert text)
  8918. (org-end-of-meta-data)
  8919. (unless (bolp) (insert "\n"))
  8920. (when org-adapt-indentation (indent-to-column 2)))
  8921. (defun org-agenda-insert-diary-make-new-entry (text)
  8922. "Make a new entry with TEXT as a child of the current subtree.
  8923. Position the point in the heading's first body line so that
  8924. a timestamp can be added there."
  8925. (cond
  8926. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  8927. (end-of-line)
  8928. (org-insert-heading '(4) t)
  8929. (org-do-demote))
  8930. (t
  8931. (outline-next-heading)
  8932. (org-back-over-empty-lines)
  8933. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8934. (org-insert-heading nil t)
  8935. (org-do-demote)))
  8936. (let ((col (current-column)))
  8937. (insert text)
  8938. (org-end-of-meta-data)
  8939. ;; Ensure point is left on a blank line, at proper indentation.
  8940. (unless (bolp) (insert "\n"))
  8941. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8942. (when org-adapt-indentation (indent-to-column col)))
  8943. (org-show-set-visibility 'lineage))
  8944. (defun org-agenda-diary-entry ()
  8945. "Make a diary entry, like the `i' command from the calendar.
  8946. All the standard commands work: block, weekly etc.
  8947. When `org-agenda-diary-file' points to a file,
  8948. `org-agenda-diary-entry-in-org-file' is called instead to create
  8949. entries in that Org file."
  8950. (interactive)
  8951. (if (not (eq org-agenda-diary-file 'diary-file))
  8952. (org-agenda-diary-entry-in-org-file)
  8953. (require 'diary-lib)
  8954. (let* ((char (read-char-exclusive
  8955. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  8956. [a]nniversary [b]lock [c]yclic"))
  8957. (cmd (cdr (assoc char
  8958. '((?d . diary-insert-entry)
  8959. (?w . diary-insert-weekly-entry)
  8960. (?m . diary-insert-monthly-entry)
  8961. (?y . diary-insert-yearly-entry)
  8962. (?a . diary-insert-anniversary-entry)
  8963. (?b . diary-insert-block-entry)
  8964. (?c . diary-insert-cyclic-entry)))))
  8965. (oldf (symbol-function 'calendar-cursor-to-date))
  8966. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8967. (point (point))
  8968. (mark (or (mark t) (point))))
  8969. (unless cmd
  8970. (user-error "No command associated with <%c>" char))
  8971. (unless (and (get-text-property point 'day)
  8972. (or (not (equal ?b char))
  8973. (get-text-property mark 'day)))
  8974. (user-error "Don't know which date to use for diary entry"))
  8975. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8976. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8977. (let ((calendar-mark-ring
  8978. (list (calendar-gregorian-from-absolute
  8979. (or (get-text-property mark 'day)
  8980. (get-text-property point 'day))))))
  8981. (unwind-protect
  8982. (progn
  8983. (fset 'calendar-cursor-to-date
  8984. (lambda (&optional error dummy)
  8985. (calendar-gregorian-from-absolute
  8986. (get-text-property point 'day))))
  8987. (call-interactively cmd))
  8988. (fset 'calendar-cursor-to-date oldf))))))
  8989. (defun org-agenda-execute-calendar-command (cmd)
  8990. "Execute a calendar command from the agenda with date from cursor."
  8991. (org-agenda-check-type t 'agenda)
  8992. (require 'diary-lib)
  8993. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8994. (user-error "Don't know which date to use for the calendar command"))
  8995. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8996. (point (point))
  8997. (date (calendar-gregorian-from-absolute
  8998. (get-text-property point 'day)))
  8999. ;; the following 2 vars are needed in the calendar
  9000. (displayed-month (car date))
  9001. (displayed-year (nth 2 date)))
  9002. (unwind-protect
  9003. (progn
  9004. (fset 'calendar-cursor-to-date
  9005. (lambda (&optional error dummy)
  9006. (calendar-gregorian-from-absolute
  9007. (get-text-property point 'day))))
  9008. (call-interactively cmd))
  9009. (fset 'calendar-cursor-to-date oldf))))
  9010. (defun org-agenda-phases-of-moon ()
  9011. "Display the phases of the moon for the 3 months around the cursor date."
  9012. (interactive)
  9013. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9014. (defun org-agenda-holidays ()
  9015. "Display the holidays for the 3 months around the cursor date."
  9016. (interactive)
  9017. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9018. (defvar calendar-longitude) ; defined in calendar.el
  9019. (defvar calendar-latitude) ; defined in calendar.el
  9020. (defvar calendar-location-name) ; defined in calendar.el
  9021. (defun org-agenda-sunrise-sunset (arg)
  9022. "Display sunrise and sunset for the cursor date.
  9023. Latitude and longitude can be specified with the variables
  9024. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9025. argument, latitude and longitude will be prompted for."
  9026. (interactive "P")
  9027. (require 'solar)
  9028. (let ((calendar-longitude (if arg nil calendar-longitude))
  9029. (calendar-latitude (if arg nil calendar-latitude))
  9030. (calendar-location-name
  9031. (if arg "the given coordinates" calendar-location-name)))
  9032. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9033. (defun org-agenda-goto-calendar ()
  9034. "Open the Emacs calendar with the date at the cursor."
  9035. (interactive)
  9036. (org-agenda-check-type t 'agenda)
  9037. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9038. (user-error "Don't know which date to open in calendar")))
  9039. (date (calendar-gregorian-from-absolute day))
  9040. (calendar-move-hook nil)
  9041. (calendar-view-holidays-initially-flag nil)
  9042. (calendar-view-diary-initially-flag nil))
  9043. (calendar)
  9044. (calendar-goto-date date)))
  9045. ;;;###autoload
  9046. (defun org-calendar-goto-agenda ()
  9047. "Compute the Org agenda for the calendar date displayed at the cursor.
  9048. This is a command that has to be installed in `calendar-mode-map'."
  9049. (interactive)
  9050. ;; Temporarily disable sticky agenda since user clearly wants to
  9051. ;; refresh view anyway.
  9052. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9053. (org-agenda-sticky nil))
  9054. (org-agenda-list nil (calendar-absolute-from-gregorian
  9055. (calendar-cursor-to-date))
  9056. nil)))
  9057. (defun org-agenda-convert-date ()
  9058. (interactive)
  9059. (org-agenda-check-type t 'agenda)
  9060. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9061. date s)
  9062. (unless day
  9063. (user-error "Don't know which date to convert"))
  9064. (setq date (calendar-gregorian-from-absolute day))
  9065. (setq s (concat
  9066. "Gregorian: " (calendar-date-string date) "\n"
  9067. "ISO: " (calendar-iso-date-string date) "\n"
  9068. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9069. "Julian: " (calendar-julian-date-string date) "\n"
  9070. "Astron. JD: " (calendar-astro-date-string date)
  9071. " (Julian date number at noon UTC)\n"
  9072. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9073. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9074. "French: " (calendar-french-date-string date) "\n"
  9075. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9076. "Mayan: " (calendar-mayan-date-string date) "\n"
  9077. "Coptic: " (calendar-coptic-date-string date) "\n"
  9078. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9079. "Persian: " (calendar-persian-date-string date) "\n"
  9080. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9081. (with-output-to-temp-buffer "*Dates*"
  9082. (princ s))
  9083. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9084. ;;; Bulk commands
  9085. (defun org-agenda-bulk-marked-p ()
  9086. "Non-nil when current entry is marked for bulk action."
  9087. (eq (get-char-property (point-at-bol) 'type)
  9088. 'org-marked-entry-overlay))
  9089. (defun org-agenda-bulk-mark (&optional arg)
  9090. "Mark entries for future bulk action.
  9091. When ARG is nil or one and region is not active then mark the
  9092. entry at point.
  9093. When ARG is nil or one and region is active then mark the entries
  9094. in the region.
  9095. When ARG is greater than one mark ARG lines."
  9096. (interactive "p")
  9097. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9098. (setq arg (count-lines (region-beginning) (region-end)))
  9099. (goto-char (region-beginning))
  9100. (deactivate-mark))
  9101. (dotimes (i (or arg 1))
  9102. (unless (org-get-at-bol 'org-agenda-diary-link)
  9103. (let* ((m (org-get-at-bol 'org-hd-marker))
  9104. ov)
  9105. (unless (org-agenda-bulk-marked-p)
  9106. (unless m (user-error "Nothing to mark at point"))
  9107. (push m org-agenda-bulk-marked-entries)
  9108. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9109. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9110. (org-get-todo-face "TODO")
  9111. 'evaporate)
  9112. (overlay-put ov 'type 'org-marked-entry-overlay))
  9113. (end-of-line 1)
  9114. (or (ignore-errors
  9115. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9116. (beginning-of-line 2))
  9117. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9118. (beginning-of-line 2)))))
  9119. (message "%d entries marked for bulk action"
  9120. (length org-agenda-bulk-marked-entries)))
  9121. (defun org-agenda-bulk-mark-all ()
  9122. "Mark all entries for future agenda bulk action."
  9123. (interactive)
  9124. (org-agenda-bulk-mark-regexp "."))
  9125. (defun org-agenda-bulk-mark-regexp (regexp)
  9126. "Mark entries matching REGEXP for future agenda bulk action."
  9127. (interactive "sMark entries matching regexp: ")
  9128. (let ((entries-marked 0) txt-at-point)
  9129. (save-excursion
  9130. (goto-char (point-min))
  9131. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9132. (while (and (re-search-forward regexp nil t)
  9133. (setq txt-at-point (get-text-property (point) 'txt)))
  9134. (if (get-char-property (point) 'invisible)
  9135. (beginning-of-line 2)
  9136. (when (string-match regexp txt-at-point)
  9137. (setq entries-marked (1+ entries-marked))
  9138. (call-interactively 'org-agenda-bulk-mark)))))
  9139. (unless entries-marked
  9140. (message "No entry matching this regexp."))))
  9141. (defun org-agenda-bulk-unmark (&optional arg)
  9142. "Unmark the entry at point for future bulk action."
  9143. (interactive "P")
  9144. (if arg
  9145. (org-agenda-bulk-unmark-all)
  9146. (cond ((org-agenda-bulk-marked-p)
  9147. (org-agenda-bulk-remove-overlays
  9148. (point-at-bol) (+ 2 (point-at-bol)))
  9149. (setq org-agenda-bulk-marked-entries
  9150. (delete (org-get-at-bol 'org-hd-marker)
  9151. org-agenda-bulk-marked-entries))
  9152. (end-of-line 1)
  9153. (or (ignore-errors
  9154. (goto-char (next-single-property-change (point) 'txt)))
  9155. (beginning-of-line 2))
  9156. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9157. (beginning-of-line 2))
  9158. (message "%d entries left marked for bulk action"
  9159. (length org-agenda-bulk-marked-entries)))
  9160. (t (message "No entry to unmark here")))))
  9161. (defun org-agenda-bulk-toggle-all ()
  9162. "Toggle all marks for bulk action."
  9163. (interactive)
  9164. (save-excursion
  9165. (goto-char (point-min))
  9166. (while (ignore-errors
  9167. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9168. (org-agenda-bulk-toggle))))
  9169. (defun org-agenda-bulk-toggle ()
  9170. "Toggle the mark at point for bulk action."
  9171. (interactive)
  9172. (if (org-agenda-bulk-marked-p)
  9173. (org-agenda-bulk-unmark)
  9174. (org-agenda-bulk-mark)))
  9175. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9176. "Remove the mark overlays between BEG and END in the agenda buffer.
  9177. BEG and END default to the buffer limits.
  9178. This only removes the overlays, it does not remove the markers
  9179. from the list in `org-agenda-bulk-marked-entries'."
  9180. (interactive)
  9181. (mapc (lambda (ov)
  9182. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9183. (delete-overlay ov)))
  9184. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9185. (defun org-agenda-bulk-unmark-all ()
  9186. "Remove all marks in the agenda buffer.
  9187. This will remove the markers and the overlays."
  9188. (interactive)
  9189. (if (null org-agenda-bulk-marked-entries)
  9190. (message "No entry to unmark")
  9191. (setq org-agenda-bulk-marked-entries nil)
  9192. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9193. (defcustom org-agenda-persistent-marks nil
  9194. "Non-nil means marked items will stay marked after a bulk action.
  9195. You can toggle this interactively by typing `p' when prompted for a
  9196. bulk action."
  9197. :group 'org-agenda
  9198. :version "24.1"
  9199. :type 'boolean)
  9200. (defun org-agenda-bulk-action (&optional arg)
  9201. "Execute an remote-editing action on all marked entries.
  9202. The prefix arg is passed through to the command if possible."
  9203. (interactive "P")
  9204. ;; When there is no mark, act on the agenda entry at point.
  9205. (if (not org-agenda-bulk-marked-entries)
  9206. (save-excursion (org-agenda-bulk-mark)))
  9207. (dolist (m org-agenda-bulk-marked-entries)
  9208. (unless (and (markerp m)
  9209. (marker-buffer m)
  9210. (buffer-live-p (marker-buffer m))
  9211. (marker-position m))
  9212. (user-error "Marker %s for bulk command is invalid" m)))
  9213. ;; Prompt for the bulk command.
  9214. (org-unlogged-message
  9215. (concat (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")
  9216. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9217. "[S]catter [f]unction [p]ersist-toggle "
  9218. (and org-agenda-bulk-custom-functions
  9219. (format " Custom: [%s]"
  9220. (mapconcat (lambda (f) (char-to-string (car f)))
  9221. org-agenda-bulk-custom-functions
  9222. "")))))
  9223. (catch 'exit
  9224. (let* ((org-log-refile (if org-log-refile 'time nil))
  9225. (entries (reverse org-agenda-bulk-marked-entries))
  9226. (org-overriding-default-time
  9227. (and (get-text-property (point) 'org-agenda-date-header)
  9228. (org-get-cursor-date)))
  9229. redo-at-end
  9230. cmd)
  9231. (pcase (read-char-exclusive)
  9232. (?p
  9233. (let ((org-agenda-persistent-marks
  9234. (not org-agenda-persistent-marks)))
  9235. (org-agenda-bulk-action)
  9236. (throw 'exit nil)))
  9237. (?$
  9238. (setq cmd #'org-agenda-archive))
  9239. (?A
  9240. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9241. ((or ?r ?w)
  9242. (let ((refile-location
  9243. (org-refile-get-location
  9244. "Refile to"
  9245. (marker-buffer (car entries))
  9246. org-refile-allow-creating-parent-nodes)))
  9247. (when (nth 3 refile-location)
  9248. (setcar (nthcdr 3 refile-location)
  9249. (move-marker
  9250. (make-marker)
  9251. (nth 3 refile-location)
  9252. (or (get-file-buffer (nth 1 refile-location))
  9253. (find-buffer-visiting (nth 1 refile-location))
  9254. (error "This should not happen")))))
  9255. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9256. (setq redo-at-end t)))
  9257. (?t
  9258. (let ((state (completing-read
  9259. "Todo state: "
  9260. (with-current-buffer (marker-buffer (car entries))
  9261. (mapcar #'list org-todo-keywords-1)))))
  9262. (setq cmd `(lambda ()
  9263. (let ((org-inhibit-blocking t)
  9264. (org-inhibit-logging 'note))
  9265. (org-agenda-todo ,state))))))
  9266. ((and (or ?- ?+) action)
  9267. (let ((tag (completing-read
  9268. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9269. (with-current-buffer (marker-buffer (car entries))
  9270. (delq nil
  9271. (mapcar (lambda (x) (and (stringp (car x)) x))
  9272. org-current-tag-alist))))))
  9273. (setq cmd
  9274. `(lambda ()
  9275. (org-agenda-set-tags ,tag
  9276. ,(if (eq action ?+) ''on ''off))))))
  9277. ((and (or ?s ?d) c)
  9278. (let* ((schedule? (eq c ?s))
  9279. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9280. (time
  9281. (and (not arg)
  9282. (let ((new (org-read-date
  9283. nil nil nil prompt org-overriding-default-time)))
  9284. ;; A "double plus" answer applies to every
  9285. ;; scheduled time. Do not turn it into
  9286. ;; a fixed date yet.
  9287. (if (string-match-p "\\`[ \t]*\\+\\+"
  9288. org-read-date-final-answer)
  9289. org-read-date-final-answer
  9290. new)))))
  9291. ;; Make sure to not prompt for a note when bulk
  9292. ;; rescheduling/resetting deadline as Org cannot cope with
  9293. ;; simultaneous notes. Besides, it could be annoying
  9294. ;; depending on the number of marked items.
  9295. (setq cmd
  9296. (if schedule?
  9297. `(lambda ()
  9298. (let ((org-log-reschedule
  9299. (and org-log-reschedule 'time)))
  9300. (org-agenda-schedule arg ,time)))
  9301. `(lambda ()
  9302. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9303. (org-agenda-deadline arg ,time)))))))
  9304. (?S
  9305. (unless (org-agenda-check-type nil 'agenda 'todo)
  9306. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9307. (let ((days (read-number
  9308. (format "Scatter tasks across how many %sdays: "
  9309. (if arg "week" ""))
  9310. 7)))
  9311. (setq cmd
  9312. `(lambda ()
  9313. (let ((distance (1+ (random ,days))))
  9314. (when arg
  9315. (let ((dist distance)
  9316. (day-of-week
  9317. (calendar-day-of-week
  9318. (calendar-gregorian-from-absolute (org-today)))))
  9319. (dotimes (i (1+ dist))
  9320. (while (member day-of-week org-agenda-weekend-days)
  9321. (cl-incf distance)
  9322. (cl-incf day-of-week)
  9323. (when (= day-of-week 7)
  9324. (setq day-of-week 0)))
  9325. (cl-incf day-of-week)
  9326. (when (= day-of-week 7)
  9327. (setq day-of-week 0)))))
  9328. ;; Silently fail when try to replan a sexp entry.
  9329. (ignore-errors
  9330. (let* ((date (calendar-gregorian-from-absolute
  9331. (+ (org-today) distance)))
  9332. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9333. (nth 2 date))))
  9334. (org-agenda-schedule nil time))))))))
  9335. (?f
  9336. (setq cmd
  9337. (intern
  9338. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9339. (action
  9340. (pcase (assoc action org-agenda-bulk-custom-functions)
  9341. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9342. (_ (user-error "Invalid bulk action: %c" action)))))
  9343. ;; Sort the markers, to make sure that parents are handled
  9344. ;; before children.
  9345. (setq entries (sort entries
  9346. (lambda (a b)
  9347. (cond
  9348. ((eq (marker-buffer a) (marker-buffer b))
  9349. (< (marker-position a) (marker-position b)))
  9350. (t
  9351. (string< (buffer-name (marker-buffer a))
  9352. (buffer-name (marker-buffer b))))))))
  9353. ;; Now loop over all markers and apply CMD.
  9354. (let ((processed 0)
  9355. (skipped 0))
  9356. (dolist (e entries)
  9357. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9358. (if (not pos)
  9359. (progn (message "Skipping removed entry at %s" e)
  9360. (cl-incf skipped))
  9361. (goto-char pos)
  9362. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9363. ;; `post-command-hook' is not run yet. We make sure any
  9364. ;; pending log note is processed.
  9365. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9366. (memq 'org-add-log-note post-command-hook))
  9367. (org-add-log-note))
  9368. (cl-incf processed))))
  9369. (when redo-at-end (org-agenda-redo))
  9370. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9371. (message "Acted on %d entries%s%s"
  9372. processed
  9373. (if (= skipped 0)
  9374. ""
  9375. (format ", skipped %d (disappeared before their turn)"
  9376. skipped))
  9377. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9378. (defun org-agenda-capture (&optional with-time)
  9379. "Call `org-capture' with the date at point.
  9380. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9381. current HH:MM time."
  9382. (interactive "P")
  9383. (if (not (eq major-mode 'org-agenda-mode))
  9384. (user-error "You cannot do this outside of agenda buffers")
  9385. (let ((org-overriding-default-time
  9386. (org-get-cursor-date (equal with-time 1))))
  9387. (call-interactively 'org-capture))))
  9388. ;;; Dragging agenda lines forward/backward
  9389. (defun org-agenda-reapply-filters ()
  9390. "Re-apply all agenda filters."
  9391. (mapcar
  9392. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9393. `((,org-agenda-tag-filter tag)
  9394. (,org-agenda-category-filter category)
  9395. (,org-agenda-regexp-filter regexp)
  9396. (,org-agenda-effort-filter effort)
  9397. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9398. (,(get 'org-agenda-category-filter :preset-filter) category)
  9399. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9400. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9401. (defun org-agenda-drag-line-forward (arg &optional backward)
  9402. "Drag an agenda line forward by ARG lines.
  9403. When the optional argument `backward' is non-nil, move backward."
  9404. (interactive "p")
  9405. (let ((inhibit-read-only t) lst line)
  9406. (if (or (not (get-text-property (point) 'txt))
  9407. (save-excursion
  9408. (dotimes (n arg)
  9409. (move-beginning-of-line (if backward 0 2))
  9410. (push (not (get-text-property (point) 'txt)) lst))
  9411. (delq nil lst)))
  9412. (message "Cannot move line forward")
  9413. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9414. (move-beginning-of-line 1)
  9415. (setq line (buffer-substring (point) end))
  9416. (delete-region (point) end)
  9417. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9418. (insert line)
  9419. (org-agenda-reapply-filters)
  9420. (org-agenda-mark-clocking-task)
  9421. (move-beginning-of-line 0)))))
  9422. (defun org-agenda-drag-line-backward (arg)
  9423. "Drag an agenda line backward by ARG lines."
  9424. (interactive "p")
  9425. (org-agenda-drag-line-forward arg t))
  9426. ;;; Flagging notes
  9427. (defun org-agenda-show-the-flagging-note ()
  9428. "Display the flagging note in the other window.
  9429. When called a second time in direct sequence, offer to remove the FLAGGING
  9430. tag and (if present) the flagging note."
  9431. (interactive)
  9432. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9433. (win (selected-window))
  9434. note heading newhead)
  9435. (unless hdmarker
  9436. (user-error "No linked entry at point"))
  9437. (if (and (eq this-command last-command)
  9438. (y-or-n-p "Unflag and remove any flagging note? "))
  9439. (progn
  9440. (org-agenda-remove-flag hdmarker)
  9441. (let ((win (get-buffer-window "*Flagging Note*")))
  9442. (and win (delete-window win)))
  9443. (message "Entry unflagged"))
  9444. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9445. (unless note
  9446. (user-error "No flagging note"))
  9447. (org-kill-new note)
  9448. (org-switch-to-buffer-other-window "*Flagging Note*")
  9449. (erase-buffer)
  9450. (insert note)
  9451. (goto-char (point-min))
  9452. (while (re-search-forward "\\\\n" nil t)
  9453. (replace-match "\n" t t))
  9454. (goto-char (point-min))
  9455. (select-window win)
  9456. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9457. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9458. tag and note")))))
  9459. (defun org-agenda-remove-flag (marker)
  9460. "Remove the FLAGGED tag and any flagging note in the entry."
  9461. (let (newhead)
  9462. (org-with-point-at marker
  9463. (org-toggle-tag "FLAGGED" 'off)
  9464. (org-entry-delete nil "THEFLAGGINGNOTE")
  9465. (setq newhead (org-get-heading)))
  9466. (org-agenda-change-all-lines newhead marker)
  9467. (message "Entry unflagged")))
  9468. (defun org-agenda-get-any-marker (&optional pos)
  9469. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9470. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9471. ;;; Appointment reminders
  9472. (defvar appt-time-msg-list) ; defined in appt.el
  9473. ;;;###autoload
  9474. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9475. "Activate appointments found in `org-agenda-files'.
  9476. With a `\\[universal-argument]' prefix, refresh the list of \
  9477. appointments.
  9478. If FILTER is t, interactively prompt the user for a regular
  9479. expression, and filter out entries that don't match it.
  9480. If FILTER is a string, use this string as a regular expression
  9481. for filtering entries out.
  9482. If FILTER is a function, filter out entries against which
  9483. calling the function returns nil. This function takes one
  9484. argument: an entry from `org-agenda-get-day-entries'.
  9485. FILTER can also be an alist with the car of each cell being
  9486. either `headline' or `category'. For example:
  9487. \\='((headline \"IMPORTANT\")
  9488. (category \"Work\"))
  9489. will only add headlines containing IMPORTANT or headlines
  9490. belonging to the \"Work\" category.
  9491. ARGS are symbols indicating what kind of entries to consider.
  9492. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9493. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9494. and :timestamp entries. See the docstring of `org-diary' for
  9495. details and examples.
  9496. If an entry has a APPT_WARNTIME property, its value will be used
  9497. to override `appt-message-warning-time'."
  9498. (interactive "P")
  9499. (when refresh (setq appt-time-msg-list nil))
  9500. (when (eq filter t)
  9501. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9502. (let* ((cnt 0) ; count added events
  9503. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9504. (org-agenda-new-buffers nil)
  9505. (org-deadline-warning-days 0)
  9506. ;; Do not use `org-today' here because appt only takes
  9507. ;; time and without date as argument, so it may pass wrong
  9508. ;; information otherwise
  9509. (today (org-date-to-gregorian
  9510. (time-to-days nil)))
  9511. (org-agenda-restrict nil)
  9512. (files (org-agenda-files 'unrestricted)) entries file
  9513. (org-agenda-buffer nil))
  9514. ;; Get all entries which may contain an appt
  9515. (org-agenda-prepare-buffers files)
  9516. (while (setq file (pop files))
  9517. (setq entries
  9518. (delq nil
  9519. (append entries
  9520. (apply 'org-agenda-get-day-entries
  9521. file today scope)))))
  9522. ;; Map thru entries and find if we should filter them out
  9523. (mapc
  9524. (lambda (x)
  9525. (let* ((evt (org-trim
  9526. (replace-regexp-in-string
  9527. org-link-bracket-re "\\3"
  9528. (or (get-text-property 1 'txt x) ""))))
  9529. (cat (get-text-property (1- (length x)) 'org-category x))
  9530. (tod (get-text-property 1 'time-of-day x))
  9531. (ok (or (null filter)
  9532. (and (stringp filter) (string-match filter evt))
  9533. (and (functionp filter) (funcall filter x))
  9534. (and (listp filter)
  9535. (let ((cat-filter (cadr (assq 'category filter)))
  9536. (evt-filter (cadr (assq 'headline filter))))
  9537. (or (and (stringp cat-filter)
  9538. (string-match cat-filter cat))
  9539. (and (stringp evt-filter)
  9540. (string-match evt-filter evt)))))))
  9541. (wrn (get-text-property 1 'warntime x)))
  9542. ;; FIXME: Shall we remove text-properties for the appt text?
  9543. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9544. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9545. (setq tod (concat "00" (number-to-string tod)))
  9546. (setq tod (when (string-match
  9547. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9548. (concat (match-string 1 tod) ":"
  9549. (match-string 2 tod))))
  9550. (when (appt-add tod evt wrn)
  9551. (setq cnt (1+ cnt))))))
  9552. entries)
  9553. (org-release-buffers org-agenda-new-buffers)
  9554. (if (eq cnt 0)
  9555. (message "No event to add")
  9556. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9557. (defun org-agenda-today-p (date)
  9558. "Non nil when DATE means today.
  9559. DATE is either a list of the form (month day year) or a number of
  9560. days as returned by `calendar-absolute-from-gregorian' or
  9561. `org-today'. This function considers `org-extend-today-until'
  9562. when defining today."
  9563. (eq (org-today)
  9564. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9565. (defun org-agenda-todo-yesterday (&optional arg)
  9566. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9567. (interactive "P")
  9568. (let* ((org-use-effective-time t)
  9569. (hour (nth 2 (decode-time (org-current-time))))
  9570. (org-extend-today-until (1+ hour)))
  9571. (org-agenda-todo arg)))
  9572. (provide 'org-agenda)
  9573. ;;; org-agenda.el ends here