org-agenda.el 408 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2020 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
  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 "Columns format"
  344. (const org-overriding-columns-format)
  345. (string :tag "Format"))
  346. (list :tag "Standard skipping condition"
  347. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  348. (const org-agenda-skip-function)
  349. (list
  350. (const :format "" quote)
  351. (list
  352. (choice
  353. :tag "Skipping range"
  354. (const :tag "Skip entry" org-agenda-skip-entry-if)
  355. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  356. (repeat :inline t :tag "Conditions for skipping"
  357. (choice
  358. :tag "Condition type"
  359. (list :tag "Regexp matches" :inline t
  360. (const :format "" regexp)
  361. (regexp))
  362. (list :tag "Regexp does not match" :inline t
  363. (const :format "" notregexp)
  364. (regexp))
  365. (list :tag "TODO state is" :inline t
  366. (const todo)
  367. (choice
  368. (const :tag "Any not-done state" todo)
  369. (const :tag "Any done state" done)
  370. (const :tag "Any state" any)
  371. (list :tag "Keyword list"
  372. (const :format "" quote)
  373. (repeat (string :tag "Keyword")))))
  374. (list :tag "TODO state is not" :inline t
  375. (const nottodo)
  376. (choice
  377. (const :tag "Any not-done state" todo)
  378. (const :tag "Any done state" done)
  379. (const :tag "Any state" any)
  380. (list :tag "Keyword list"
  381. (const :format "" quote)
  382. (repeat (string :tag "Keyword")))))
  383. (const :tag "scheduled" scheduled)
  384. (const :tag "not scheduled" notscheduled)
  385. (const :tag "deadline" deadline)
  386. (const :tag "no deadline" notdeadline)
  387. (const :tag "timestamp" timestamp)
  388. (const :tag "no timestamp" nottimestamp))))))
  389. (list :tag "Non-standard skipping condition"
  390. :value (org-agenda-skip-function)
  391. (const org-agenda-skip-function)
  392. (sexp :tag "Function or form (quoted!)"))
  393. (list :tag "Any variable"
  394. (variable :tag "Variable")
  395. (sexp :tag "Value (sexp)"))))
  396. "Selection of examples for agenda command settings.
  397. This will be spliced into the custom type of
  398. `org-agenda-custom-commands'.")
  399. (defcustom org-agenda-custom-commands
  400. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  401. "Custom commands for the agenda.
  402. \\<org-mode-map>
  403. These commands will be offered on the splash screen displayed by the
  404. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  405. (key desc type match settings files)
  406. key The key (one or more characters as a string) to be associated
  407. with the command.
  408. desc A description of the command, when omitted or nil, a default
  409. description is built using MATCH.
  410. type The command type, any of the following symbols:
  411. agenda The daily/weekly agenda.
  412. todo Entries with a specific TODO keyword, in all agenda files.
  413. search Entries containing search words entry or headline.
  414. tags Tags/Property/TODO match in all agenda files.
  415. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  416. todo-tree Sparse tree of specific TODO keyword in *current* file.
  417. tags-tree Sparse tree with all tags matches in *current* file.
  418. occur-tree Occur sparse tree for *current* file.
  419. ... A user-defined function.
  420. match What to search for:
  421. - a single keyword for TODO keyword searches
  422. - a tags/property/todo match expression for searches
  423. - a word search expression for text searches.
  424. - a regular expression for occur searches
  425. For all other commands, this should be the empty string.
  426. settings A list of option settings, similar to that in a let form, so like
  427. this: ((opt1 val1) (opt2 val2) ...). The values will be
  428. evaluated at the moment of execution, so quote them when needed.
  429. files A list of files to write the produced agenda buffer to with
  430. the command `org-store-agenda-views'.
  431. If a file name ends in \".html\", an HTML version of the buffer
  432. is written out. If it ends in \".ps\", a postscript version is
  433. produced. Otherwise, only the plain text is written to the file.
  434. You can also define a set of commands, to create a composite agenda buffer.
  435. In this case, an entry looks like this:
  436. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  437. where
  438. desc A description string to be displayed in the dispatcher menu.
  439. cmd An agenda command, similar to the above. However, tree commands
  440. are not allowed, but instead you can get agenda and global todo list.
  441. So valid commands for a set are:
  442. (agenda \"\" settings)
  443. (alltodo \"\" settings)
  444. (stuck \"\" settings)
  445. (todo \"match\" settings files)
  446. (search \"match\" settings files)
  447. (tags \"match\" settings files)
  448. (tags-todo \"match\" settings files)
  449. Each command can carry a list of options, and another set of options can be
  450. given for the whole set of commands. Individual command options take
  451. precedence over the general options.
  452. When using several characters as key to a command, the first characters
  453. are prefix commands. For the dispatcher to display useful information, you
  454. should provide a description for the prefix, like
  455. (setq org-agenda-custom-commands
  456. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  457. (\"hl\" tags \"+HOME+Lisa\")
  458. (\"hp\" tags \"+HOME+Peter\")
  459. (\"hk\" tags \"+HOME+Kim\")))"
  460. :group 'org-agenda-custom-commands
  461. :type `(repeat
  462. (choice :value ("x" "Describe command here" tags "" nil)
  463. (list :tag "Single command"
  464. (string :tag "Access Key(s) ")
  465. (option (string :tag "Description"))
  466. (choice
  467. (const :tag "Agenda" agenda)
  468. (const :tag "TODO list" alltodo)
  469. (const :tag "Search words" search)
  470. (const :tag "Stuck projects" stuck)
  471. (const :tag "Tags/Property match (all agenda files)" tags)
  472. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  473. (const :tag "TODO keyword search (all agenda files)" todo)
  474. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  475. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  476. (const :tag "Occur tree (current buffer)" occur-tree)
  477. (sexp :tag "Other, user-defined function"))
  478. (string :tag "Match (only for some commands)")
  479. ,org-agenda-custom-commands-local-options
  480. (option (repeat :tag "Export" (file :tag "Export to"))))
  481. (list :tag "Command series, all agenda files"
  482. (string :tag "Access Key(s)")
  483. (string :tag "Description ")
  484. (repeat :tag "Component"
  485. (choice
  486. (list :tag "Agenda"
  487. (const :format "" agenda)
  488. (const :tag "" :format "" "")
  489. ,org-agenda-custom-commands-local-options)
  490. (list :tag "TODO list (all keywords)"
  491. (const :format "" alltodo)
  492. (const :tag "" :format "" "")
  493. ,org-agenda-custom-commands-local-options)
  494. (list :tag "Search words"
  495. (const :format "" search)
  496. (string :tag "Match")
  497. ,org-agenda-custom-commands-local-options)
  498. (list :tag "Stuck projects"
  499. (const :format "" stuck)
  500. (const :tag "" :format "" "")
  501. ,org-agenda-custom-commands-local-options)
  502. (list :tag "Tags/Property match (all agenda files)"
  503. (const :format "" tags)
  504. (string :tag "Match")
  505. ,org-agenda-custom-commands-local-options)
  506. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  507. (const :format "" tags-todo)
  508. (string :tag "Match")
  509. ,org-agenda-custom-commands-local-options)
  510. (list :tag "TODO keyword search"
  511. (const :format "" todo)
  512. (string :tag "Match")
  513. ,org-agenda-custom-commands-local-options)
  514. (list :tag "Other, user-defined function"
  515. (symbol :tag "function")
  516. (string :tag "Match")
  517. ,org-agenda-custom-commands-local-options)))
  518. (repeat :tag "Settings for entire command set"
  519. (list (variable :tag "Any variable")
  520. (sexp :tag "Value")))
  521. (option (repeat :tag "Export" (file :tag "Export to"))))
  522. (cons :tag "Prefix key documentation"
  523. (string :tag "Access Key(s)")
  524. (string :tag "Description ")))))
  525. (defcustom org-agenda-query-register ?o
  526. "The register holding the current query string.
  527. The purpose of this is that if you construct a query string interactively,
  528. you can then use it to define a custom command."
  529. :group 'org-agenda-custom-commands
  530. :type 'character)
  531. (defcustom org-stuck-projects
  532. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  533. "How to identify stuck projects.
  534. This is a list of four items:
  535. 1. A tags/todo/property matcher string that is used to identify a project.
  536. See the manual for a description of tag and property searches.
  537. The entire tree below a headline matched by this is considered one project.
  538. 2. A list of TODO keywords identifying non-stuck projects.
  539. If the project subtree contains any headline with one of these todo
  540. keywords, the project is considered to be not stuck. If you specify
  541. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  542. 3. A list of tags identifying non-stuck projects.
  543. If the project subtree contains any headline with one of these tags,
  544. the project is considered to be not stuck. If you specify \"*\" as
  545. a tag, any tag will mark the project unstuck. Note that this is about
  546. the explicit presence of a tag somewhere in the subtree, inherited
  547. tags do not count here. If inherited tags make a project not stuck,
  548. use \"-TAG\" in the tags part of the matcher under (1.) above.
  549. 4. An arbitrary regular expression matching non-stuck projects.
  550. If the project turns out to be not stuck, search continues also in the
  551. subtree to see if any of the subtasks have project status.
  552. See also the variable `org-tags-match-list-sublevels' which applies
  553. to projects matched by this search as well.
  554. After defining this variable, you may use `org-agenda-list-stuck-projects'
  555. \(bound to `\\[org-agenda] #') to produce the list."
  556. :group 'org-agenda-custom-commands
  557. :type '(list
  558. (string :tag "Tags/TODO match to identify a project")
  559. (repeat :tag "Projects are *not* stuck if they have an entry with \
  560. TODO keyword any of" (string))
  561. (repeat :tag "Projects are *not* stuck if they have an entry with \
  562. TAG being any of" (string))
  563. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  564. the subtree")))
  565. (defgroup org-agenda-skip nil
  566. "Options concerning skipping parts of agenda files."
  567. :tag "Org Agenda Skip"
  568. :group 'org-agenda)
  569. (defcustom org-agenda-skip-function-global nil
  570. "Function to be called at each match during agenda construction.
  571. If this function returns nil, the current match should not be skipped.
  572. If the function decided to skip an agenda match, is must return the
  573. buffer position from which the search should be continued.
  574. This may also be a Lisp form, which will be evaluated.
  575. This variable will be applied to every agenda match, including
  576. tags/property searches and TODO lists. So try to make the test function
  577. do its checking as efficiently as possible. To implement a skipping
  578. condition just for specific agenda commands, use the variable
  579. `org-agenda-skip-function' which can be set in the options section
  580. of custom agenda commands."
  581. :group 'org-agenda-skip
  582. :type 'sexp)
  583. (defgroup org-agenda-daily/weekly nil
  584. "Options concerning the daily/weekly agenda."
  585. :tag "Org Agenda Daily/Weekly"
  586. :group 'org-agenda)
  587. (defgroup org-agenda-todo-list nil
  588. "Options concerning the global todo list agenda view."
  589. :tag "Org Agenda Todo List"
  590. :group 'org-agenda)
  591. (defgroup org-agenda-match-view nil
  592. "Options concerning the general tags/property/todo match agenda view."
  593. :tag "Org Agenda Match View"
  594. :group 'org-agenda)
  595. (defgroup org-agenda-search-view nil
  596. "Options concerning the search agenda view."
  597. :tag "Org Agenda Search View"
  598. :group 'org-agenda)
  599. (defvar org-agenda-archives-mode nil
  600. "Non-nil means the agenda will include archived items.
  601. If this is the symbol `trees', trees in the selected agenda scope
  602. that are marked with the ARCHIVE tag will be included anyway. When this is
  603. t, also all archive files associated with the current selection of agenda
  604. files will be included.")
  605. (defcustom org-agenda-restriction-lock-highlight-subtree t
  606. "Non-nil means highlight the whole subtree when restriction is active.
  607. Otherwise only highlight the headline. Highlighting the whole subtree is
  608. useful to ensure no edits happen beyond the restricted region."
  609. :group 'org-agenda
  610. :type 'boolean)
  611. (defcustom org-agenda-skip-comment-trees t
  612. "Non-nil means skip trees that start with the COMMENT keyword.
  613. When nil, these trees are also scanned by agenda commands."
  614. :group 'org-agenda-skip
  615. :type 'boolean)
  616. (defcustom org-agenda-todo-list-sublevels t
  617. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  618. When nil, the sublevels of a TODO entry are not checked, resulting in
  619. potentially much shorter TODO lists."
  620. :group 'org-agenda-skip
  621. :group 'org-agenda-todo-list
  622. :type 'boolean)
  623. (defcustom org-agenda-todo-ignore-with-date nil
  624. "Non-nil means don't show entries with a date in the global todo list.
  625. You can use this if you prefer to mark mere appointments with a TODO keyword,
  626. but don't want them to show up in the TODO list.
  627. When this is set, it also covers deadlines and scheduled items, the settings
  628. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  629. will be ignored.
  630. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  631. :group 'org-agenda-skip
  632. :group 'org-agenda-todo-list
  633. :type 'boolean)
  634. (defcustom org-agenda-todo-ignore-timestamp nil
  635. "Non-nil means don't show entries with a timestamp.
  636. This applies when creating the global todo list.
  637. Valid values are:
  638. past Don't show entries for today or in the past.
  639. future Don't show entries with a timestamp in the future.
  640. The idea behind this is that if it has a future
  641. timestamp, you don't want to think about it until the
  642. date.
  643. all Don't show any entries with a timestamp in the global todo list.
  644. The idea behind this is that by setting a timestamp, you
  645. have already \"taken care\" of this item.
  646. This variable can also have an integer as a value. If positive (N),
  647. todos with a timestamp N or more days in the future will be ignored. If
  648. negative (-N), todos with a timestamp N or more days in the past will be
  649. ignored. If 0, todos with a timestamp either today or in the future will
  650. be ignored. For example, a value of -1 will exclude todos with a
  651. timestamp in the past (yesterday or earlier), while a value of 7 will
  652. exclude todos with a timestamp a week or more in the future.
  653. See also `org-agenda-todo-ignore-with-date'.
  654. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  655. to make his option also apply to the tags-todo list."
  656. :group 'org-agenda-skip
  657. :group 'org-agenda-todo-list
  658. :version "24.1"
  659. :type '(choice
  660. (const :tag "Ignore future timestamp todos" future)
  661. (const :tag "Ignore past or present timestamp todos" past)
  662. (const :tag "Ignore all timestamp todos" all)
  663. (const :tag "Show timestamp todos" nil)
  664. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  665. (defcustom org-agenda-todo-ignore-scheduled nil
  666. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  667. This applies when creating the global todo list.
  668. Valid values are:
  669. past Don't show entries scheduled today or in the past.
  670. future Don't show entries scheduled in the future.
  671. The idea behind this is that by scheduling it, you don't want to
  672. think about it until the scheduled date.
  673. all Don't show any scheduled entries in the global todo list.
  674. The idea behind this is that by scheduling it, you have already
  675. \"taken care\" of this item.
  676. t Same as `all', for backward compatibility.
  677. This variable can also have an integer as a value. See
  678. `org-agenda-todo-ignore-timestamp' for more details.
  679. See also `org-agenda-todo-ignore-with-date'.
  680. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  681. to make his option also apply to the tags-todo list."
  682. :group 'org-agenda-skip
  683. :group 'org-agenda-todo-list
  684. :type '(choice
  685. (const :tag "Ignore future-scheduled todos" future)
  686. (const :tag "Ignore past- or present-scheduled todos" past)
  687. (const :tag "Ignore all scheduled todos" all)
  688. (const :tag "Ignore all scheduled todos (compatibility)" t)
  689. (const :tag "Show scheduled todos" nil)
  690. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  691. (defcustom org-agenda-todo-ignore-deadlines nil
  692. "Non-nil means ignore some deadline TODO items when making TODO list.
  693. There are different motivations for using different values, please think
  694. carefully when configuring this variable.
  695. This applies when creating the global TODO list.
  696. Valid values are:
  697. near Don't show near deadline entries. A deadline is near when it is
  698. closer than `org-deadline-warning-days' days. The idea behind this
  699. is that such items will appear in the agenda anyway.
  700. far Don't show TODO entries where a deadline has been defined, but
  701. is not going to happen anytime soon. This is useful if you want to use
  702. the TODO list to figure out what to do now.
  703. past Don't show entries with a deadline timestamp for today or in the past.
  704. future Don't show entries with a deadline timestamp in the future, not even
  705. when they become `near' ones. Use it with caution.
  706. all Ignore all TODO entries that do have a deadline.
  707. t Same as `near', for backward compatibility.
  708. This variable can also have an integer as a value. See
  709. `org-agenda-todo-ignore-timestamp' for more details.
  710. See also `org-agenda-todo-ignore-with-date'.
  711. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  712. to make his option also apply to the tags-todo list."
  713. :group 'org-agenda-skip
  714. :group 'org-agenda-todo-list
  715. :type '(choice
  716. (const :tag "Ignore near deadlines" near)
  717. (const :tag "Ignore near deadlines (compatibility)" t)
  718. (const :tag "Ignore far deadlines" far)
  719. (const :tag "Ignore all TODOs with a deadlines" all)
  720. (const :tag "Show all TODOs, even if they have a deadline" nil)
  721. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  722. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  723. "Time unit to use when possibly ignoring an agenda item.
  724. See the docstring of various `org-agenda-todo-ignore-*' options.
  725. The default is to compare time stamps using days. An item is thus
  726. considered to be in the future if it is at least one day after today.
  727. Non-nil means to compare time stamps using seconds. An item is then
  728. considered future if it has a time value later than current time."
  729. :group 'org-agenda-skip
  730. :group 'org-agenda-todo-list
  731. :version "24.4"
  732. :package-version '(Org . "8.0")
  733. :type '(choice
  734. (const :tag "Compare time with days" nil)
  735. (const :tag "Compare time with seconds" t)))
  736. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  737. "Non-nil means honor todo-list ignores options also in tags-todo search.
  738. The variables
  739. `org-agenda-todo-ignore-with-date',
  740. `org-agenda-todo-ignore-timestamp',
  741. `org-agenda-todo-ignore-scheduled',
  742. `org-agenda-todo-ignore-deadlines'
  743. make the global TODO list skip entries that have time stamps of certain
  744. kinds. If this option is set, the same options will also apply for the
  745. tags-todo search, which is the general tags/property matcher
  746. restricted to unfinished TODO entries only."
  747. :group 'org-agenda-skip
  748. :group 'org-agenda-todo-list
  749. :group 'org-agenda-match-view
  750. :type 'boolean)
  751. (defcustom org-agenda-skip-scheduled-if-done nil
  752. "Non-nil means don't show scheduled items in agenda when they are done.
  753. This is relevant for the daily/weekly agenda, not for the TODO list. It
  754. applies only to the actual date of the scheduling. Warnings about an item
  755. with a past scheduling dates are always turned off when the item is DONE."
  756. :group 'org-agenda-skip
  757. :group 'org-agenda-daily/weekly
  758. :type 'boolean)
  759. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  760. "Non-nil means skip scheduling line if same entry shows because of deadline.
  761. In the agenda of today, an entry can show up multiple times
  762. because it is both scheduled and has a nearby deadline, and maybe
  763. a plain time stamp as well.
  764. When this variable is nil, the entry will be shown several times.
  765. When set to t, then only the deadline is shown and the fact that
  766. the entry is scheduled today or was scheduled previously is not
  767. shown.
  768. When set to the symbol `not-today', skip scheduled previously,
  769. but not scheduled today.
  770. When set to the symbol `repeated-after-deadline', skip scheduled
  771. items if they are repeated beyond the current deadline."
  772. :group 'org-agenda-skip
  773. :group 'org-agenda-daily/weekly
  774. :type '(choice
  775. (const :tag "Never" nil)
  776. (const :tag "Always" t)
  777. (const :tag "Not when scheduled today" not-today)
  778. (const :tag "When repeated past deadline" repeated-after-deadline)))
  779. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  780. "Non-nil means skip timestamp line if same entry shows because of deadline.
  781. In the agenda of today, an entry can show up multiple times
  782. because it has both a plain timestamp and has a nearby deadline.
  783. When this variable is t, then only the deadline is shown and the
  784. fact that the entry has a timestamp for or including today is not
  785. shown. When this variable is nil, the entry will be shown
  786. several times."
  787. :group 'org-agenda-skip
  788. :group 'org-agenda-daily/weekly
  789. :version "24.1"
  790. :type '(choice
  791. (const :tag "Never" nil)
  792. (const :tag "Always" t)))
  793. (defcustom org-agenda-skip-deadline-if-done nil
  794. "Non-nil means don't show deadlines when the corresponding item is done.
  795. When nil, the deadline is still shown and should give you a happy feeling.
  796. This is relevant for the daily/weekly agenda. It applies only to the
  797. actual date of the deadline. Warnings about approaching and past-due
  798. deadlines are always turned off when the item is DONE."
  799. :group 'org-agenda-skip
  800. :group 'org-agenda-daily/weekly
  801. :type 'boolean)
  802. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  803. "Non-nil means skip deadline prewarning when entry is also scheduled.
  804. This will apply on all days where a prewarning for the deadline would
  805. be shown, but not at the day when the entry is actually due. On that day,
  806. the deadline will be shown anyway.
  807. This variable may be set to nil, t, the symbol `pre-scheduled',
  808. or a number which will then give the number of days before the actual
  809. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  810. eliminates the deadline prewarning only prior to the scheduled date.
  811. This can be used in a workflow where the first showing of the deadline will
  812. trigger you to schedule it, and then you don't want to be reminded of it
  813. because you will take care of it on the day when scheduled."
  814. :group 'org-agenda-skip
  815. :group 'org-agenda-daily/weekly
  816. :version "24.1"
  817. :type '(choice
  818. (const :tag "Always show prewarning" nil)
  819. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  820. (const :tag "Remove prewarning if entry is scheduled" t)
  821. (integer :tag "Restart prewarning N days before deadline")))
  822. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  823. "Non-nil means skip scheduled delay when entry also has a deadline.
  824. This variable may be set to nil, t, the symbol `post-deadline',
  825. or a number which will then give the number of days after the actual
  826. scheduled date when the delay should expire. The symbol `post-deadline'
  827. eliminates the schedule delay when the date is posterior to the deadline."
  828. :group 'org-agenda-skip
  829. :group 'org-agenda-daily/weekly
  830. :version "24.4"
  831. :package-version '(Org . "8.0")
  832. :type '(choice
  833. (const :tag "Always honor delay" nil)
  834. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  835. (const :tag "Ignore delay if entry has a deadline" t)
  836. (integer :tag "Honor delay up until N days after the scheduled date")))
  837. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  838. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  839. When non-nil, after the search for timestamps has matched once in an
  840. entry, the rest of the entry will not be searched."
  841. :group 'org-agenda-skip
  842. :type 'boolean)
  843. (defcustom org-agenda-skip-timestamp-if-done nil
  844. "Non-nil means don't select item by timestamp or -range if it is DONE."
  845. :group 'org-agenda-skip
  846. :group 'org-agenda-daily/weekly
  847. :type 'boolean)
  848. (defcustom org-agenda-dim-blocked-tasks t
  849. "Non-nil means dim blocked tasks in the agenda display.
  850. This causes some overhead during agenda construction, but if you
  851. have turned on `org-enforce-todo-dependencies',
  852. `org-enforce-todo-checkbox-dependencies', or any other blocking
  853. mechanism, this will create useful feedback in the agenda.
  854. Instead of t, this variable can also have the value `invisible'.
  855. Then blocked tasks will be invisible and only become visible when
  856. they become unblocked. An exemption to this behavior is when a task is
  857. blocked because of unchecked checkboxes below it. Since checkboxes do
  858. not show up in the agenda views, making this task invisible you remove any
  859. trace from agenda views that there is something to do. Therefore, a task
  860. that is blocked because of checkboxes will never be made invisible, it
  861. will only be dimmed."
  862. :group 'org-agenda-daily/weekly
  863. :group 'org-agenda-todo-list
  864. :version "24.3"
  865. :type '(choice
  866. (const :tag "Do not dim" nil)
  867. (const :tag "Dim to a gray face" t)
  868. (const :tag "Make invisible" invisible)))
  869. (defgroup org-agenda-startup nil
  870. "Options concerning initial settings in the Agenda in Org Mode."
  871. :tag "Org Agenda Startup"
  872. :group 'org-agenda)
  873. (defcustom org-agenda-menu-show-matcher t
  874. "Non-nil means show the match string in the agenda dispatcher menu.
  875. When nil, the matcher string is not shown, but is put into the help-echo
  876. property so than moving the mouse over the command shows it.
  877. Setting it to nil is good if matcher strings are very long and/or if
  878. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  879. :group 'org-agenda
  880. :version "24.1"
  881. :type 'boolean)
  882. (defcustom org-agenda-menu-two-columns nil
  883. "Non-nil means, use two columns to show custom commands in the dispatcher.
  884. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  885. to nil."
  886. :group 'org-agenda
  887. :version "24.1"
  888. :type 'boolean)
  889. (defcustom org-agenda-finalize-hook nil
  890. "Hook run just before displaying an agenda buffer.
  891. The buffer is still writable when the hook is called.
  892. You can modify some of the buffer substrings but you should be
  893. extra careful not to modify the text properties of the agenda
  894. headlines as the agenda display heavily relies on them."
  895. :group 'org-agenda-startup
  896. :type 'hook)
  897. (defcustom org-agenda-mouse-1-follows-link nil
  898. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  899. A longer mouse click will still set point. Needs to be set
  900. before org.el is loaded."
  901. :group 'org-agenda-startup
  902. :type 'boolean)
  903. (defcustom org-agenda-start-with-follow-mode nil
  904. "The initial value of follow mode in a newly created agenda window."
  905. :group 'org-agenda-startup
  906. :type 'boolean)
  907. (defcustom org-agenda-follow-indirect nil
  908. "Non-nil means `org-agenda-follow-mode' displays only the
  909. current item's tree, in an indirect buffer."
  910. :group 'org-agenda
  911. :version "24.1"
  912. :type 'boolean)
  913. (defcustom org-agenda-show-outline-path t
  914. "Non-nil means show outline path in echo area after line motion."
  915. :group 'org-agenda-startup
  916. :type 'boolean)
  917. (defcustom org-agenda-start-with-entry-text-mode nil
  918. "The initial value of entry-text-mode in a newly created agenda window."
  919. :group 'org-agenda-startup
  920. :type 'boolean)
  921. (defcustom org-agenda-entry-text-maxlines 5
  922. "Number of text lines to be added when `E' is pressed in the agenda.
  923. Note that this variable only used during agenda display. To add entry text
  924. when exporting the agenda, configure the variable
  925. `org-agenda-add-entry-text-maxlines'."
  926. :group 'org-agenda
  927. :type 'integer)
  928. (defcustom org-agenda-entry-text-exclude-regexps nil
  929. "List of regular expressions to clean up entry text.
  930. The complete matches of all regular expressions in this list will be
  931. removed from entry text before it is shown in the agenda."
  932. :group 'org-agenda
  933. :type '(repeat (regexp)))
  934. (defcustom org-agenda-entry-text-leaders " > "
  935. "Text prepended to the entry text in agenda buffers."
  936. :version "24.4"
  937. :package-version '(Org . "8.0")
  938. :group 'org-agenda
  939. :type 'string)
  940. (defvar org-agenda-entry-text-cleanup-hook nil
  941. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  942. This cleanup is done in a temporary buffer, so the function may inspect and
  943. change the entire buffer.
  944. Some default stuff like drawers and scheduling/deadline dates will already
  945. have been removed when this is called, as will any matches for regular
  946. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  947. (defvar org-agenda-include-inactive-timestamps nil
  948. "Non-nil means include inactive time stamps in agenda.
  949. Dynamically scoped.")
  950. (defgroup org-agenda-windows nil
  951. "Options concerning the windows used by the Agenda in Org Mode."
  952. :tag "Org Agenda Windows"
  953. :group 'org-agenda)
  954. (defcustom org-agenda-window-setup 'reorganize-frame
  955. "How the agenda buffer should be displayed.
  956. Possible values for this option are:
  957. current-window Show agenda in the current window, keeping all other windows.
  958. other-window Use `switch-to-buffer-other-window' to display agenda.
  959. only-window Show agenda, deleting all other windows.
  960. reorganize-frame Show only two windows on the current frame, the current
  961. window and the agenda.
  962. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  963. Also, when exiting the agenda, kill that frame.
  964. See also the variable `org-agenda-restore-windows-after-quit'."
  965. :group 'org-agenda-windows
  966. :type '(choice
  967. (const current-window)
  968. (const other-frame)
  969. (const other-window)
  970. (const only-window)
  971. (const reorganize-frame)))
  972. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  973. "The min and max height of the agenda window as a fraction of frame height.
  974. The value of the variable is a cons cell with two numbers between 0 and 1.
  975. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  976. :group 'org-agenda-windows
  977. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  978. (defcustom org-agenda-restore-windows-after-quit nil
  979. "Non-nil means restore window configuration upon exiting agenda.
  980. Before the window configuration is changed for displaying the agenda,
  981. the current status is recorded. When the agenda is exited with
  982. `q' or `x' and this option is set, the old state is restored. If
  983. `org-agenda-window-setup' is `other-frame', the value of this
  984. option will be ignored."
  985. :group 'org-agenda-windows
  986. :type 'boolean)
  987. (defcustom org-agenda-span 'week
  988. "Number of days to include in overview display.
  989. Can be day, week, month, year, or any number of days.
  990. Custom commands can set this variable in the options section."
  991. :group 'org-agenda-daily/weekly
  992. :type '(choice (const :tag "Day" day)
  993. (const :tag "Week" week)
  994. (const :tag "Fortnight" fortnight)
  995. (const :tag "Month" month)
  996. (const :tag "Year" year)
  997. (integer :tag "Custom")))
  998. (defcustom org-agenda-start-on-weekday 1
  999. "Non-nil means start the overview always on the specified weekday.
  1000. 0 denotes Sunday, 1 denotes Monday, etc.
  1001. When nil, always start on the current day.
  1002. Custom commands can set this variable in the options section."
  1003. :group 'org-agenda-daily/weekly
  1004. :type '(choice (const :tag "Today" nil)
  1005. (integer :tag "Weekday No.")))
  1006. (defcustom org-agenda-show-all-dates t
  1007. "Non-nil means `org-agenda' shows every day in the selected range.
  1008. When nil, only the days which actually have entries are shown."
  1009. :group 'org-agenda-daily/weekly
  1010. :type 'boolean)
  1011. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1012. "Format string for displaying dates in the agenda.
  1013. Used by the daily/weekly agenda. This should be a format string
  1014. understood by `format-time-string', or a function returning the
  1015. formatted date as a string. The function must take a single
  1016. argument, a calendar-style date list like (month day year)."
  1017. :group 'org-agenda-daily/weekly
  1018. :type '(choice
  1019. (string :tag "Format string")
  1020. (function :tag "Function")))
  1021. (defun org-agenda-end-of-line ()
  1022. "Go to the end of visible line."
  1023. (interactive)
  1024. (goto-char (line-end-position)))
  1025. (defun org-agenda-format-date-aligned (date)
  1026. "Format a DATE string for display in the daily/weekly agenda.
  1027. This function makes sure that dates are aligned for easy reading."
  1028. (require 'cal-iso)
  1029. (let* ((dayname (calendar-day-name date))
  1030. (day (cadr date))
  1031. (day-of-week (calendar-day-of-week date))
  1032. (month (car date))
  1033. (monthname (calendar-month-name month))
  1034. (year (nth 2 date))
  1035. (iso-week (org-days-to-iso-week
  1036. (calendar-absolute-from-gregorian date)))
  1037. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1038. (1- year))
  1039. ((and (= month 12) (<= iso-week 1))
  1040. (1+ year))
  1041. (t year)))
  1042. (weekstring (if (= day-of-week 1)
  1043. (format " W%02d" iso-week)
  1044. "")))
  1045. (format "%-10s %2d %s %4d%s"
  1046. dayname day monthname year weekstring)))
  1047. (defcustom org-agenda-time-leading-zero nil
  1048. "Non-nil means use leading zero for military times in agenda.
  1049. For example, 9:30am would become 09:30 rather than 9:30."
  1050. :group 'org-agenda-daily/weekly
  1051. :version "24.1"
  1052. :type 'boolean)
  1053. (defcustom org-agenda-timegrid-use-ampm nil
  1054. "When set, show AM/PM style timestamps on the timegrid."
  1055. :group 'org-agenda
  1056. :version "24.1"
  1057. :type 'boolean)
  1058. (defun org-agenda-time-of-day-to-ampm (time)
  1059. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1060. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1061. (minute (substring time -2))
  1062. (ampm "am"))
  1063. (cond
  1064. ((equal hour-number 12)
  1065. (setq ampm "pm"))
  1066. ((> hour-number 12)
  1067. (setq ampm "pm")
  1068. (setq hour-number (- hour-number 12))))
  1069. (concat
  1070. (if org-agenda-time-leading-zero
  1071. (format "%02d" hour-number)
  1072. (format "%02s" (number-to-string hour-number)))
  1073. ":" minute ampm)))
  1074. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1075. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1076. (if org-agenda-timegrid-use-ampm
  1077. (org-agenda-time-of-day-to-ampm time)
  1078. time))
  1079. (defcustom org-agenda-weekend-days '(6 0)
  1080. "Which days are weekend?
  1081. These days get the special face `org-agenda-date-weekend' in the agenda."
  1082. :group 'org-agenda-daily/weekly
  1083. :type '(set :greedy t
  1084. (const :tag "Monday" 1)
  1085. (const :tag "Tuesday" 2)
  1086. (const :tag "Wednesday" 3)
  1087. (const :tag "Thursday" 4)
  1088. (const :tag "Friday" 5)
  1089. (const :tag "Saturday" 6)
  1090. (const :tag "Sunday" 0)))
  1091. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1092. "Non-nil means jump to today when moving a past date forward in time.
  1093. When using S-right in the agenda to move a date forward, and the date
  1094. stamp currently points to the past, the first key press will move it
  1095. to today. When nil, just move one day forward even if the date stays
  1096. in the past."
  1097. :group 'org-agenda-daily/weekly
  1098. :version "24.1"
  1099. :type 'boolean)
  1100. (defcustom org-agenda-include-diary nil
  1101. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1102. Custom commands can set this variable in the options section."
  1103. :group 'org-agenda-daily/weekly
  1104. :type 'boolean)
  1105. (defcustom org-agenda-include-deadlines t
  1106. "If non-nil, include entries within their deadline warning period.
  1107. Custom commands can set this variable in the options section."
  1108. :group 'org-agenda-daily/weekly
  1109. :version "24.1"
  1110. :type 'boolean)
  1111. (defcustom org-agenda-show-future-repeats t
  1112. "Non-nil shows repeated entries in the future part of the agenda.
  1113. When set to the symbol `next' only the first future repeat is shown."
  1114. :group 'org-agenda-daily/weekly
  1115. :type '(choice
  1116. (const :tag "Show all repeated entries" t)
  1117. (const :tag "Show next repeated entry" next)
  1118. (const :tag "Do not show repeated entries" nil))
  1119. :version "26.1"
  1120. :package-version '(Org . "9.1")
  1121. :safe #'symbolp)
  1122. (defcustom org-agenda-prefer-last-repeat nil
  1123. "Non-nil sets date for repeated entries to their last repeat.
  1124. When nil, display SCHEDULED and DEADLINE dates at their base
  1125. date, and in today's agenda, as a reminder. Display plain
  1126. time-stamps, on the other hand, at every repeat date in the past
  1127. in addition to the base date.
  1128. When non-nil, show a repeated entry at its latest repeat date,
  1129. possibly being today even if it wasn't marked as done. This
  1130. setting is useful if you do not always mark repeated entries as
  1131. done and, yet, consider that reaching repeat date starts the task
  1132. anew.
  1133. When set to a list of strings, prefer last repeats only for
  1134. entries with these TODO keywords."
  1135. :group 'org-agenda-daily/weekly
  1136. :type '(choice
  1137. (const :tag "Prefer last repeat" t)
  1138. (const :tag "Prefer base date" nil)
  1139. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1140. (string :tag "TODO keyword")))
  1141. :version "26.1"
  1142. :package-version '(Org . "9.1")
  1143. :safe (lambda (x) (or (booleanp x) (consp x))))
  1144. (defcustom org-scheduled-past-days 10000
  1145. "Number of days to continue listing scheduled items not marked DONE.
  1146. When an item is scheduled on a date, it shows up in the agenda on
  1147. this day and will be listed until it is marked done or for the
  1148. number of days given here."
  1149. :group 'org-agenda-daily/weekly
  1150. :type 'integer
  1151. :safe 'integerp)
  1152. (defcustom org-deadline-past-days 10000
  1153. "Number of days to warn about missed deadlines.
  1154. When an item has deadline on a date, it shows up in the agenda on
  1155. this day and will appear as a reminder until it is marked DONE or
  1156. for the number of days given here."
  1157. :group 'org-agenda-daily/weekly
  1158. :type 'integer
  1159. :version "26.1"
  1160. :package-version '(Org . "9.1")
  1161. :safe 'integerp)
  1162. (defcustom org-agenda-log-mode-items '(closed clock)
  1163. "List of items that should be shown in agenda log mode.
  1164. \\<org-agenda-mode-map>\
  1165. This list may contain the following symbols:
  1166. closed Show entries that have been closed on that day.
  1167. clock Show entries that have received clocked time on that day.
  1168. state Show all logged state changes.
  1169. Note that instead of changing this variable, you can also press \
  1170. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1171. the agenda to display all available LOG items temporarily."
  1172. :group 'org-agenda-daily/weekly
  1173. :type '(set :greedy t (const closed) (const clock) (const state)))
  1174. (defcustom org-agenda-clock-consistency-checks
  1175. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1176. :gap-ok-around ("4:00")
  1177. :default-face ((:background "DarkRed") (:foreground "white"))
  1178. :overlap-face nil :gap-face nil :no-end-time-face nil
  1179. :long-face nil :short-face nil)
  1180. "This is a property list, with the following keys:
  1181. :max-duration Mark clocking chunks that are longer than this time.
  1182. This is a time string like \"HH:MM\", or the number
  1183. of minutes as an integer.
  1184. :min-duration Mark clocking chunks that are shorter that this.
  1185. This is a time string like \"HH:MM\", or the number
  1186. of minutes as an integer.
  1187. :max-gap Mark gaps between clocking chunks that are longer than
  1188. this duration. A number of minutes, or a string
  1189. like \"HH:MM\".
  1190. :gap-ok-around List of times during the day which are usually not working
  1191. times. When a gap is detected, but the gap contains any
  1192. of these times, the gap is *not* reported. For example,
  1193. if this is (\"4:00\" \"13:00\") then gaps that contain
  1194. 4:00 in the morning (i.e. the night) and 13:00
  1195. (i.e. a typical lunch time) do not cause a warning.
  1196. You should have at least one time during the night in this
  1197. list, or otherwise the first task each morning will trigger
  1198. a warning because it follows a long gap.
  1199. Furthermore, the following properties can be used to define faces for
  1200. issue display.
  1201. :default-face the default face, if the specific face is undefined
  1202. :overlap-face face for overlapping clocks
  1203. :gap-face face for gaps between clocks
  1204. :no-end-time-face face for incomplete clocks
  1205. :long-face face for clock intervals that are too long
  1206. :short-face face for clock intervals that are too short"
  1207. :group 'org-agenda-daily/weekly
  1208. :group 'org-clock
  1209. :version "24.1"
  1210. :type 'plist)
  1211. (defcustom org-agenda-log-mode-add-notes t
  1212. "Non-nil means add first line of notes to log entries in agenda views.
  1213. If a log item like a state change or a clock entry is associated with
  1214. notes, the first line of these notes will be added to the entry in the
  1215. agenda display."
  1216. :group 'org-agenda-daily/weekly
  1217. :type 'boolean)
  1218. (defcustom org-agenda-start-with-log-mode nil
  1219. "The initial value of log-mode in a newly created agenda window.
  1220. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1221. explanations on the possible values."
  1222. :group 'org-agenda-startup
  1223. :group 'org-agenda-daily/weekly
  1224. :type '(choice (const :tag "Don't show log items" nil)
  1225. (const :tag "Show only log items" only)
  1226. (const :tag "Show all possible log items" clockcheck)
  1227. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1228. (choice (const :tag "Show closed log items" closed)
  1229. (const :tag "Show clocked log items" clock)
  1230. (const :tag "Show all logged state changes" state)))))
  1231. (defcustom org-agenda-start-with-clockreport-mode nil
  1232. "The initial value of clockreport-mode in a newly created agenda window."
  1233. :group 'org-agenda-startup
  1234. :group 'org-agenda-daily/weekly
  1235. :type 'boolean)
  1236. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1237. "Property list with parameters for the clocktable in clockreport mode.
  1238. This is the display mode that shows a clock table in the daily/weekly
  1239. agenda, the properties for this dynamic block can be set here.
  1240. The usual clocktable parameters are allowed here, but you cannot set
  1241. the properties :name, :tstart, :tend, :block, and :scope - these will
  1242. be overwritten to make sure the content accurately reflects the
  1243. current display in the agenda."
  1244. :group 'org-agenda-daily/weekly
  1245. :type 'plist)
  1246. (defvaralias 'org-agenda-search-view-search-words-only
  1247. 'org-agenda-search-view-always-boolean)
  1248. (defcustom org-agenda-search-view-always-boolean nil
  1249. "Non-nil means the search string is interpreted as individual parts.
  1250. The search string for search view can either be interpreted as a phrase,
  1251. or as a list of snippets that define a boolean search for a number of
  1252. strings.
  1253. When this is non-nil, the string will be split on whitespace, and each
  1254. snippet will be searched individually, and all must match in order to
  1255. select an entry. A snippet is then a single string of non-white
  1256. characters, or a string in double quotes, or a regexp in {} braces.
  1257. If a snippet is preceded by \"-\", the snippet must *not* match.
  1258. \"+\" is syntactic sugar for positive selection. Each snippet may
  1259. be found as a full word or a partial word, but see the variable
  1260. `org-agenda-search-view-force-full-words'.
  1261. When this is nil, search will look for the entire search phrase as one,
  1262. with each space character matching any amount of whitespace, including
  1263. line breaks.
  1264. Even when this is nil, you can still switch to Boolean search dynamically
  1265. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1266. is a regexp marked with braces like \"{abc}\", this will also switch to
  1267. boolean search."
  1268. :group 'org-agenda-search-view
  1269. :version "24.1"
  1270. :type 'boolean)
  1271. (defcustom org-agenda-search-view-force-full-words nil
  1272. "Non-nil means, search words must be matches as complete words.
  1273. When nil, they may also match part of a word."
  1274. :group 'org-agenda-search-view
  1275. :version "24.1"
  1276. :type 'boolean)
  1277. (defcustom org-agenda-search-view-max-outline-level 0
  1278. "Maximum outline level to display in search view.
  1279. E.g. when this is set to 1, the search view will only
  1280. show headlines of level 1. When set to 0, the default
  1281. value, don't limit agenda view by outline level."
  1282. :group 'org-agenda-search-view
  1283. :version "26.1"
  1284. :package-version '(Org . "8.3")
  1285. :type 'integer)
  1286. (defgroup org-agenda-time-grid nil
  1287. "Options concerning the time grid in the Org Agenda."
  1288. :tag "Org Agenda Time Grid"
  1289. :group 'org-agenda)
  1290. (defcustom org-agenda-search-headline-for-time t
  1291. "Non-nil means search headline for a time-of-day.
  1292. If the headline contains a time-of-day in one format or another, it will
  1293. be used to sort the entry into the time sequence of items for a day.
  1294. Some people have time stamps in the headline that refer to the creation
  1295. time or so, and then this produces an unwanted side effect. If this is
  1296. the case for your, use this variable to turn off searching the headline
  1297. for a time."
  1298. :group 'org-agenda-time-grid
  1299. :type 'boolean)
  1300. (defcustom org-agenda-use-time-grid t
  1301. "Non-nil means show a time grid in the agenda schedule.
  1302. A time grid is a set of lines for specific times (like every two hours between
  1303. 8:00 and 20:00). The items scheduled for a day at specific times are
  1304. sorted in between these lines.
  1305. For details about when the grid will be shown, and what it will look like, see
  1306. the variable `org-agenda-time-grid'."
  1307. :group 'org-agenda-time-grid
  1308. :type 'boolean)
  1309. (defcustom org-agenda-time-grid
  1310. '((daily today require-timed)
  1311. (800 1000 1200 1400 1600 1800 2000)
  1312. "......"
  1313. "----------------")
  1314. "The settings for time grid for agenda display.
  1315. This is a list of four items. The first item is again a list. It contains
  1316. symbols specifying conditions when the grid should be displayed:
  1317. daily if the agenda shows a single day
  1318. weekly if the agenda shows an entire week
  1319. today show grid on current date, independent of daily/weekly display
  1320. require-timed show grid only if at least one item has a time specification
  1321. remove-match skip grid times already present in an entry
  1322. The second item is a list of integers, indicating the times that
  1323. should have a grid line.
  1324. The third item is a string which will be placed right after the
  1325. times that have a grid line.
  1326. The fourth item is a string placed after the grid times. This
  1327. will align with agenda items."
  1328. :group 'org-agenda-time-grid
  1329. :type
  1330. '(list
  1331. (set :greedy t :tag "Grid Display Options"
  1332. (const :tag "Show grid in single day agenda display" daily)
  1333. (const :tag "Show grid in weekly agenda display" weekly)
  1334. (const :tag "Always show grid for today" today)
  1335. (const :tag "Show grid only if any timed entries are present"
  1336. require-timed)
  1337. (const :tag "Skip grid times already present in an entry"
  1338. remove-match))
  1339. (repeat :tag "Grid Times" (integer :tag "Time"))
  1340. (string :tag "Grid String (after agenda times)")
  1341. (string :tag "Grid String (aligns with agenda items)")))
  1342. (defcustom org-agenda-show-current-time-in-grid t
  1343. "Non-nil means show the current time in the time grid."
  1344. :group 'org-agenda-time-grid
  1345. :version "24.1"
  1346. :type 'boolean)
  1347. (defcustom org-agenda-current-time-string
  1348. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1349. "The string for the current time marker in the agenda."
  1350. :group 'org-agenda-time-grid
  1351. :version "24.1"
  1352. :type 'string)
  1353. (defgroup org-agenda-sorting nil
  1354. "Options concerning sorting in the Org Agenda."
  1355. :tag "Org Agenda Sorting"
  1356. :group 'org-agenda)
  1357. (defcustom org-agenda-sorting-strategy
  1358. '((agenda habit-down time-up priority-down category-keep)
  1359. (todo priority-down category-keep)
  1360. (tags priority-down category-keep)
  1361. (search category-keep))
  1362. "Sorting structure for the agenda items of a single day.
  1363. This is a list of symbols which will be used in sequence to determine
  1364. if an entry should be listed before another entry. The following
  1365. symbols are recognized:
  1366. time-up Put entries with time-of-day indications first, early first.
  1367. time-down Put entries with time-of-day indications first, late first.
  1368. timestamp-up Sort by any timestamp, early first.
  1369. timestamp-down Sort by any timestamp, late first.
  1370. scheduled-up Sort by scheduled timestamp, early first.
  1371. scheduled-down Sort by scheduled timestamp, late first.
  1372. deadline-up Sort by deadline timestamp, early first.
  1373. deadline-down Sort by deadline timestamp, late first.
  1374. ts-up Sort by active timestamp, early first.
  1375. ts-down Sort by active timestamp, late first.
  1376. tsia-up Sort by inactive timestamp, early first.
  1377. tsia-down Sort by inactive timestamp, late first.
  1378. category-keep Keep the default order of categories, corresponding to the
  1379. sequence in `org-agenda-files'.
  1380. category-up Sort alphabetically by category, A-Z.
  1381. category-down Sort alphabetically by category, Z-A.
  1382. tag-up Sort alphabetically by last tag, A-Z.
  1383. tag-down Sort alphabetically by last tag, Z-A.
  1384. priority-up Sort numerically by priority, high priority last.
  1385. priority-down Sort numerically by priority, high priority first.
  1386. todo-state-up Sort by todo state, tasks that are done last.
  1387. todo-state-down Sort by todo state, tasks that are done first.
  1388. effort-up Sort numerically by estimated effort, high effort last.
  1389. effort-down Sort numerically by estimated effort, high effort first.
  1390. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1391. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1392. habit-up Put entries that are habits first.
  1393. habit-down Put entries that are habits last.
  1394. alpha-up Sort headlines alphabetically.
  1395. alpha-down Sort headlines alphabetically, reversed.
  1396. The different possibilities will be tried in sequence, and testing stops
  1397. if one comparison returns a \"not-equal\". For example, the default
  1398. '(time-up category-keep priority-down)
  1399. means: Pull out all entries having a specified time of day and sort them,
  1400. in order to make a time schedule for the current day the first thing in the
  1401. agenda listing for the day. Of the entries without a time indication, keep
  1402. the grouped in categories, don't sort the categories, but keep them in
  1403. the sequence given in `org-agenda-files'. Within each category sort by
  1404. priority.
  1405. Leaving out `category-keep' would mean that items will be sorted across
  1406. categories by priority.
  1407. Instead of a single list, this can also be a set of list for specific
  1408. contents, with a context symbol in the car of the list, any of
  1409. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1410. Custom commands can bind this variable in the options section."
  1411. :group 'org-agenda-sorting
  1412. :type `(choice
  1413. (repeat :tag "General" ,org-sorting-choice)
  1414. (list :tag "Individually"
  1415. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1416. (repeat ,org-sorting-choice))
  1417. (cons (const :tag "Strategy for TODO lists" todo)
  1418. (repeat ,org-sorting-choice))
  1419. (cons (const :tag "Strategy for Tags matches" tags)
  1420. (repeat ,org-sorting-choice))
  1421. (cons (const :tag "Strategy for search matches" search)
  1422. (repeat ,org-sorting-choice)))))
  1423. (defcustom org-agenda-cmp-user-defined nil
  1424. "A function to define the comparison `user-defined'.
  1425. This function must receive two arguments, agenda entry a and b.
  1426. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1427. the user comparison, return nil.
  1428. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1429. part of an agenda sorting strategy."
  1430. :group 'org-agenda-sorting
  1431. :type 'symbol)
  1432. (defcustom org-sort-agenda-notime-is-late t
  1433. "Non-nil means items without time are considered late.
  1434. This is only relevant for sorting. When t, items which have no explicit
  1435. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1436. do have a time. When nil, the default time is before 0:00. You can use this
  1437. option to decide if the schedule for today should come before or after timeless
  1438. agenda entries."
  1439. :group 'org-agenda-sorting
  1440. :type 'boolean)
  1441. (defcustom org-sort-agenda-noeffort-is-high t
  1442. "Non-nil means items without effort estimate are sorted as high effort.
  1443. This also applies when filtering an agenda view with respect to the
  1444. < or > effort operator. Then, tasks with no effort defined will be treated
  1445. as tasks with high effort.
  1446. When nil, such items are sorted as 0 minutes effort."
  1447. :group 'org-agenda-sorting
  1448. :type 'boolean)
  1449. (defgroup org-agenda-line-format nil
  1450. "Options concerning the entry prefix in the Org agenda display."
  1451. :tag "Org Agenda Line Format"
  1452. :group 'org-agenda)
  1453. (defcustom org-agenda-prefix-format
  1454. '((agenda . " %i %-12:c%?-12t% s")
  1455. (todo . " %i %-12:c")
  1456. (tags . " %i %-12:c")
  1457. (search . " %i %-12:c"))
  1458. "Format specifications for the prefix of items in the agenda views.
  1459. An alist with one entry per agenda type. The keys of the
  1460. sublists are `agenda', `todo', `search' and `tags'. The values
  1461. are format strings.
  1462. This format works similar to a printf format, with the following meaning:
  1463. %c the category of the item, \"Diary\" for entries from the diary,
  1464. or as given by the CATEGORY keyword or derived from the file name
  1465. %e the effort required by the item
  1466. %l the level of the item (insert X space(s) if item is of level X)
  1467. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1468. %T the last tag of the item (ignore inherited tags, which come first)
  1469. %t the HH:MM time-of-day specification if one applies to the entry
  1470. %s Scheduling/Deadline information, a short string
  1471. %b show breadcrumbs, i.e., the names of the higher levels
  1472. %(expression) Eval EXPRESSION and replace the control string
  1473. by the result
  1474. All specifiers work basically like the standard `%s' of printf, but may
  1475. contain two additional characters: a question mark just after the `%'
  1476. and a whitespace/punctuation character just before the final letter.
  1477. If the first character after `%' is a question mark, the entire field
  1478. will only be included if the corresponding value applies to the current
  1479. entry. This is useful for fields which should have fixed width when
  1480. present, but zero width when absent. For example, \"%?-12t\" will
  1481. result in a 12 character time field if a time of the day is specified,
  1482. but will completely disappear in entries which do not contain a time.
  1483. If there is punctuation or whitespace character just before the
  1484. final format letter, this character will be appended to the field
  1485. value if the value is not empty. For example, the format
  1486. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1487. the category is empty, no additional colon is inserted.
  1488. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1489. which means:
  1490. - Indent the line with two space characters
  1491. - Give the category a 12 chars wide field, padded with whitespace on
  1492. the right (because of `-'). Append a colon if there is a category
  1493. (because of `:').
  1494. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1495. time, don't put in an empty field, just skip it (because of '?').
  1496. - Finally, put the scheduling information.
  1497. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1498. `org-agenda-remove-tags'.
  1499. Custom commands can set this variable in the options section."
  1500. :type '(choice
  1501. (string :tag "General format")
  1502. (list :greedy t :tag "View dependent"
  1503. (cons (const agenda) (string :tag "Format"))
  1504. (cons (const todo) (string :tag "Format"))
  1505. (cons (const tags) (string :tag "Format"))
  1506. (cons (const search) (string :tag "Format"))))
  1507. :group 'org-agenda-line-format
  1508. :version "26.1"
  1509. :package-version '(Org . "9.1"))
  1510. (defcustom org-agenda-breadcrumbs-separator "->"
  1511. "The separator of breadcrumbs in agenda lines."
  1512. :group 'org-agenda-line-format
  1513. :package-version '(Org . "9.3")
  1514. :type 'string
  1515. :safe #'stringp)
  1516. (defvar org-prefix-format-compiled nil
  1517. "The compiled prefix format and associated variables.
  1518. This is a list where first element is a list of variable bindings, and second
  1519. element is the compiled format expression. See the variable
  1520. `org-agenda-prefix-format'.")
  1521. (defcustom org-agenda-todo-keyword-format "%-1s"
  1522. "Format for the TODO keyword in agenda lines.
  1523. Set this to something like \"%-12s\" if you want all TODO keywords
  1524. to occupy a fixed space in the agenda display."
  1525. :group 'org-agenda-line-format
  1526. :type 'string)
  1527. (defcustom org-agenda-diary-sexp-prefix nil
  1528. "A regexp that matches part of a diary sexp entry
  1529. which should be treated as scheduling/deadline information in
  1530. `org-agenda'.
  1531. For example, you can use this to extract the `diary-remind-message' from
  1532. `diary-remind' entries."
  1533. :group 'org-agenda-line-format
  1534. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1535. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1536. "Text preceding timerange entries in the agenda view.
  1537. This is a list with two strings. The first applies when the range
  1538. is entirely on one day. The second applies if the range spans several days.
  1539. The strings may have two \"%d\" format specifiers which will be filled
  1540. with the sequence number of the days, and the total number of days in the
  1541. range, respectively."
  1542. :group 'org-agenda-line-format
  1543. :type '(list
  1544. (string :tag "Deadline today ")
  1545. (choice :tag "Deadline relative"
  1546. (string :tag "Format string")
  1547. (function))))
  1548. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1549. "Text preceding scheduled items in the agenda view.
  1550. This is a list with two strings. The first applies when the item is
  1551. scheduled on the current day. The second applies when it has been scheduled
  1552. previously, it may contain a %d indicating that this is the nth time that
  1553. this item is scheduled, due to automatic rescheduling of unfinished items
  1554. for the following day. So this number is one larger than the number of days
  1555. that passed since this item was scheduled first."
  1556. :group 'org-agenda-line-format
  1557. :version "24.4"
  1558. :package-version '(Org . "8.0")
  1559. :type '(list
  1560. (string :tag "Scheduled today ")
  1561. (string :tag "Scheduled previously")))
  1562. (defcustom org-agenda-inactive-leader "["
  1563. "Text preceding item pulled into the agenda by inactive time stamps.
  1564. These entries are added to the agenda when pressing \"[\"."
  1565. :group 'org-agenda-line-format
  1566. :version "24.1"
  1567. :type 'string)
  1568. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1569. "Text preceding deadline items in the agenda view.
  1570. This is a list with three strings. The first applies when the item has its
  1571. deadline on the current day. The second applies when the deadline is in the
  1572. future, the third one when it is in the past. The strings may contain %d
  1573. to capture the number of days."
  1574. :group 'org-agenda-line-format
  1575. :version "24.4"
  1576. :package-version '(Org . "8.0")
  1577. :type '(list
  1578. (string :tag "Deadline today ")
  1579. (string :tag "Deadline in the future ")
  1580. (string :tag "Deadline in the past ")))
  1581. (defcustom org-agenda-remove-times-when-in-prefix t
  1582. "Non-nil means remove duplicate time specifications in agenda items.
  1583. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1584. time-of-day specification in a headline or diary entry is extracted and
  1585. placed into the prefix. If this option is non-nil, the original specification
  1586. \(a timestamp or -range, or just a plain time(range) specification like
  1587. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1588. cluttered.
  1589. The option can be t or nil. It may also be the symbol `beg', indicating
  1590. that the time should only be removed when it is located at the beginning of
  1591. the headline/diary entry."
  1592. :group 'org-agenda-line-format
  1593. :type '(choice
  1594. (const :tag "Always" t)
  1595. (const :tag "Never" nil)
  1596. (const :tag "When at beginning of entry" beg)))
  1597. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1598. "Non-nil means remove time ranges specifications in agenda
  1599. items that span on several days."
  1600. :group 'org-agenda-line-format
  1601. :version "24.1"
  1602. :type 'boolean)
  1603. (defcustom org-agenda-default-appointment-duration nil
  1604. "Default duration for appointments that only have a starting time.
  1605. When nil, no duration is specified in such cases.
  1606. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1607. :group 'org-agenda-line-format
  1608. :type '(choice
  1609. (integer :tag "Minutes")
  1610. (const :tag "No default duration")))
  1611. (defcustom org-agenda-show-inherited-tags t
  1612. "Non-nil means show inherited tags in each agenda line.
  1613. When this option is set to `always', it takes precedence over
  1614. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1615. in every agenda.
  1616. When this option is set to t (the default), inherited tags are
  1617. shown when they are available, i.e. when the value of
  1618. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1619. given agenda type.
  1620. This can be set to a list of agenda types in which the agenda
  1621. must display the inherited tags. Available types are `todo',
  1622. `agenda' and `search'.
  1623. When set to nil, never show inherited tags in agenda lines."
  1624. :group 'org-agenda-line-format
  1625. :group 'org-agenda
  1626. :version "24.3"
  1627. :type '(choice
  1628. (const :tag "Show inherited tags when available" t)
  1629. (const :tag "Always show inherited tags" always)
  1630. (repeat :tag "Show inherited tags only in selected agenda types"
  1631. (symbol :tag "Agenda type"))))
  1632. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1633. "List of agenda view types where to use tag inheritance.
  1634. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1635. controlled by `org-use-tag-inheritance'. In other agenda types,
  1636. `org-use-tag-inheritance' is not used for the selection of the
  1637. agenda entries. Still, you may want the agenda to be aware of
  1638. the inherited tags anyway, e.g. for later tag filtering.
  1639. Allowed value are `todo', `search' and `agenda'.
  1640. This variable has no effect if `org-agenda-show-inherited-tags'
  1641. is set to `always'. In that case, the agenda is aware of those
  1642. tags.
  1643. The default value sets tags in every agenda type. Setting this
  1644. option to nil will speed up non-tags agenda view a lot."
  1645. :group 'org-agenda
  1646. :version "26.1"
  1647. :package-version '(Org . "9.1")
  1648. :type '(choice
  1649. (const :tag "Use tag inheritance in all agenda types" t)
  1650. (repeat :tag "Use tag inheritance in selected agenda types"
  1651. (symbol :tag "Agenda type"))))
  1652. (defcustom org-agenda-hide-tags-regexp nil
  1653. "Regular expression used to filter away specific tags in agenda views.
  1654. This means that these tags will be present, but not be shown in the agenda
  1655. line. Secondary filtering will still work on the hidden tags.
  1656. Nil means don't hide any tags."
  1657. :group 'org-agenda-line-format
  1658. :type '(choice
  1659. (const :tag "Hide none" nil)
  1660. (string :tag "Regexp ")))
  1661. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1662. 'org-agenda-remove-tags)
  1663. (defcustom org-agenda-remove-tags nil
  1664. "Non-nil means remove the tags from the headline copy in the agenda.
  1665. When this is the symbol `prefix', only remove tags when
  1666. `org-agenda-prefix-format' contains a `%T' specifier."
  1667. :group 'org-agenda-line-format
  1668. :type '(choice
  1669. (const :tag "Always" t)
  1670. (const :tag "Never" nil)
  1671. (const :tag "When prefix format contains %T" prefix)))
  1672. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1673. (defcustom org-agenda-tags-column 'auto
  1674. "Shift tags in agenda items to this column.
  1675. If set to `auto', tags will be automatically aligned to the right
  1676. edge of the window.
  1677. If set to a positive number, tags will be left-aligned to that
  1678. column. If set to a negative number, tags will be right-aligned
  1679. to that column. For example, -80 works well for a normal 80
  1680. character screen."
  1681. :group 'org-agenda-line-format
  1682. :type '(choice
  1683. (const :tag "Automatically align to right edge of window" auto)
  1684. (integer :tag "Specific column" -80))
  1685. :package-version '(Org . "9.1")
  1686. :version "26.1")
  1687. (defcustom org-agenda-fontify-priorities 'cookies
  1688. "Non-nil means highlight low and high priorities in agenda.
  1689. When t, the highest priority entries are bold, lowest priority italic.
  1690. However, settings in `org-priority-faces' will overrule these faces.
  1691. When this variable is the symbol `cookies', only fontify the
  1692. cookies, not the entire task.
  1693. This may also be an association list of priority faces, whose
  1694. keys are the character values of `org-highest-priority',
  1695. `org-default-priority', and `org-lowest-priority' (the default values
  1696. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1697. color as a string, or a list like `(:background \"Red\")'.
  1698. If it is a color, the variable `org-faces-easy-properties'
  1699. determines if it is a foreground or a background color."
  1700. :group 'org-agenda-line-format
  1701. :type '(choice
  1702. (const :tag "Never" nil)
  1703. (const :tag "Defaults" t)
  1704. (const :tag "Cookies only" cookies)
  1705. (repeat :tag "Specify"
  1706. (list (character :tag "Priority" :value ?A)
  1707. (choice :tag "Face "
  1708. (string :tag "Color")
  1709. (sexp :tag "Face"))))))
  1710. (defcustom org-agenda-day-face-function nil
  1711. "Function called to determine what face should be used to display a day.
  1712. The only argument passed to that function is the day. It should
  1713. returns a face, or nil if does not want to specify a face and let
  1714. the normal rules apply."
  1715. :group 'org-agenda-line-format
  1716. :version "24.1"
  1717. :type '(choice (const nil) (function)))
  1718. (defcustom org-agenda-category-icon-alist nil
  1719. "Alist of category icon to be displayed in agenda views.
  1720. Each entry should have the following format:
  1721. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1722. Where CATEGORY-REGEXP is a regexp matching the categories where
  1723. the icon should be displayed.
  1724. FILE-OR-DATA either a file path or a string containing image data.
  1725. The other fields can be omitted safely if not needed:
  1726. TYPE indicates the image type.
  1727. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1728. image data.
  1729. PROPS are additional image attributes to assign to the image,
  1730. like, e.g. `:ascent center'.
  1731. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1732. If you want to set the display properties yourself, just put a
  1733. list as second element:
  1734. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1735. For example, to display a 16px horizontal space for Emacs
  1736. category, you can use:
  1737. (\"Emacs\" \\='(space . (:width (16))))"
  1738. :group 'org-agenda-line-format
  1739. :version "24.1"
  1740. :type '(alist :key-type (string :tag "Regexp matching category")
  1741. :value-type (choice (list :tag "Icon"
  1742. (string :tag "File or data")
  1743. (symbol :tag "Type")
  1744. (boolean :tag "Data?")
  1745. (repeat :tag "Extra image properties" :inline t symbol))
  1746. (list :tag "Display properties" sexp))))
  1747. (defgroup org-agenda-column-view nil
  1748. "Options concerning column view in the agenda."
  1749. :tag "Org Agenda Column View"
  1750. :group 'org-agenda)
  1751. (defcustom org-agenda-view-columns-initially nil
  1752. "When non-nil, switch to columns view right after creating the agenda."
  1753. :group 'org-agenda-column-view
  1754. :type 'boolean
  1755. :version "26.1"
  1756. :package-version '(Org . "9.0")
  1757. :safe #'booleanp)
  1758. (defcustom org-agenda-columns-show-summaries t
  1759. "Non-nil means show summaries for columns displayed in the agenda view."
  1760. :group 'org-agenda-column-view
  1761. :type 'boolean)
  1762. (defcustom org-agenda-columns-compute-summary-properties t
  1763. "Non-nil means recompute all summary properties before column view.
  1764. When column view in the agenda is listing properties that have a summary
  1765. operator, it can go to all relevant buffers and recompute the summaries
  1766. there. This can mean overhead for the agenda column view, but is necessary
  1767. to have thing up to date.
  1768. As a special case, a CLOCKSUM property also makes sure that the clock
  1769. computations are current."
  1770. :group 'org-agenda-column-view
  1771. :type 'boolean)
  1772. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1773. "Non-nil means the duration of an appointment will add to day effort.
  1774. The property to which appointment durations will be added is the one given
  1775. in the option `org-effort-property'. If an appointment does not have
  1776. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1777. is not set, an appointment without end time will not contribute to the time
  1778. estimate."
  1779. :group 'org-agenda-column-view
  1780. :type 'boolean)
  1781. (defcustom org-agenda-auto-exclude-function nil
  1782. "A function called with a tag to decide if it is filtered on \
  1783. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1784. The sole argument to the function, which is called once for each
  1785. possible tag, is a string giving the name of the tag. The
  1786. function should return either nil if the tag should be included
  1787. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1788. lines not carrying this tag.
  1789. Note that for the purpose of tag filtering, only the lower-case version of
  1790. all tags will be considered, so that this function will only ever see
  1791. the lower-case version of all tags."
  1792. :group 'org-agenda
  1793. :type '(choice (const nil) (function)))
  1794. (defcustom org-agenda-bulk-custom-functions nil
  1795. "Alist of characters and custom functions for bulk actions.
  1796. For example, this value makes those two functions available:
  1797. \\='((?R set-category)
  1798. (?C bulk-cut))
  1799. With selected entries in an agenda buffer, `B R' will call
  1800. the custom function `set-category' on the selected entries.
  1801. Note that functions in this alist don't need to be quoted."
  1802. :type '(alist :key-type character :value-type (group function))
  1803. :version "24.1"
  1804. :group 'org-agenda)
  1805. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1806. "Execute BODY with point at location given by `org-hd-marker' property.
  1807. If STRING is non-nil, the text property will be fetched from position 0
  1808. in that string. If STRING is nil, it will be fetched from the beginning
  1809. of the current line."
  1810. (org-with-gensyms (marker)
  1811. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1812. 'org-hd-marker ,string)))
  1813. (with-current-buffer (marker-buffer ,marker)
  1814. (save-excursion
  1815. (goto-char ,marker)
  1816. ,@body)))))
  1817. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1818. (defun org-add-agenda-custom-command (entry)
  1819. "Replace or add a command in `org-agenda-custom-commands'.
  1820. This is mostly for hacking and trying a new command - once the command
  1821. works you probably want to add it to `org-agenda-custom-commands' for good."
  1822. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1823. (if ass
  1824. (setcdr ass (cdr entry))
  1825. (push entry org-agenda-custom-commands))))
  1826. (defmacro org-agenda--insert-overriding-header (default)
  1827. "Insert header into agenda view.
  1828. The inserted header depends on `org-agenda-overriding-header'.
  1829. If the empty string, don't insert a header. If any other string,
  1830. insert it as a header. If nil, insert DEFAULT, which should
  1831. evaluate to a string."
  1832. (declare (debug (form)) (indent defun))
  1833. `(cond
  1834. ((not org-agenda-overriding-header) (insert ,default))
  1835. ((equal org-agenda-overriding-header "") nil)
  1836. ((stringp org-agenda-overriding-header)
  1837. (insert (propertize org-agenda-overriding-header
  1838. 'face 'org-agenda-structure)
  1839. "\n"))
  1840. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1841. org-agenda-overriding-header))))
  1842. ;;; Define the org-agenda-mode
  1843. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1844. (defvar org-agenda-mode-map (make-sparse-keymap)
  1845. "Keymap for `org-agenda-mode'.")
  1846. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1847. (defvar org-agenda-menu) ; defined later in this file.
  1848. (defvar org-agenda-restrict nil) ; defined later in this file.
  1849. (defvar org-agenda-follow-mode nil)
  1850. (defvar org-agenda-entry-text-mode nil)
  1851. (defvar org-agenda-clockreport-mode nil)
  1852. (defvar org-agenda-show-log nil
  1853. "When non-nil, show the log in the agenda.
  1854. Do not set this directly; instead use
  1855. `org-agenda-start-with-log-mode', which see.")
  1856. (defvar org-agenda-redo-command nil)
  1857. (defvar org-agenda-query-string nil)
  1858. (defvar org-agenda-mode-hook nil
  1859. "Hook run after `org-agenda-mode' is turned on.
  1860. The buffer is still writable when this hook is called.")
  1861. (defvar org-agenda-type nil)
  1862. (defvar org-agenda-force-single-file nil)
  1863. (defvar org-agenda-bulk-marked-entries nil
  1864. "List of markers that refer to marked entries in the agenda.")
  1865. (defvar org-agenda-current-date nil
  1866. "Active date when building the agenda.")
  1867. ;;; Multiple agenda buffers support
  1868. (defcustom org-agenda-sticky nil
  1869. "Non-nil means agenda q key will bury agenda buffers.
  1870. Agenda commands will then show existing buffer instead of generating new ones.
  1871. When nil, `q' will kill the single agenda buffer."
  1872. :group 'org-agenda
  1873. :version "24.3"
  1874. :type 'boolean)
  1875. ;;;###autoload
  1876. (defun org-toggle-sticky-agenda (&optional arg)
  1877. "Toggle `org-agenda-sticky'."
  1878. (interactive "P")
  1879. (let ((new-value (if arg
  1880. (> (prefix-numeric-value arg) 0)
  1881. (not org-agenda-sticky))))
  1882. (if (equal new-value org-agenda-sticky)
  1883. (and (called-interactively-p 'interactive)
  1884. (message "Sticky agenda was already %s"
  1885. (if org-agenda-sticky "enabled" "disabled")))
  1886. (setq org-agenda-sticky new-value)
  1887. (org-agenda-kill-all-agenda-buffers)
  1888. (and (called-interactively-p 'interactive)
  1889. (message "Sticky agenda %s"
  1890. (if org-agenda-sticky "enabled" "disabled"))))))
  1891. (defvar org-agenda-buffer nil
  1892. "Agenda buffer currently being generated.")
  1893. (defvar org-agenda-last-prefix-arg nil)
  1894. (defvar org-agenda-this-buffer-name nil)
  1895. (defvar org-agenda-doing-sticky-redo nil)
  1896. (defvar org-agenda-this-buffer-is-sticky nil)
  1897. (defvar org-agenda-last-indirect-buffer nil
  1898. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1899. (defconst org-agenda-local-vars
  1900. '(org-agenda-this-buffer-name
  1901. org-agenda-undo-list
  1902. org-agenda-pending-undo-list
  1903. org-agenda-follow-mode
  1904. org-agenda-entry-text-mode
  1905. org-agenda-clockreport-mode
  1906. org-agenda-show-log
  1907. org-agenda-redo-command
  1908. org-agenda-query-string
  1909. org-agenda-type
  1910. org-agenda-bulk-marked-entries
  1911. org-agenda-undo-has-started-in
  1912. org-agenda-info
  1913. org-agenda-pre-window-conf
  1914. org-agenda-columns-active
  1915. org-agenda-tag-filter
  1916. org-agenda-category-filter
  1917. org-agenda-top-headline-filter
  1918. org-agenda-regexp-filter
  1919. org-agenda-effort-filter
  1920. org-agenda-markers
  1921. org-agenda-last-search-view-search-was-boolean
  1922. org-agenda-last-indirect-buffer
  1923. org-agenda-filtered-by-category
  1924. org-agenda-filter-form
  1925. org-agenda-cycle-counter
  1926. org-agenda-last-prefix-arg)
  1927. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1928. (defun org-agenda-mode ()
  1929. "Mode for time-sorted view on action items in Org files.
  1930. The following commands are available:
  1931. \\{org-agenda-mode-map}"
  1932. (interactive)
  1933. (ignore-errors (require 'face-remap))
  1934. (let ((agenda-local-vars-to-keep
  1935. '(text-scale-mode-amount
  1936. text-scale-mode
  1937. text-scale-mode-lighter
  1938. face-remapping-alist))
  1939. (save (buffer-local-variables)))
  1940. (kill-all-local-variables)
  1941. (cl-flet ((reset-saved (var-set)
  1942. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1943. (dolist (elem save)
  1944. (pcase elem
  1945. (`(,var . ,val) ;ignore unbound variables
  1946. (when (and val (memq var var-set))
  1947. (set var val)))))))
  1948. (cond (org-agenda-doing-sticky-redo
  1949. ;; Refreshing sticky agenda-buffer
  1950. ;;
  1951. ;; Preserve the value of `org-agenda-local-vars' variables.
  1952. (mapc #'make-local-variable org-agenda-local-vars)
  1953. (reset-saved org-agenda-local-vars)
  1954. (setq-local org-agenda-this-buffer-is-sticky t))
  1955. (org-agenda-sticky
  1956. ;; Creating a sticky Agenda buffer for the first time
  1957. (mapc 'make-local-variable org-agenda-local-vars)
  1958. (setq-local org-agenda-this-buffer-is-sticky t))
  1959. (t
  1960. ;; Creating a non-sticky agenda buffer
  1961. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1962. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1963. (reset-saved agenda-local-vars-to-keep)))
  1964. (setq org-agenda-undo-list nil
  1965. org-agenda-pending-undo-list nil
  1966. org-agenda-bulk-marked-entries nil)
  1967. (setq major-mode 'org-agenda-mode)
  1968. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1969. (setq-local font-lock-global-modes (list 'not major-mode))
  1970. (setq mode-name "Org-Agenda")
  1971. (setq indent-tabs-mode nil)
  1972. (use-local-map org-agenda-mode-map)
  1973. (easy-menu-add org-agenda-menu)
  1974. (when org-startup-truncated (setq truncate-lines t))
  1975. (setq-local line-move-visual nil)
  1976. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1977. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1978. ;; Make sure properties are removed when copying text
  1979. (if (boundp 'filter-buffer-substring-functions)
  1980. (add-hook 'filter-buffer-substring-functions
  1981. (lambda (fun start end delete)
  1982. (substring-no-properties (funcall fun start end delete)))
  1983. nil t)
  1984. ;; Emacs >= 24.4.
  1985. (add-function :filter-return (local 'filter-buffer-substring-function)
  1986. #'substring-no-properties))
  1987. (unless org-agenda-keep-modes
  1988. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1989. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1990. org-agenda-show-log org-agenda-start-with-log-mode
  1991. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  1992. (add-to-invisibility-spec '(org-filtered))
  1993. (add-to-invisibility-spec '(org-link))
  1994. (easy-menu-change
  1995. '("Agenda") "Agenda Files"
  1996. (append
  1997. (list
  1998. (vector
  1999. (if (get 'org-agenda-files 'org-restrict)
  2000. "Restricted to single file"
  2001. "Edit File List")
  2002. '(org-edit-agenda-file-list)
  2003. (not (get 'org-agenda-files 'org-restrict)))
  2004. "--")
  2005. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2006. (org-agenda-set-mode-name)
  2007. (apply
  2008. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2009. (list 'org-agenda-mode-hook)))
  2010. (substitute-key-definition 'undo 'org-agenda-undo
  2011. org-agenda-mode-map global-map)
  2012. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  2013. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  2014. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  2015. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  2016. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  2017. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  2018. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  2019. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  2020. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  2021. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  2022. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  2023. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  2024. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  2025. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  2026. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  2027. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  2028. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  2029. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  2030. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  2031. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  2033. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  2034. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  2035. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  2036. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  2037. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  2038. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  2039. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  2040. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  2041. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  2042. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  2043. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  2044. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  2045. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  2046. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  2047. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  2048. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  2049. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  2050. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  2051. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  2052. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  2053. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  2054. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  2055. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  2056. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  2057. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  2058. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  2059. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  2060. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  2061. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  2062. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  2063. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  2064. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  2065. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2066. (while l (org-defkey org-agenda-mode-map
  2067. (int-to-string (pop l)) 'digit-argument)))
  2068. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  2069. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  2070. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  2071. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  2072. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  2073. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  2074. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  2075. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  2076. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  2077. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo-all)
  2078. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  2079. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  2080. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2081. 'org-clock-modify-effort-estimate)
  2082. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  2083. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2084. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2085. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2086. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2087. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2088. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2089. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2090. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2091. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2092. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2093. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2094. (substitute-key-definition 'next-line 'org-agenda-next-line
  2095. org-agenda-mode-map global-map)
  2096. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2097. org-agenda-mode-map global-map)
  2098. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2099. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2100. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2101. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2102. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2103. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2104. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2105. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2106. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2107. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2108. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2109. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2110. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2111. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2112. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2113. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2114. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2115. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2116. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2117. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2118. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2119. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2120. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2121. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2122. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2123. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2124. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2125. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2126. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2127. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2128. (org-defkey org-agenda-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock-from-agenda)
  2129. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2130. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2131. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2132. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2133. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag)
  2134. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2135. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2136. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter)
  2137. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2138. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2139. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2140. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2141. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2142. (org-defkey org-agenda-mode-map "\C-c\C-x_" 'org-timer-stop)
  2143. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2144. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2145. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2146. (org-defkey org-agenda-mode-map "\C-c\C-xI" 'org-info-find-node)
  2147. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2148. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2149. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2150. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2151. (when org-agenda-mouse-1-follows-link
  2152. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2153. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2154. '("Agenda"
  2155. ("Agenda Files")
  2156. "--"
  2157. ("Agenda Dates"
  2158. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2159. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2160. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2161. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2162. "--"
  2163. ("View"
  2164. ["Day View" org-agenda-day-view
  2165. :active (org-agenda-check-type nil 'agenda)
  2166. :style radio :selected (eq org-agenda-current-span 'day)
  2167. :keys "v d (or just d)"]
  2168. ["Week View" org-agenda-week-view
  2169. :active (org-agenda-check-type nil 'agenda)
  2170. :style radio :selected (eq org-agenda-current-span 'week)
  2171. :keys "v w"]
  2172. ["Fortnight View" org-agenda-fortnight-view
  2173. :active (org-agenda-check-type nil 'agenda)
  2174. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2175. :keys "v t"]
  2176. ["Month View" org-agenda-month-view
  2177. :active (org-agenda-check-type nil 'agenda)
  2178. :style radio :selected (eq org-agenda-current-span 'month)
  2179. :keys "v m"]
  2180. ["Year View" org-agenda-year-view
  2181. :active (org-agenda-check-type nil 'agenda)
  2182. :style radio :selected (eq org-agenda-current-span 'year)
  2183. :keys "v y"]
  2184. "--"
  2185. ["Include Diary" org-agenda-toggle-diary
  2186. :style toggle :selected org-agenda-include-diary
  2187. :active (org-agenda-check-type nil 'agenda)]
  2188. ["Include Deadlines" org-agenda-toggle-deadlines
  2189. :style toggle :selected org-agenda-include-deadlines
  2190. :active (org-agenda-check-type nil 'agenda)]
  2191. ["Use Time Grid" org-agenda-toggle-time-grid
  2192. :style toggle :selected org-agenda-use-time-grid
  2193. :active (org-agenda-check-type nil 'agenda)]
  2194. "--"
  2195. ["Show clock report" org-agenda-clockreport-mode
  2196. :style toggle :selected org-agenda-clockreport-mode
  2197. :active (org-agenda-check-type nil 'agenda)]
  2198. ["Show some entry text" org-agenda-entry-text-mode
  2199. :style toggle :selected org-agenda-entry-text-mode
  2200. :active t]
  2201. "--"
  2202. ["Show Logbook entries" org-agenda-log-mode
  2203. :style toggle :selected org-agenda-show-log
  2204. :active (org-agenda-check-type nil 'agenda)
  2205. :keys "v l (or just l)"]
  2206. ["Include archived trees" org-agenda-archives-mode
  2207. :style toggle :selected org-agenda-archives-mode :active t
  2208. :keys "v a"]
  2209. ["Include archive files" (org-agenda-archives-mode t)
  2210. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2211. :keys "v A"]
  2212. "--"
  2213. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2214. ("Filter current view"
  2215. ["with generic interface" org-agenda-filter t]
  2216. "--"
  2217. ["by category at cursor" org-agenda-filter-by-category t]
  2218. ["by tag" org-agenda-filter-by-tag t]
  2219. ["by effort" org-agenda-filter-by-effort t]
  2220. ["by regexp" org-agenda-filter-by-regexp t]
  2221. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2222. "--"
  2223. ["Remove all filtering" org-agenda-filter-remove-all t]
  2224. "--"
  2225. ["limit" org-agenda-limit-interactively t])
  2226. ["Rebuild buffer" org-agenda-redo t]
  2227. ["Write view to file" org-agenda-write t]
  2228. ["Save all Org buffers" org-save-all-org-buffers t]
  2229. "--"
  2230. ["Show original entry" org-agenda-show t]
  2231. ["Go To (other window)" org-agenda-goto t]
  2232. ["Go To (this window)" org-agenda-switch-to t]
  2233. ["Capture with cursor date" org-agenda-capture t]
  2234. ["Follow Mode" org-agenda-follow-mode
  2235. :style toggle :selected org-agenda-follow-mode :active t]
  2236. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2237. "--"
  2238. ("TODO"
  2239. ["Cycle TODO" org-agenda-todo t]
  2240. ["Next TODO set" org-agenda-todo-nextset t]
  2241. ["Previous TODO set" org-agenda-todo-previousset t]
  2242. ["Add note" org-agenda-add-note t])
  2243. ("Archive/Refile/Delete"
  2244. ["Archive default" org-agenda-archive-default t]
  2245. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2246. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2247. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2248. ["Archive subtree" org-agenda-archive t]
  2249. "--"
  2250. ["Refile" org-agenda-refile t]
  2251. "--"
  2252. ["Delete subtree" org-agenda-kill t])
  2253. ("Bulk action"
  2254. ["Mark entry" org-agenda-bulk-mark t]
  2255. ["Mark all" org-agenda-bulk-mark-all t]
  2256. ["Unmark entry" org-agenda-bulk-unmark t]
  2257. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2258. ["Toggle mark" org-agenda-bulk-toggle t]
  2259. ["Toggle all" org-agenda-bulk-toggle-all t]
  2260. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2261. ["Act on all marked" org-agenda-bulk-action t]
  2262. "--"
  2263. ("Tags and Properties"
  2264. ["Show all Tags" org-agenda-show-tags t]
  2265. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2266. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2267. "--"
  2268. ["Column View" org-columns t])
  2269. ("Deadline/Schedule"
  2270. ["Schedule" org-agenda-schedule t]
  2271. ["Set Deadline" org-agenda-deadline t]
  2272. "--"
  2273. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2274. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2275. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2276. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2277. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2278. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2279. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2280. ("Clock and Effort"
  2281. ["Clock in" org-agenda-clock-in t]
  2282. ["Clock out" org-agenda-clock-out t]
  2283. ["Clock cancel" org-agenda-clock-cancel t]
  2284. ["Goto running clock" org-clock-goto t]
  2285. "--"
  2286. ["Set Effort" org-agenda-set-effort t]
  2287. ["Change clocked effort" org-clock-modify-effort-estimate
  2288. (org-clock-is-active)])
  2289. ("Priority"
  2290. ["Set Priority" org-agenda-priority t]
  2291. ["Increase Priority" org-agenda-priority-up t]
  2292. ["Decrease Priority" org-agenda-priority-down t]
  2293. ["Show Priority" org-show-priority t])
  2294. ("Calendar/Diary"
  2295. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2296. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2297. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2298. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2299. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2300. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2301. "--"
  2302. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2303. "--"
  2304. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2305. "--"
  2306. ("MobileOrg"
  2307. ["Push Files and Views" org-mobile-push t]
  2308. ["Get Captured and Flagged" org-mobile-pull t]
  2309. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2310. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2311. "--"
  2312. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2313. "--"
  2314. ["Quit" org-agenda-quit t]
  2315. ["Exit and Release Buffers" org-agenda-exit t]
  2316. ))
  2317. ;;; Agenda undo
  2318. (defvar org-agenda-allow-remote-undo t
  2319. "Non-nil means allow remote undo from the agenda buffer.")
  2320. (defvar org-agenda-undo-has-started-in nil
  2321. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2322. (defun org-agenda-undo ()
  2323. "Undo a remote editing step in the agenda.
  2324. This undoes changes both in the agenda buffer and in the remote buffer
  2325. that have been changed along."
  2326. (interactive)
  2327. (or org-agenda-allow-remote-undo
  2328. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2329. (when (not (eq this-command last-command))
  2330. (setq org-agenda-undo-has-started-in nil
  2331. org-agenda-pending-undo-list org-agenda-undo-list))
  2332. (when (not org-agenda-pending-undo-list)
  2333. (user-error "No further undo information"))
  2334. (let* ((entry (pop org-agenda-pending-undo-list))
  2335. buf line cmd rembuf)
  2336. (setq cmd (pop entry) line (pop entry))
  2337. (setq rembuf (nth 2 entry))
  2338. (org-with-remote-undo rembuf
  2339. (while (bufferp (setq buf (pop entry)))
  2340. (when (pop entry)
  2341. (with-current-buffer buf
  2342. (let ((last-undo-buffer buf)
  2343. (inhibit-read-only t))
  2344. (unless (memq buf org-agenda-undo-has-started-in)
  2345. (push buf org-agenda-undo-has-started-in)
  2346. (make-local-variable 'pending-undo-list)
  2347. (undo-start))
  2348. (while (and pending-undo-list
  2349. (listp pending-undo-list)
  2350. (not (car pending-undo-list)))
  2351. (pop pending-undo-list))
  2352. (undo-more 1))))))
  2353. (org-goto-line line)
  2354. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2355. (defun org-verify-change-for-undo (l1 l2)
  2356. "Verify that a real change occurred between the undo lists L1 and L2."
  2357. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2358. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2359. (not (eq l1 l2)))
  2360. ;;; Agenda dispatch
  2361. (defvar org-agenda-restrict-begin (make-marker))
  2362. (defvar org-agenda-restrict-end (make-marker))
  2363. (defvar org-agenda-last-dispatch-buffer nil)
  2364. (defvar org-agenda-overriding-restriction nil)
  2365. (defcustom org-agenda-custom-commands-contexts nil
  2366. "Alist of custom agenda keys and contextual rules.
  2367. For example, if you have a custom agenda command \"p\" and you
  2368. want this command to be accessible only from plain text files,
  2369. use this:
  2370. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2371. Here are the available contexts definitions:
  2372. in-file: command displayed only in matching files
  2373. in-mode: command displayed only in matching modes
  2374. not-in-file: command not displayed in matching files
  2375. not-in-mode: command not displayed in matching modes
  2376. in-buffer: command displayed only in matching buffers
  2377. not-in-buffer: command not displayed in matching buffers
  2378. [function]: a custom function taking no argument
  2379. If you define several checks, the agenda command will be
  2380. accessible if there is at least one valid check.
  2381. You can also bind a key to another agenda custom command
  2382. depending on contextual rules.
  2383. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2384. Here it means: in .txt files, use \"p\" as the key for the
  2385. agenda command otherwise associated with \"q\". (The command
  2386. originally associated with \"q\" is not displayed to avoid
  2387. duplicates.)"
  2388. :version "24.3"
  2389. :group 'org-agenda-custom-commands
  2390. :type '(repeat (list :tag "Rule"
  2391. (string :tag " Agenda key")
  2392. (string :tag "Replace by command")
  2393. (repeat :tag "Available when"
  2394. (choice
  2395. (cons :tag "Condition"
  2396. (choice
  2397. (const :tag "In file" in-file)
  2398. (const :tag "Not in file" not-in-file)
  2399. (const :tag "In buffer" in-buffer)
  2400. (const :tag "Not in buffer" not-in-buffer)
  2401. (const :tag "In mode" in-mode)
  2402. (const :tag "Not in mode" not-in-mode))
  2403. (regexp))
  2404. (function :tag "Custom function"))))))
  2405. (defcustom org-agenda-max-entries nil
  2406. "Maximum number of entries to display in an agenda.
  2407. This can be nil (no limit) or an integer or an alist of agenda
  2408. types with an associated number of entries to display in this
  2409. type."
  2410. :version "24.4"
  2411. :package-version '(Org . "8.0")
  2412. :group 'org-agenda-custom-commands
  2413. :type '(choice (symbol :tag "No limit" nil)
  2414. (integer :tag "Max number of entries")
  2415. (repeat
  2416. (cons (choice :tag "Agenda type"
  2417. (const agenda)
  2418. (const todo)
  2419. (const tags)
  2420. (const search))
  2421. (integer :tag "Max number of entries")))))
  2422. (defcustom org-agenda-max-todos nil
  2423. "Maximum number of TODOs to display in an agenda.
  2424. This can be nil (no limit) or an integer or an alist of agenda
  2425. types with an associated number of entries to display in this
  2426. type."
  2427. :version "24.4"
  2428. :package-version '(Org . "8.0")
  2429. :group 'org-agenda-custom-commands
  2430. :type '(choice (symbol :tag "No limit" nil)
  2431. (integer :tag "Max number of TODOs")
  2432. (repeat
  2433. (cons (choice :tag "Agenda type"
  2434. (const agenda)
  2435. (const todo)
  2436. (const tags)
  2437. (const search))
  2438. (integer :tag "Max number of TODOs")))))
  2439. (defcustom org-agenda-max-tags nil
  2440. "Maximum number of tagged entries to display in an agenda.
  2441. This can be nil (no limit) or an integer or an alist of agenda
  2442. types with an associated number of entries to display in this
  2443. type."
  2444. :version "24.4"
  2445. :package-version '(Org . "8.0")
  2446. :group 'org-agenda-custom-commands
  2447. :type '(choice (symbol :tag "No limit" nil)
  2448. (integer :tag "Max number of tagged entries")
  2449. (repeat
  2450. (cons (choice :tag "Agenda type"
  2451. (const agenda)
  2452. (const todo)
  2453. (const tags)
  2454. (const search))
  2455. (integer :tag "Max number of tagged entries")))))
  2456. (defcustom org-agenda-max-effort nil
  2457. "Maximum cumulated effort duration for the agenda.
  2458. This can be nil (no limit) or a number of minutes (as an integer)
  2459. or an alist of agenda types with an associated number of minutes
  2460. to limit entries to in this type."
  2461. :version "24.4"
  2462. :package-version '(Org . "8.0")
  2463. :group 'org-agenda-custom-commands
  2464. :type '(choice (symbol :tag "No limit" nil)
  2465. (integer :tag "Max number of minutes")
  2466. (repeat
  2467. (cons (choice :tag "Agenda type"
  2468. (const agenda)
  2469. (const todo)
  2470. (const tags)
  2471. (const search))
  2472. (integer :tag "Max number of minutes")))))
  2473. (defvar org-agenda-keep-restricted-file-list nil)
  2474. (defvar org-keys nil)
  2475. (defvar org-match nil)
  2476. ;;;###autoload
  2477. (defun org-agenda (&optional arg org-keys restriction)
  2478. "Dispatch agenda commands to collect entries to the agenda buffer.
  2479. Prompts for a command to execute. Any prefix arg will be passed
  2480. on to the selected command. The default selections are:
  2481. a Call `org-agenda-list' to display the agenda for current day or week.
  2482. t Call `org-todo-list' to display the global todo list.
  2483. T Call `org-todo-list' to display the global todo list, select only
  2484. entries with a specific TODO keyword (the user gets a prompt).
  2485. m Call `org-tags-view' to display headlines with tags matching
  2486. a condition (the user is prompted for the condition).
  2487. M Like `m', but select only TODO entries, no ordinary headlines.
  2488. e Export views to associated files.
  2489. s Search entries for keywords.
  2490. S Search entries for keywords, only with TODO keywords.
  2491. / Multi occur across all agenda files and also files listed
  2492. in `org-agenda-text-search-extra-files'.
  2493. < Restrict agenda commands to buffer, subtree, or region.
  2494. Press several times to get the desired effect.
  2495. > Remove a previous restriction.
  2496. # List \"stuck\" projects.
  2497. ! Configure what \"stuck\" means.
  2498. C Configure custom agenda commands.
  2499. More commands can be added by configuring the variable
  2500. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2501. searches can be pre-defined in this way.
  2502. If the current buffer is in Org mode and visiting a file, you can also
  2503. first press `<' once to indicate that the agenda should be temporarily
  2504. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2505. Pressing `<' twice means to restrict to the current subtree or region
  2506. \(if active)."
  2507. (interactive "P")
  2508. (catch 'exit
  2509. (let* ((prefix-descriptions nil)
  2510. (org-agenda-buffer-name org-agenda-buffer-name)
  2511. (org-agenda-window-setup (if (equal (buffer-name)
  2512. org-agenda-buffer-name)
  2513. 'current-window
  2514. org-agenda-window-setup))
  2515. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2516. (org-agenda-custom-commands
  2517. ;; normalize different versions
  2518. (delq nil
  2519. (mapcar
  2520. (lambda (x)
  2521. (cond ((stringp (cdr x))
  2522. (push x prefix-descriptions)
  2523. nil)
  2524. ((stringp (nth 1 x)) x)
  2525. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2526. (t (cons (car x) (cons "" (cdr x))))))
  2527. org-agenda-custom-commands)))
  2528. (org-agenda-custom-commands
  2529. (org-contextualize-keys
  2530. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2531. (buf (current-buffer))
  2532. (bfn (buffer-file-name (buffer-base-buffer)))
  2533. entry key type org-match lprops ans)
  2534. ;; Turn off restriction unless there is an overriding one,
  2535. (unless org-agenda-overriding-restriction
  2536. (unless org-agenda-keep-restricted-file-list
  2537. ;; There is a request to keep the file list in place
  2538. (put 'org-agenda-files 'org-restrict nil))
  2539. (setq org-agenda-restrict nil)
  2540. (move-marker org-agenda-restrict-begin nil)
  2541. (move-marker org-agenda-restrict-end nil))
  2542. ;; Delete old local properties
  2543. (put 'org-agenda-redo-command 'org-lprops nil)
  2544. ;; Delete previously set last-arguments
  2545. (put 'org-agenda-redo-command 'last-args nil)
  2546. ;; Remember where this call originated
  2547. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2548. (unless org-keys
  2549. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2550. org-keys (car ans)
  2551. restriction (cdr ans)))
  2552. ;; If we have sticky agenda buffers, set a name for the buffer,
  2553. ;; depending on the invoking keys. The user may still set this
  2554. ;; as a command option, which will overwrite what we do here.
  2555. (when org-agenda-sticky
  2556. (setq org-agenda-buffer-name
  2557. (format "*Org Agenda(%s)*" org-keys)))
  2558. ;; Establish the restriction, if any
  2559. (when (and (not org-agenda-overriding-restriction) restriction)
  2560. (put 'org-agenda-files 'org-restrict (list bfn))
  2561. (cond
  2562. ((eq restriction 'region)
  2563. (setq org-agenda-restrict (current-buffer))
  2564. (move-marker org-agenda-restrict-begin (region-beginning))
  2565. (move-marker org-agenda-restrict-end (region-end)))
  2566. ((eq restriction 'subtree)
  2567. (save-excursion
  2568. (setq org-agenda-restrict (current-buffer))
  2569. (org-back-to-heading t)
  2570. (move-marker org-agenda-restrict-begin (point))
  2571. (move-marker org-agenda-restrict-end
  2572. (progn (org-end-of-subtree t)))))
  2573. ((and (eq restriction 'buffer)
  2574. (or (< 1 (point-min))
  2575. (< (point-max) (1+ (buffer-size)))))
  2576. (setq org-agenda-restrict (current-buffer))
  2577. (move-marker org-agenda-restrict-begin (point-min))
  2578. (move-marker org-agenda-restrict-end (point-max)))))
  2579. ;; For example the todo list should not need it (but does...)
  2580. (cond
  2581. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2582. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2583. (progn
  2584. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2585. lprops (nth 4 entry))
  2586. (when org-agenda-sticky
  2587. (setq org-agenda-buffer-name
  2588. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2589. (format "*Org Agenda(%s)*" org-keys))))
  2590. (put 'org-agenda-redo-command 'org-lprops lprops)
  2591. (cond
  2592. ((eq type 'agenda)
  2593. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2594. ((eq type 'agenda*)
  2595. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2596. ((eq type 'alltodo)
  2597. (org-let lprops '(org-todo-list current-prefix-arg)))
  2598. ((eq type 'search)
  2599. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2600. ((eq type 'stuck)
  2601. (org-let lprops '(org-agenda-list-stuck-projects
  2602. current-prefix-arg)))
  2603. ((eq type 'tags)
  2604. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2605. ((eq type 'tags-todo)
  2606. (org-let lprops '(org-tags-view '(4) org-match)))
  2607. ((eq type 'todo)
  2608. (org-let lprops '(org-todo-list org-match)))
  2609. ((eq type 'tags-tree)
  2610. (org-check-for-org-mode)
  2611. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2612. ((eq type 'todo-tree)
  2613. (org-check-for-org-mode)
  2614. (org-let lprops
  2615. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2616. (regexp-quote org-match) "\\>"))))
  2617. ((eq type 'occur-tree)
  2618. (org-check-for-org-mode)
  2619. (org-let lprops '(org-occur org-match)))
  2620. ((functionp type)
  2621. (org-let lprops '(funcall type org-match)))
  2622. ((fboundp type)
  2623. (org-let lprops '(funcall type org-match)))
  2624. (t (user-error "Invalid custom agenda command type %s" type))))
  2625. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2626. ((equal org-keys "C")
  2627. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2628. (customize-variable 'org-agenda-custom-commands))
  2629. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2630. ((equal org-keys "s") (call-interactively 'org-search-view))
  2631. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2632. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2633. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2634. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2635. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2636. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2637. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2638. (add-hook
  2639. 'post-command-hook
  2640. (lambda ()
  2641. (unless (current-message)
  2642. (let* ((m (org-agenda-get-any-marker))
  2643. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2644. (when note
  2645. (message "FLAGGING-NOTE ([?] for more info): %s"
  2646. (org-add-props
  2647. (replace-regexp-in-string
  2648. "\\\\n" "//"
  2649. (copy-sequence note))
  2650. nil 'face 'org-warning))))))
  2651. t t))
  2652. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2653. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2654. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2655. (t (user-error "Invalid agenda key"))))))
  2656. (defvar org-agenda-multi)
  2657. (defun org-agenda-append-agenda ()
  2658. "Append another agenda view to the current one.
  2659. This function allows interactive building of block agendas.
  2660. Agenda views are separated by `org-agenda-block-separator'."
  2661. (interactive)
  2662. (unless (derived-mode-p 'org-agenda-mode)
  2663. (user-error "Can only append from within agenda buffer"))
  2664. (let ((org-agenda-multi t))
  2665. (org-agenda)
  2666. (widen)
  2667. (org-agenda-finalize)
  2668. (setq buffer-read-only t)
  2669. (org-agenda-fit-window-to-buffer)))
  2670. (defun org-agenda-normalize-custom-commands (cmds)
  2671. "Normalize custom commands CMDS."
  2672. (delq nil
  2673. (mapcar
  2674. (lambda (x)
  2675. (cond ((stringp (cdr x)) nil)
  2676. ((stringp (nth 1 x)) x)
  2677. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2678. (t (cons (car x) (cons "" (cdr x))))))
  2679. cmds)))
  2680. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2681. "The user interface for selecting an agenda command."
  2682. (catch 'exit
  2683. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2684. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2685. (region-p (org-region-active-p))
  2686. (custom org-agenda-custom-commands)
  2687. (selstring "")
  2688. restriction second-time
  2689. c entry key type match prefixes rmheader header-end custom1 desc
  2690. line lines left right n n1)
  2691. (save-window-excursion
  2692. (delete-other-windows)
  2693. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2694. (erase-buffer)
  2695. (insert (eval-when-compile
  2696. (let ((header
  2697. "Press key for an agenda command:
  2698. -------------------------------- < Buffer, subtree/region restriction
  2699. a Agenda for current week or day > Remove restriction
  2700. t List of all TODO entries e Export agenda views
  2701. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2702. s Search for keywords M Like m, but only TODO entries
  2703. / Multi-occur S Like s, but only TODO entries
  2704. ? Find :FLAGGED: entries C Configure custom agenda commands
  2705. * Toggle sticky agenda views # List stuck projects (!=configure)
  2706. ")
  2707. (start 0))
  2708. (while (string-match
  2709. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2710. header start)
  2711. (setq start (match-end 0))
  2712. (add-text-properties (match-beginning 2) (match-end 2)
  2713. '(face bold) header))
  2714. header)))
  2715. (setq header-end (point-marker))
  2716. (while t
  2717. (setq custom1 custom)
  2718. (when (eq rmheader t)
  2719. (org-goto-line 1)
  2720. (re-search-forward ":" nil t)
  2721. (delete-region (match-end 0) (point-at-eol))
  2722. (forward-char 1)
  2723. (looking-at "-+")
  2724. (delete-region (match-end 0) (point-at-eol))
  2725. (move-marker header-end (match-end 0)))
  2726. (goto-char header-end)
  2727. (delete-region (point) (point-max))
  2728. ;; Produce all the lines that describe custom commands and prefixes
  2729. (setq lines nil)
  2730. (while (setq entry (pop custom1))
  2731. (setq key (car entry) desc (nth 1 entry)
  2732. type (nth 2 entry)
  2733. match (nth 3 entry))
  2734. (if (> (length key) 1)
  2735. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2736. (setq line
  2737. (format
  2738. "%-4s%-14s"
  2739. (org-add-props (copy-sequence key)
  2740. '(face bold))
  2741. (cond
  2742. ((string-match "\\S-" desc) desc)
  2743. ((eq type 'agenda) "Agenda for current week or day")
  2744. ((eq type 'agenda*) "Appointments for current week or day")
  2745. ((eq type 'alltodo) "List of all TODO entries")
  2746. ((eq type 'search) "Word search")
  2747. ((eq type 'stuck) "List of stuck projects")
  2748. ((eq type 'todo) "TODO keyword")
  2749. ((eq type 'tags) "Tags query")
  2750. ((eq type 'tags-todo) "Tags (TODO)")
  2751. ((eq type 'tags-tree) "Tags tree")
  2752. ((eq type 'todo-tree) "TODO kwd tree")
  2753. ((eq type 'occur-tree) "Occur tree")
  2754. ((functionp type) (if (symbolp type)
  2755. (symbol-name type)
  2756. "Lambda expression"))
  2757. (t "???"))))
  2758. (cond
  2759. ((not (org-string-nw-p match)) nil)
  2760. (org-agenda-menu-show-matcher
  2761. (setq line
  2762. (concat line ": "
  2763. (cond
  2764. ((stringp match)
  2765. (propertize match 'face 'org-warning))
  2766. ((listp type)
  2767. (format "set of %d commands" (length type)))))))
  2768. (t
  2769. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2770. (push line lines)))
  2771. (setq lines (nreverse lines))
  2772. (when prefixes
  2773. (mapc (lambda (x)
  2774. (push
  2775. (format "%s %s"
  2776. (org-add-props (char-to-string x)
  2777. nil 'face 'bold)
  2778. (or (cdr (assoc (concat selstring
  2779. (char-to-string x))
  2780. prefix-descriptions))
  2781. "Prefix key"))
  2782. lines))
  2783. prefixes))
  2784. ;; Check if we should display in two columns
  2785. (if org-agenda-menu-two-columns
  2786. (progn
  2787. (setq n (length lines)
  2788. n1 (+ (/ n 2) (mod n 2))
  2789. right (nthcdr n1 lines)
  2790. left (copy-sequence lines))
  2791. (setcdr (nthcdr (1- n1) left) nil))
  2792. (setq left lines right nil))
  2793. (while left
  2794. (insert "\n" (pop left))
  2795. (when right
  2796. (if (< (current-column) 40)
  2797. (move-to-column 40 t)
  2798. (insert " "))
  2799. (insert (pop right))))
  2800. ;; Make the window the right size
  2801. (goto-char (point-min))
  2802. (if second-time
  2803. (when (not (pos-visible-in-window-p (point-max)))
  2804. (org-fit-window-to-buffer))
  2805. (setq second-time t)
  2806. (org-fit-window-to-buffer))
  2807. ;; Hint to navigation if window too small for all information
  2808. (setq header-line-format
  2809. (when (not (pos-visible-in-window-p (point-max)))
  2810. "Use SPC, DEL, C-n or C-p to navigate."))
  2811. ;; Ask for selection
  2812. (cl-loop
  2813. do (progn
  2814. (message "Press key for agenda command%s:"
  2815. (if (or restrict-ok org-agenda-overriding-restriction)
  2816. (if org-agenda-overriding-restriction
  2817. " (restriction lock active)"
  2818. (if restriction
  2819. (format " (restricted to %s)" restriction)
  2820. " (unrestricted)"))
  2821. ""))
  2822. (setq c (read-char-exclusive)))
  2823. until (not (memq c '(14 16 ?\s ?\d)))
  2824. do (cl-case c
  2825. (14 (if (not (pos-visible-in-window-p (point-max)))
  2826. (ignore-errors (scroll-up 1))
  2827. (message "End of buffer")
  2828. (sit-for 1)))
  2829. (16 (if (not (pos-visible-in-window-p (point-min)))
  2830. (ignore-errors (scroll-down 1))
  2831. (message "Beginning of buffer")
  2832. (sit-for 1)))
  2833. (?\s (if (not (pos-visible-in-window-p (point-max)))
  2834. (scroll-up nil)
  2835. (message "End of buffer")
  2836. (sit-for 1)))
  2837. (?\d (if (not (pos-visible-in-window-p (point-min)))
  2838. (scroll-down nil)
  2839. (message "Beginning of buffer")
  2840. (sit-for 1)))))
  2841. (message "")
  2842. (cond
  2843. ((assoc (char-to-string c) custom)
  2844. (setq selstring (concat selstring (char-to-string c)))
  2845. (throw 'exit (cons selstring restriction)))
  2846. ((memq c prefixes)
  2847. (setq selstring (concat selstring (char-to-string c))
  2848. prefixes nil
  2849. rmheader (or rmheader t)
  2850. custom (delq nil (mapcar
  2851. (lambda (x)
  2852. (if (or (= (length (car x)) 1)
  2853. (/= (string-to-char (car x)) c))
  2854. nil
  2855. (cons (substring (car x) 1) (cdr x))))
  2856. custom))))
  2857. ((eq c ?*)
  2858. (call-interactively 'org-toggle-sticky-agenda)
  2859. (sit-for 2))
  2860. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2861. (message "Restriction is only possible in Org buffers")
  2862. (ding) (sit-for 1))
  2863. ((eq c ?1)
  2864. (org-agenda-remove-restriction-lock 'noupdate)
  2865. (setq restriction 'buffer))
  2866. ((eq c ?0)
  2867. (org-agenda-remove-restriction-lock 'noupdate)
  2868. (setq restriction (if region-p 'region 'subtree)))
  2869. ((eq c ?<)
  2870. (org-agenda-remove-restriction-lock 'noupdate)
  2871. (setq restriction
  2872. (cond
  2873. ((eq restriction 'buffer)
  2874. (if region-p 'region 'subtree))
  2875. ((memq restriction '(subtree region))
  2876. nil)
  2877. (t 'buffer))))
  2878. ((eq c ?>)
  2879. (org-agenda-remove-restriction-lock 'noupdate)
  2880. (setq restriction nil))
  2881. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2882. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2883. ((and (> (length selstring) 0) (eq c ?\d))
  2884. (delete-window)
  2885. (org-agenda-get-restriction-and-command prefix-descriptions))
  2886. ((equal c ?q) (error "Abort"))
  2887. (t (user-error "Invalid key %c" c))))))))
  2888. (defun org-agenda-fit-window-to-buffer ()
  2889. "Fit the window to the buffer size."
  2890. (and (memq org-agenda-window-setup '(reorganize-frame))
  2891. (fboundp 'fit-window-to-buffer)
  2892. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2893. (= (car org-agenda-window-frame-fractions) 1.0))
  2894. (delete-other-windows)
  2895. (org-fit-window-to-buffer
  2896. nil
  2897. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2898. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2899. (defvar org-cmd nil)
  2900. (defvar org-agenda-overriding-cmd nil)
  2901. (defvar org-agenda-overriding-arguments nil)
  2902. (defvar org-agenda-overriding-cmd-arguments nil)
  2903. (defun org-agenda-run-series (name series)
  2904. "Run agenda NAME as a SERIES of agenda commands."
  2905. (org-let (nth 1 series) '(org-agenda-prepare name))
  2906. ;; We need to reset agenda markers here, because when constructing a
  2907. ;; block agenda, the individual blocks do not do that.
  2908. (org-agenda-reset-markers)
  2909. (let* ((org-agenda-multi t)
  2910. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2911. (cmds (car series))
  2912. (gprops (nth 1 series))
  2913. match ;; The byte compiler incorrectly complains about this. Keep it!
  2914. org-cmd type lprops)
  2915. (while (setq org-cmd (pop cmds))
  2916. (setq type (car org-cmd))
  2917. (setq match (eval (nth 1 org-cmd)))
  2918. (setq lprops (nth 2 org-cmd))
  2919. (let ((org-agenda-overriding-arguments
  2920. (if (eq org-agenda-overriding-cmd org-cmd)
  2921. (or org-agenda-overriding-arguments
  2922. org-agenda-overriding-cmd-arguments))))
  2923. (cond
  2924. ((eq type 'agenda)
  2925. (org-let2 gprops lprops
  2926. '(call-interactively 'org-agenda-list)))
  2927. ((eq type 'agenda*)
  2928. (org-let2 gprops lprops
  2929. '(funcall 'org-agenda-list nil nil t)))
  2930. ((eq type 'alltodo)
  2931. (org-let2 gprops lprops
  2932. '(call-interactively 'org-todo-list)))
  2933. ((eq type 'search)
  2934. (org-let2 gprops lprops
  2935. '(org-search-view current-prefix-arg match nil)))
  2936. ((eq type 'stuck)
  2937. (org-let2 gprops lprops
  2938. '(call-interactively 'org-agenda-list-stuck-projects)))
  2939. ((eq type 'tags)
  2940. (org-let2 gprops lprops
  2941. '(org-tags-view current-prefix-arg match)))
  2942. ((eq type 'tags-todo)
  2943. (org-let2 gprops lprops
  2944. '(org-tags-view '(4) match)))
  2945. ((eq type 'todo)
  2946. (org-let2 gprops lprops
  2947. '(org-todo-list match)))
  2948. ((fboundp type)
  2949. (org-let2 gprops lprops
  2950. '(funcall type match)))
  2951. (t (error "Invalid type in command series")))))
  2952. (widen)
  2953. (let ((inhibit-read-only t))
  2954. (add-text-properties (point-min) (point-max)
  2955. `(org-series t org-series-redo-cmd ,redo)))
  2956. (setq org-agenda-redo-command redo)
  2957. (goto-char (point-min)))
  2958. (org-agenda-fit-window-to-buffer)
  2959. (org-let (nth 1 series) '(org-agenda-finalize)))
  2960. ;;;###autoload
  2961. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2962. "Run an agenda command in batch mode and send the result to STDOUT.
  2963. If CMD-KEY is a string of length 1, it is used as a key in
  2964. `org-agenda-custom-commands' and triggers this command. If it is a
  2965. longer string it is used as a tags/todo match string.
  2966. Parameters are alternating variable names and values that will be bound
  2967. before running the agenda command."
  2968. (org-eval-in-environment (org-make-parameter-alist parameters)
  2969. (let (org-agenda-sticky)
  2970. (if (> (length cmd-key) 1)
  2971. (org-tags-view nil cmd-key)
  2972. (org-agenda nil cmd-key))))
  2973. (set-buffer org-agenda-buffer-name)
  2974. (princ (buffer-string)))
  2975. (defvar org-agenda-info nil)
  2976. ;;;###autoload
  2977. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2978. "Run an agenda command in batch mode and send the result to STDOUT.
  2979. If CMD-KEY is a string of length 1, it is used as a key in
  2980. `org-agenda-custom-commands' and triggers this command. If it is a
  2981. longer string it is used as a tags/todo match string.
  2982. Parameters are alternating variable names and values that will be bound
  2983. before running the agenda command.
  2984. The output gives a line for each selected agenda item. Each
  2985. item is a list of comma-separated values, like this:
  2986. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2987. category The category of the item
  2988. head The headline, without TODO kwd, TAGS and PRIORITY
  2989. type The type of the agenda entry, can be
  2990. todo selected in TODO match
  2991. tagsmatch selected in tags match
  2992. diary imported from diary
  2993. deadline a deadline on given date
  2994. scheduled scheduled on given date
  2995. timestamp entry has timestamp on given date
  2996. closed entry was closed on given date
  2997. upcoming-deadline warning about deadline
  2998. past-scheduled forwarded scheduled item
  2999. block entry has date block including g. date
  3000. todo The todo keyword, if any
  3001. tags All tags including inherited ones, separated by colons
  3002. date The relevant date, like 2007-2-14
  3003. time The time, like 15:00-16:50
  3004. extra String with extra planning info
  3005. priority-l The priority letter if any was given
  3006. priority-n The computed numerical priority
  3007. agenda-day The day in the agenda where this is listed"
  3008. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  3009. (org-make-parameter-alist parameters))
  3010. (if (> (length cmd-key) 2)
  3011. (org-tags-view nil cmd-key)
  3012. (org-agenda nil cmd-key)))
  3013. (set-buffer org-agenda-buffer-name)
  3014. (let ((lines (org-split-string (buffer-string) "\n")))
  3015. (dolist (line lines)
  3016. (when (get-text-property 0 'org-category line)
  3017. (setq org-agenda-info
  3018. (org-fix-agenda-info (text-properties-at 0 line)))
  3019. (princ
  3020. (mapconcat 'org-agenda-export-csv-mapper
  3021. '(org-category txt type todo tags date time extra
  3022. priority-letter priority agenda-day)
  3023. ","))
  3024. (princ "\n")))))
  3025. (defun org-fix-agenda-info (props)
  3026. "Make sure all properties on an agenda item have a canonical form.
  3027. This ensures the export commands can easily use it."
  3028. (let (tmp re)
  3029. (when (setq tmp (plist-get props 'tags))
  3030. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3031. (when (setq tmp (plist-get props 'date))
  3032. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3033. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3034. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3035. (setq tmp (calendar-date-string tmp)))
  3036. (setq props (plist-put props 'date tmp)))
  3037. (when (setq tmp (plist-get props 'day))
  3038. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3039. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3040. (setq tmp (calendar-date-string tmp)))
  3041. (setq props (plist-put props 'day tmp))
  3042. (setq props (plist-put props 'agenda-day tmp)))
  3043. (when (setq tmp (plist-get props 'txt))
  3044. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3045. (plist-put props 'priority-letter (match-string 1 tmp))
  3046. (setq tmp (replace-match "" t t tmp)))
  3047. (when (and (setq re (plist-get props 'org-todo-regexp))
  3048. (setq re (concat "\\`\\.*" re " ?"))
  3049. (let ((case-fold-search nil)) (string-match re tmp)))
  3050. (plist-put props 'todo (match-string 1 tmp))
  3051. (setq tmp (replace-match "" t t tmp)))
  3052. (plist-put props 'txt tmp)))
  3053. props)
  3054. (defun org-agenda-export-csv-mapper (prop)
  3055. (let ((res (plist-get org-agenda-info prop)))
  3056. (setq res
  3057. (cond
  3058. ((not res) "")
  3059. ((stringp res) res)
  3060. (t (prin1-to-string res))))
  3061. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3062. ;;;###autoload
  3063. (defun org-store-agenda-views (&rest parameters)
  3064. "Store agenda views."
  3065. (interactive)
  3066. (eval (list 'org-batch-store-agenda-views)))
  3067. ;;;###autoload
  3068. (defmacro org-batch-store-agenda-views (&rest parameters)
  3069. "Run all custom agenda commands that have a file argument."
  3070. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3071. (pop-up-frames nil)
  3072. (dir default-directory)
  3073. (pars (org-make-parameter-alist parameters))
  3074. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3075. (save-window-excursion
  3076. (while cmds
  3077. (setq cmd (pop cmds)
  3078. thiscmdkey (car cmd)
  3079. thiscmdcmd (cdr cmd)
  3080. match (nth 2 thiscmdcmd)
  3081. bufname (if org-agenda-sticky
  3082. (or (and (stringp match)
  3083. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3084. (format "*Org Agenda(%s)*" thiscmdkey))
  3085. org-agenda-buffer-name)
  3086. cmd-or-set (nth 2 cmd)
  3087. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3088. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3089. (if (stringp files) (setq files (list files)))
  3090. (when files
  3091. (org-eval-in-environment (append org-agenda-exporter-settings
  3092. opts pars)
  3093. (org-agenda nil thiscmdkey))
  3094. (set-buffer bufname)
  3095. (while files
  3096. (org-eval-in-environment (append org-agenda-exporter-settings
  3097. opts pars)
  3098. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3099. (and (get-buffer bufname)
  3100. (kill-buffer bufname)))))))
  3101. (defvar org-agenda-current-span nil
  3102. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3103. (defun org-agenda-mark-header-line (pos)
  3104. "Mark the line at POS as an agenda structure header."
  3105. (save-excursion
  3106. (goto-char pos)
  3107. (put-text-property (point-at-bol) (point-at-eol)
  3108. 'org-agenda-structural-header t)
  3109. (when org-agenda-title-append
  3110. (put-text-property (point-at-bol) (point-at-eol)
  3111. 'org-agenda-title-append org-agenda-title-append))))
  3112. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3113. (defvar org-agenda-write-buffer-name "Agenda View")
  3114. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3115. "Write the current buffer (an agenda view) as a file.
  3116. Depending on the extension of the file name, plain text (.txt),
  3117. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3118. If the extension is .ics, translate visible agenda into iCalendar
  3119. format. If the extension is .org, collect all subtrees
  3120. corresponding to the agenda entries and add them in an .org file.
  3121. With prefix argument OPEN, open the new file immediately. If
  3122. NOSETTINGS is given, do not scope the settings of
  3123. `org-agenda-exporter-settings' into the export commands. This is
  3124. used when the settings have already been scoped and we do not
  3125. wish to overrule other, higher priority settings. If
  3126. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3127. the agenda to write."
  3128. (interactive "FWrite agenda to file: \nP")
  3129. (if (or (not (file-writable-p file))
  3130. (and (file-exists-p file)
  3131. (if (called-interactively-p 'any)
  3132. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3133. (user-error "Cannot write agenda to file %s" file))
  3134. (org-let (if nosettings nil org-agenda-exporter-settings)
  3135. '(save-excursion
  3136. (save-window-excursion
  3137. (let ((bs (copy-sequence (buffer-string)))
  3138. (extension (file-name-extension file))
  3139. (default-directory (file-name-directory file))
  3140. beg content)
  3141. (with-temp-buffer
  3142. (rename-buffer org-agenda-write-buffer-name t)
  3143. (set-buffer-modified-p nil)
  3144. (insert bs)
  3145. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3146. (run-hooks 'org-agenda-before-write-hook)
  3147. (cond
  3148. ((bound-and-true-p org-mobile-creating-agendas)
  3149. (org-mobile-write-agenda-for-mobile file))
  3150. ((string= "org" extension)
  3151. (let (content p m message-log-max)
  3152. (goto-char (point-min))
  3153. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3154. (goto-char p)
  3155. (setq m (get-text-property (point) 'org-hd-marker))
  3156. (when m
  3157. (push (save-excursion
  3158. (set-buffer (marker-buffer m))
  3159. (goto-char m)
  3160. (org-copy-subtree 1 nil t t)
  3161. org-subtree-clip)
  3162. content)))
  3163. (find-file file)
  3164. (erase-buffer)
  3165. (dolist (s content) (org-paste-subtree 1 s))
  3166. (write-file file)
  3167. (kill-buffer (current-buffer))
  3168. (message "Org file written to %s" file)))
  3169. ((member extension '("html" "htm"))
  3170. (or (require 'htmlize nil t)
  3171. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3172. (set-buffer (htmlize-buffer (current-buffer)))
  3173. (when org-agenda-export-html-style
  3174. ;; replace <style> section with org-agenda-export-html-style
  3175. (goto-char (point-min))
  3176. (kill-region (- (search-forward "<style") 6)
  3177. (search-forward "</style>"))
  3178. (insert org-agenda-export-html-style))
  3179. (write-file file)
  3180. (kill-buffer (current-buffer))
  3181. (message "HTML written to %s" file))
  3182. ((string= "ps" extension)
  3183. (require 'ps-print)
  3184. (ps-print-buffer-with-faces file)
  3185. (message "Postscript written to %s" file))
  3186. ((string= "pdf" extension)
  3187. (require 'ps-print)
  3188. (ps-print-buffer-with-faces
  3189. (concat (file-name-sans-extension file) ".ps"))
  3190. (call-process "ps2pdf" nil nil nil
  3191. (expand-file-name
  3192. (concat (file-name-sans-extension file) ".ps"))
  3193. (expand-file-name file))
  3194. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3195. (message "PDF written to %s" file))
  3196. ((string= "ics" extension)
  3197. (require 'ox-icalendar)
  3198. (org-icalendar-export-current-agenda (expand-file-name file)))
  3199. (t
  3200. (let ((bs (buffer-string)))
  3201. (find-file file)
  3202. (erase-buffer)
  3203. (insert bs)
  3204. (save-buffer 0)
  3205. (kill-buffer (current-buffer))
  3206. (message "Plain text written to %s" file))))))))
  3207. (set-buffer (or agenda-bufname
  3208. (and (called-interactively-p 'any) (buffer-name))
  3209. org-agenda-buffer-name)))
  3210. (when open (org-open-file file)))
  3211. (defun org-agenda-remove-marked-text (property &optional value)
  3212. "Delete all text marked with VALUE of PROPERTY.
  3213. VALUE defaults to t."
  3214. (let (beg)
  3215. (setq value (or value t))
  3216. (while (setq beg (text-property-any (point-min) (point-max)
  3217. property value))
  3218. (delete-region
  3219. beg (or (next-single-property-change beg property)
  3220. (point-max))))))
  3221. (defun org-agenda-add-entry-text ()
  3222. "Add entry text to agenda lines.
  3223. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3224. entry text following headings shown in the agenda.
  3225. Drawers will be excluded, also the line with scheduling/deadline info."
  3226. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3227. (not (bound-and-true-p org-mobile-creating-agendas)))
  3228. (let (m txt)
  3229. (goto-char (point-min))
  3230. (while (not (eobp))
  3231. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3232. (beginning-of-line 2)
  3233. (setq txt (org-agenda-get-some-entry-text
  3234. m org-agenda-add-entry-text-maxlines " > "))
  3235. (end-of-line 1)
  3236. (if (string-match "\\S-" txt)
  3237. (insert "\n" txt)
  3238. (or (eobp) (forward-char 1))))))))
  3239. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3240. &rest keep)
  3241. "Extract entry text from MARKER, at most N-LINES lines.
  3242. This will ignore drawers etc, just get the text.
  3243. If INDENT is given, prefix every line with this string. If KEEP is
  3244. given, it is a list of symbols, defining stuff that should not be
  3245. removed from the entry content. Currently only `planning' is allowed here."
  3246. (let (txt drawer-re kwd-time-re ind)
  3247. (save-excursion
  3248. (with-current-buffer (marker-buffer marker)
  3249. (if (not (derived-mode-p 'org-mode))
  3250. (setq txt "")
  3251. (org-with-wide-buffer
  3252. (goto-char marker)
  3253. (end-of-line 1)
  3254. (setq txt (buffer-substring
  3255. (min (1+ (point)) (point-max))
  3256. (progn (outline-next-heading) (point)))
  3257. drawer-re org-drawer-regexp
  3258. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3259. ".*\n?"))
  3260. (with-temp-buffer
  3261. (insert txt)
  3262. (when org-agenda-add-entry-text-descriptive-links
  3263. (goto-char (point-min))
  3264. (while (org-activate-links (point-max))
  3265. (add-text-properties (match-beginning 0) (match-end 0)
  3266. '(face org-link))))
  3267. (goto-char (point-min))
  3268. (while (re-search-forward org-link-bracket-re (point-max) t)
  3269. (set-text-properties (match-beginning 0) (match-end 0)
  3270. nil))
  3271. (goto-char (point-min))
  3272. (while (re-search-forward drawer-re nil t)
  3273. (delete-region
  3274. (match-beginning 0)
  3275. (progn (re-search-forward
  3276. "^[ \t]*:END:.*\n?" nil 'move)
  3277. (point))))
  3278. (unless (member 'planning keep)
  3279. (goto-char (point-min))
  3280. (while (re-search-forward kwd-time-re nil t)
  3281. (replace-match "")))
  3282. (goto-char (point-min))
  3283. (when org-agenda-entry-text-exclude-regexps
  3284. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3285. (while (setq re (pop re-list))
  3286. (goto-char (point-min))
  3287. (while (re-search-forward re nil t)
  3288. (replace-match "")))))
  3289. (goto-char (point-max))
  3290. (skip-chars-backward " \t\n")
  3291. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3292. ;; find and remove min common indentation
  3293. (goto-char (point-min))
  3294. (untabify (point-min) (point-max))
  3295. (setq ind (current-indentation))
  3296. (while (not (eobp))
  3297. (unless (looking-at "[ \t]*$")
  3298. (setq ind (min ind (current-indentation))))
  3299. (beginning-of-line 2))
  3300. (goto-char (point-min))
  3301. (while (not (eobp))
  3302. (unless (looking-at "[ \t]*$")
  3303. (move-to-column ind)
  3304. (delete-region (point-at-bol) (point)))
  3305. (beginning-of-line 2))
  3306. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3307. (goto-char (point-min))
  3308. (when indent
  3309. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3310. (replace-match indent t t)))
  3311. (goto-char (point-min))
  3312. (while (looking-at "[ \t]*\n") (replace-match ""))
  3313. (goto-char (point-max))
  3314. (when (> (org-current-line)
  3315. n-lines)
  3316. (org-goto-line (1+ n-lines))
  3317. (backward-char 1))
  3318. (setq txt (buffer-substring (point-min) (point))))))))
  3319. txt))
  3320. (defun org-check-for-org-mode ()
  3321. "Make sure current buffer is in Org mode. Error if not."
  3322. (or (derived-mode-p 'org-mode)
  3323. (error "Cannot execute Org agenda command on buffer in %s"
  3324. major-mode)))
  3325. ;;; Agenda prepare and finalize
  3326. (defvar org-agenda-multi nil) ; dynamically scoped
  3327. (defvar org-agenda-pre-window-conf nil)
  3328. (defvar org-agenda-columns-active nil)
  3329. (defvar org-agenda-name nil)
  3330. (defvar org-agenda-tag-filter nil)
  3331. (defvar org-agenda-category-filter nil)
  3332. (defvar org-agenda-regexp-filter nil)
  3333. (defvar org-agenda-effort-filter nil)
  3334. (defvar org-agenda-top-headline-filter nil)
  3335. (defvar org-agenda-represented-categories nil
  3336. "Cache for the list of all categories in the agenda.")
  3337. (defvar org-agenda-represented-tags nil
  3338. "Cache for the list of all categories in the agenda.")
  3339. (defvar org-agenda-tag-filter-preset nil
  3340. "A preset of the tags filter used for secondary agenda filtering.
  3341. This must be a list of strings, each string must be a single tag preceded
  3342. by \"+\" or \"-\".
  3343. This variable should not be set directly, but agenda custom commands can
  3344. bind it in the options section. The preset filter is a global property of
  3345. the entire agenda view. In a block agenda, it will not work reliably to
  3346. define a filter for one of the individual blocks. You need to set it in
  3347. the global options and expect it to be applied to the entire view.")
  3348. (defconst org-agenda-filter-variables
  3349. '((category . org-agenda-category-filter)
  3350. (tag . org-agenda-tag-filter)
  3351. (effort . org-agenda-effort-filter)
  3352. (regexp . org-agenda-regexp-filter))
  3353. "Alist of filter types and associated variables")
  3354. (defun org-agenda-filter-any ()
  3355. "Is any filter active?"
  3356. (let ((form (cons 'or (mapcar (lambda (x)
  3357. (if (or (symbol-value (cdr x))
  3358. (get :preset-filter x))
  3359. t nil))
  3360. org-agenda-filter-variables))))
  3361. (eval form)))
  3362. (defvar org-agenda-category-filter-preset nil
  3363. "A preset of the category filter used for secondary agenda filtering.
  3364. This must be a list of strings, each string must be a single category
  3365. preceded by \"+\" or \"-\".
  3366. This variable should not be set directly, but agenda custom commands can
  3367. bind it in the options section. The preset filter is a global property of
  3368. the entire agenda view. In a block agenda, it will not work reliably to
  3369. define a filter for one of the individual blocks. You need to set it in
  3370. the global options and expect it to be applied to the entire view.")
  3371. (defvar org-agenda-regexp-filter-preset nil
  3372. "A preset of the regexp filter used for secondary agenda filtering.
  3373. This must be a list of strings, each string must be a single regexp
  3374. preceded by \"+\" or \"-\".
  3375. This variable should not be set directly, but agenda custom commands can
  3376. bind it in the options section. The preset filter is a global property of
  3377. the entire agenda view. In a block agenda, it will not work reliably to
  3378. define a filter for one of the individual blocks. You need to set it in
  3379. the global options and expect it to be applied to the entire view.")
  3380. (defvar org-agenda-effort-filter-preset nil
  3381. "A preset of the effort condition used for secondary agenda filtering.
  3382. This must be a list of strings, each string must be a single regexp
  3383. preceded by \"+\" or \"-\".
  3384. This variable should not be set directly, but agenda custom commands can
  3385. bind it in the options section. The preset filter is a global property of
  3386. the entire agenda view. In a block agenda, it will not work reliably to
  3387. define a filter for one of the individual blocks. You need to set it in
  3388. the global options and expect it to be applied to the entire view.")
  3389. (defun org-agenda-use-sticky-p ()
  3390. "Return non-nil if an agenda buffer named
  3391. `org-agenda-buffer-name' exists and should be shown instead of
  3392. generating a new one."
  3393. (and
  3394. ;; turned off by user
  3395. org-agenda-sticky
  3396. ;; For multi-agenda buffer already exists
  3397. (not org-agenda-multi)
  3398. ;; buffer found
  3399. (get-buffer org-agenda-buffer-name)
  3400. ;; C-u parameter is same as last call
  3401. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3402. (and
  3403. (equal current-prefix-arg
  3404. org-agenda-last-prefix-arg)
  3405. ;; In case user turned stickiness on, while having existing
  3406. ;; Agenda buffer active, don't reuse that buffer, because it
  3407. ;; does not have org variables local
  3408. org-agenda-this-buffer-is-sticky))))
  3409. (defun org-agenda-prepare-window (abuf filter-alist)
  3410. "Setup agenda buffer in the window.
  3411. ABUF is the buffer for the agenda window.
  3412. FILTER-ALIST is an alist of filters we need to apply when
  3413. `org-agenda-persistent-filter' is non-nil."
  3414. (let* ((awin (get-buffer-window abuf)) wconf)
  3415. (cond
  3416. ((equal (current-buffer) abuf) nil)
  3417. (awin (select-window awin))
  3418. ((not (setq wconf (current-window-configuration))))
  3419. ((eq org-agenda-window-setup 'current-window)
  3420. (pop-to-buffer-same-window abuf))
  3421. ((eq org-agenda-window-setup 'other-window)
  3422. (org-switch-to-buffer-other-window abuf))
  3423. ((eq org-agenda-window-setup 'other-frame)
  3424. (switch-to-buffer-other-frame abuf))
  3425. ((eq org-agenda-window-setup 'only-window)
  3426. (delete-other-windows)
  3427. (pop-to-buffer-same-window abuf))
  3428. ((eq org-agenda-window-setup 'reorganize-frame)
  3429. (delete-other-windows)
  3430. (org-switch-to-buffer-other-window abuf)))
  3431. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3432. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3433. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3434. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3435. ;; Additional test in case agenda is invoked from within agenda
  3436. ;; buffer via elisp link.
  3437. (unless (equal (current-buffer) abuf)
  3438. (pop-to-buffer-same-window abuf))
  3439. (setq org-agenda-pre-window-conf
  3440. (or wconf org-agenda-pre-window-conf))))
  3441. (defun org-agenda-prepare (&optional name)
  3442. (let ((filter-alist (when org-agenda-persistent-filter
  3443. (with-current-buffer
  3444. (get-buffer-create org-agenda-buffer-name)
  3445. `((tag . ,org-agenda-tag-filter)
  3446. (re . ,org-agenda-regexp-filter)
  3447. (effort . ,org-agenda-effort-filter)
  3448. (cat . ,org-agenda-category-filter))))))
  3449. (if (org-agenda-use-sticky-p)
  3450. (progn
  3451. (put 'org-agenda-tag-filter :preset-filter nil)
  3452. (put 'org-agenda-category-filter :preset-filter nil)
  3453. (put 'org-agenda-regexp-filter :preset-filter nil)
  3454. (put 'org-agenda-effort-filter :preset-filter nil)
  3455. ;; Popup existing buffer
  3456. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3457. filter-alist)
  3458. (message "Sticky Agenda buffer, use `r' to refresh")
  3459. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3460. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3461. (setq org-todo-keywords-for-agenda nil)
  3462. (put 'org-agenda-tag-filter :preset-filter
  3463. org-agenda-tag-filter-preset)
  3464. (put 'org-agenda-category-filter :preset-filter
  3465. org-agenda-category-filter-preset)
  3466. (put 'org-agenda-regexp-filter :preset-filter
  3467. org-agenda-regexp-filter-preset)
  3468. (put 'org-agenda-effort-filter :preset-filter
  3469. org-agenda-effort-filter-preset)
  3470. (if org-agenda-multi
  3471. (progn
  3472. (setq buffer-read-only nil)
  3473. (goto-char (point-max))
  3474. (unless (or (bobp) org-agenda-compact-blocks
  3475. (not org-agenda-block-separator))
  3476. (insert "\n"
  3477. (if (stringp org-agenda-block-separator)
  3478. org-agenda-block-separator
  3479. (make-string (window-width) org-agenda-block-separator))
  3480. "\n"))
  3481. (narrow-to-region (point) (point-max)))
  3482. (setq org-done-keywords-for-agenda nil)
  3483. ;; Setting any org variables that are in org-agenda-local-vars
  3484. ;; list need to be done after the prepare call
  3485. (org-agenda-prepare-window
  3486. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3487. (setq buffer-read-only nil)
  3488. (org-agenda-reset-markers)
  3489. (let ((inhibit-read-only t)) (erase-buffer))
  3490. (org-agenda-mode)
  3491. (setq org-agenda-buffer (current-buffer))
  3492. (setq org-agenda-contributing-files nil)
  3493. (setq org-agenda-columns-active nil)
  3494. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3495. (setq org-todo-keywords-for-agenda
  3496. (org-uniquify org-todo-keywords-for-agenda))
  3497. (setq org-done-keywords-for-agenda
  3498. (org-uniquify org-done-keywords-for-agenda))
  3499. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3500. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3501. (and name (not org-agenda-name)
  3502. (setq-local org-agenda-name name)))
  3503. (setq buffer-read-only nil))))
  3504. (defvar org-overriding-columns-format)
  3505. (defvar org-local-columns-format)
  3506. (defun org-agenda-finalize ()
  3507. "Finishing touch for the agenda buffer, called just before displaying it."
  3508. (unless org-agenda-multi
  3509. (save-excursion
  3510. (let ((inhibit-read-only t))
  3511. (goto-char (point-min))
  3512. (save-excursion
  3513. (while (org-activate-links (point-max))
  3514. (add-text-properties (match-beginning 0) (match-end 0)
  3515. '(face org-link))))
  3516. (unless (eq org-agenda-remove-tags t)
  3517. (org-agenda-align-tags))
  3518. (unless org-agenda-with-colors
  3519. (remove-text-properties (point-min) (point-max) '(face nil)))
  3520. (when (bound-and-true-p org-overriding-columns-format)
  3521. (setq-local org-local-columns-format
  3522. org-overriding-columns-format))
  3523. (when org-agenda-view-columns-initially
  3524. (org-agenda-columns))
  3525. (when org-agenda-fontify-priorities
  3526. (org-agenda-fontify-priorities))
  3527. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3528. (org-agenda-dim-blocked-tasks))
  3529. (org-agenda-mark-clocking-task)
  3530. (when org-agenda-entry-text-mode
  3531. (org-agenda-entry-text-hide)
  3532. (org-agenda-entry-text-show))
  3533. (when (and (featurep 'org-habit)
  3534. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3535. (org-habit-insert-consistency-graphs))
  3536. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3537. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3538. (and (listp org-agenda-show-inherited-tags)
  3539. (memq org-agenda-type org-agenda-show-inherited-tags))
  3540. (and (eq org-agenda-show-inherited-tags t)
  3541. (or (eq org-agenda-use-tag-inheritance t)
  3542. (and (listp org-agenda-use-tag-inheritance)
  3543. (not (memq org-agenda-type
  3544. org-agenda-use-tag-inheritance))))))
  3545. (let (mrk)
  3546. (save-excursion
  3547. (goto-char (point-min))
  3548. (while (equal (forward-line) 0)
  3549. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3550. (put-text-property (point-at-bol) (point-at-eol)
  3551. 'tags
  3552. (org-with-point-at mrk
  3553. (mapcar #'downcase (org-get-tags)))))))))
  3554. (run-hooks 'org-agenda-finalize-hook)
  3555. (setq org-agenda-represented-tags nil
  3556. org-agenda-represented-categories nil)
  3557. (when org-agenda-top-headline-filter
  3558. (org-agenda-filter-top-headline-apply
  3559. org-agenda-top-headline-filter))
  3560. (when org-agenda-tag-filter
  3561. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3562. (when (get 'org-agenda-tag-filter :preset-filter)
  3563. (org-agenda-filter-apply
  3564. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3565. (when org-agenda-category-filter
  3566. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3567. (when (get 'org-agenda-category-filter :preset-filter)
  3568. (org-agenda-filter-apply
  3569. (get 'org-agenda-category-filter :preset-filter) 'category))
  3570. (when org-agenda-regexp-filter
  3571. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3572. (when (get 'org-agenda-regexp-filter :preset-filter)
  3573. (org-agenda-filter-apply
  3574. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3575. (when org-agenda-effort-filter
  3576. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3577. (when (get 'org-agenda-effort-filter :preset-filter)
  3578. (org-agenda-filter-apply
  3579. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3580. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3581. (defun org-agenda-mark-clocking-task ()
  3582. "Mark the current clock entry in the agenda if it is present."
  3583. ;; We need to widen when `org-agenda-finalize' is called from
  3584. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3585. (when (bound-and-true-p org-clock-current-task)
  3586. (save-restriction
  3587. (widen)
  3588. (org-agenda-unmark-clocking-task)
  3589. (when (marker-buffer org-clock-hd-marker)
  3590. (save-excursion
  3591. (goto-char (point-min))
  3592. (let (s ov)
  3593. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3594. (goto-char s)
  3595. (when (equal (org-get-at-bol 'org-hd-marker)
  3596. org-clock-hd-marker)
  3597. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3598. (overlay-put ov 'type 'org-agenda-clocking)
  3599. (overlay-put ov 'face 'org-agenda-clocking)
  3600. (overlay-put ov 'help-echo
  3601. "The clock is running in this item")))))))))
  3602. (defun org-agenda-unmark-clocking-task ()
  3603. "Unmark the current clocking task."
  3604. (mapc (lambda (o)
  3605. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3606. (delete-overlay o)))
  3607. (overlays-in (point-min) (point-max))))
  3608. (defun org-agenda-fontify-priorities ()
  3609. "Make highest priority lines bold, and lowest italic."
  3610. (interactive)
  3611. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3612. (delete-overlay o)))
  3613. (overlays-in (point-min) (point-max)))
  3614. (save-excursion
  3615. (let (b e p ov h l)
  3616. (goto-char (point-min))
  3617. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3618. (setq h (or (get-char-property (point) 'org-highest-priority)
  3619. org-highest-priority)
  3620. l (or (get-char-property (point) 'org-lowest-priority)
  3621. org-lowest-priority)
  3622. p (string-to-char (match-string 1))
  3623. b (match-beginning 0)
  3624. e (if (eq org-agenda-fontify-priorities 'cookies)
  3625. (match-end 0)
  3626. (point-at-eol))
  3627. ov (make-overlay b e))
  3628. (overlay-put
  3629. ov 'face
  3630. (let ((special-face
  3631. (cond ((org-face-from-face-or-color
  3632. 'priority 'org-priority
  3633. (cdr (assoc p org-priority-faces))))
  3634. ((and (listp org-agenda-fontify-priorities)
  3635. (org-face-from-face-or-color
  3636. 'priority 'org-priority
  3637. (cdr (assoc p org-agenda-fontify-priorities)))))
  3638. ((equal p l) 'italic)
  3639. ((equal p h) 'bold))))
  3640. (if special-face (list special-face 'org-priority) 'org-priority)))
  3641. (overlay-put ov 'org-type 'org-priority)))))
  3642. (defvar org-depend-tag-blocked)
  3643. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3644. "Dim currently blocked TODOs in the agenda display.
  3645. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3646. dimming them."
  3647. (interactive "P")
  3648. (when (called-interactively-p 'interactive)
  3649. (message "Dim or hide blocked tasks..."))
  3650. (dolist (o (overlays-in (point-min) (point-max)))
  3651. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3652. (delete-overlay o)))
  3653. (save-excursion
  3654. (let ((inhibit-read-only t))
  3655. (goto-char (point-min))
  3656. (while (let ((pos (text-property-not-all
  3657. (point) (point-max) 'org-todo-blocked nil)))
  3658. (when pos (goto-char pos)))
  3659. (let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3660. (ov (make-overlay (if invisible
  3661. (line-end-position 0)
  3662. (line-beginning-position))
  3663. (line-end-position))))
  3664. (if invisible
  3665. (overlay-put ov 'invisible t)
  3666. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3667. (overlay-put ov 'org-type 'org-blocked-todo))
  3668. (forward-line))))
  3669. (when (called-interactively-p 'interactive)
  3670. (message "Dim or hide blocked tasks...done")))
  3671. (defun org-agenda--mark-blocked-entry (entry)
  3672. "For ENTRY a string with the text property `org-hd-marker', if
  3673. the header at `org-hd-marker' is blocked according to
  3674. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3675. 'invisible and the header is not blocked by checkboxes, set the
  3676. text property `org-todo-blocked' to `invisible', otherwise set it
  3677. to t."
  3678. (when (get-text-property 0 'todo-state entry)
  3679. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3680. (org-blocked-by-checkboxes nil)
  3681. ;; Necessary so that `org-entry-blocked-p' does not change
  3682. ;; the buffer.
  3683. (org-depend-tag-blocked nil))
  3684. (when entry-marker
  3685. (let ((blocked
  3686. (with-current-buffer (marker-buffer entry-marker)
  3687. (save-excursion
  3688. (goto-char entry-marker)
  3689. (org-entry-blocked-p)))))
  3690. (when blocked
  3691. (let ((really-invisible
  3692. (and (not org-blocked-by-checkboxes)
  3693. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3694. (put-text-property
  3695. 0 (length entry) 'org-todo-blocked
  3696. (if really-invisible 'invisible t)
  3697. entry)))))))
  3698. entry)
  3699. (defvar org-agenda-skip-function nil
  3700. "Function to be called at each match during agenda construction.
  3701. If this function returns nil, the current match should not be skipped.
  3702. Otherwise, the function must return a position from where the search
  3703. should be continued.
  3704. This may also be a Lisp form, it will be evaluated.
  3705. Never set this variable using `setq' or so, because then it will apply
  3706. to all future agenda commands. If you do want a global skipping condition,
  3707. use the option `org-agenda-skip-function-global' instead.
  3708. The correct usage for `org-agenda-skip-function' is to bind it with
  3709. `let' to scope it dynamically into the agenda-constructing command.
  3710. A good way to set it is through options in `org-agenda-custom-commands'.")
  3711. (defun org-agenda-skip ()
  3712. "Throw to `:skip' in places that should be skipped.
  3713. Also moves point to the end of the skipped region, so that search can
  3714. continue from there."
  3715. (let ((p (point-at-bol)) to)
  3716. (when (or
  3717. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3718. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3719. (get-text-property p :org-archived)
  3720. (org-end-of-subtree t))
  3721. (and org-agenda-skip-comment-trees
  3722. (get-text-property p :org-comment)
  3723. (org-end-of-subtree t))
  3724. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3725. (org-agenda-skip-eval org-agenda-skip-function)))
  3726. (goto-char to))
  3727. (org-in-src-block-p t))
  3728. (throw :skip t))))
  3729. (defun org-agenda-skip-eval (form)
  3730. "If FORM is a function or a list, call (or eval) it and return the result.
  3731. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3732. and match data are returned to the previous state no matter what these
  3733. functions do."
  3734. (let (fp)
  3735. (and form
  3736. (or (setq fp (functionp form))
  3737. (consp form))
  3738. (save-excursion
  3739. (save-match-data
  3740. (if fp
  3741. (funcall form)
  3742. (eval form)))))))
  3743. (defvar org-agenda-markers nil
  3744. "List of all currently active markers created by `org-agenda'.")
  3745. (defvar org-agenda-last-marker-time (float-time)
  3746. "Creation time of the last agenda marker.")
  3747. (defun org-agenda-new-marker (&optional pos)
  3748. "Return a new agenda marker.
  3749. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3750. these markers and resets them when they are no longer in use."
  3751. (let ((m (copy-marker (or pos (point)) t)))
  3752. (setq org-agenda-last-marker-time (float-time))
  3753. (if org-agenda-buffer
  3754. (with-current-buffer org-agenda-buffer
  3755. (push m org-agenda-markers))
  3756. (push m org-agenda-markers))
  3757. m))
  3758. (defun org-agenda-reset-markers ()
  3759. "Reset markers created by `org-agenda'."
  3760. (while org-agenda-markers
  3761. (move-marker (pop org-agenda-markers) nil)))
  3762. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3763. "Save relative positions of markers in region.
  3764. This check for agenda markers in all agenda buffers currently active."
  3765. (dolist (buf (buffer-list))
  3766. (with-current-buffer buf
  3767. (when (eq major-mode 'org-agenda-mode)
  3768. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3769. org-agenda-markers)))))
  3770. ;;; Entry text mode
  3771. (defun org-agenda-entry-text-show-here ()
  3772. "Add some text from the entry as context to the current line."
  3773. (let (m txt o)
  3774. (setq m (org-get-at-bol 'org-hd-marker))
  3775. (unless (marker-buffer m)
  3776. (error "No marker points to an entry here"))
  3777. (setq txt (concat "\n" (org-no-properties
  3778. (org-agenda-get-some-entry-text
  3779. m org-agenda-entry-text-maxlines
  3780. org-agenda-entry-text-leaders))))
  3781. (when (string-match "\\S-" txt)
  3782. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3783. (overlay-put o 'evaporate t)
  3784. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3785. (overlay-put o 'after-string txt))))
  3786. (defun org-agenda-entry-text-show ()
  3787. "Add entry context for all agenda lines."
  3788. (interactive)
  3789. (save-excursion
  3790. (goto-char (point-max))
  3791. (beginning-of-line 1)
  3792. (while (not (bobp))
  3793. (when (org-get-at-bol 'org-hd-marker)
  3794. (org-agenda-entry-text-show-here))
  3795. (beginning-of-line 0))))
  3796. (defun org-agenda-entry-text-hide ()
  3797. "Remove any shown entry context."
  3798. (mapc (lambda (o)
  3799. (when (eq (overlay-get o 'org-overlay-type)
  3800. 'agenda-entry-content)
  3801. (delete-overlay o)))
  3802. (overlays-in (point-min) (point-max))))
  3803. (defun org-agenda-get-day-face (date)
  3804. "Return the face DATE should be displayed with."
  3805. (cond ((and (functionp org-agenda-day-face-function)
  3806. (funcall org-agenda-day-face-function date)))
  3807. ((org-agenda-today-p date) 'org-agenda-date-today)
  3808. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3809. 'org-agenda-date-weekend)
  3810. (t 'org-agenda-date)))
  3811. (defvar org-agenda-show-log-scoped)
  3812. ;;; Agenda Daily/Weekly
  3813. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3814. "Start day for the agenda view.
  3815. Custom commands can set this variable in the options section.
  3816. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3817. input allowed when reading a date through the Org calendar.
  3818. See the docstring of `org-read-date' for details.")
  3819. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3820. (defvar org-arg-loc nil) ; local variable
  3821. (defvar org-agenda-buffer-tmp-name nil)
  3822. ;;;###autoload
  3823. (defun org-agenda-list (&optional arg start-day span with-hour)
  3824. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3825. The view will be for the current day or week, but from the overview buffer
  3826. you will be able to go to other days/weeks.
  3827. With a numeric prefix argument in an interactive call, the agenda will
  3828. span ARG days. Lisp programs should instead specify SPAN to change
  3829. the number of days. SPAN defaults to `org-agenda-span'.
  3830. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3831. given in `org-agenda-start-on-weekday'.
  3832. When WITH-HOUR is non-nil, only include scheduled and deadline
  3833. items if they have an hour specification like [h]h:mm."
  3834. (interactive "P")
  3835. (when org-agenda-overriding-arguments
  3836. (setq arg (car org-agenda-overriding-arguments)
  3837. start-day (nth 1 org-agenda-overriding-arguments)
  3838. span (nth 2 org-agenda-overriding-arguments)))
  3839. (when (and (integerp arg) (> arg 0))
  3840. (setq span arg arg nil))
  3841. (when (numberp span)
  3842. (unless (< 0 span)
  3843. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3844. (catch 'exit
  3845. (setq org-agenda-buffer-name
  3846. (or org-agenda-buffer-tmp-name
  3847. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3848. (when org-agenda-sticky
  3849. (cond ((and org-keys (stringp org-match))
  3850. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3851. (org-keys
  3852. (format "*Org Agenda(%s)*" org-keys))
  3853. (t "*Org Agenda(a)*")))
  3854. "*Org Agenda*"))
  3855. (org-agenda-prepare "Day/Week")
  3856. (setq start-day (or start-day org-agenda-start-day))
  3857. (when (stringp start-day)
  3858. ;; Convert to an absolute day number
  3859. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3860. (org-compile-prefix-format 'agenda)
  3861. (org-set-sorting-strategy 'agenda)
  3862. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3863. (today (org-today))
  3864. (sd (or start-day today))
  3865. (ndays (org-agenda-span-to-ndays span sd))
  3866. (org-agenda-start-on-weekday
  3867. (and (or (eq ndays 7) (eq ndays 14))
  3868. org-agenda-start-on-weekday))
  3869. (thefiles (org-agenda-files nil 'ifmode))
  3870. (files thefiles)
  3871. (start (if (or (null org-agenda-start-on-weekday)
  3872. (< ndays 7))
  3873. sd
  3874. (let* ((nt (calendar-day-of-week
  3875. (calendar-gregorian-from-absolute sd)))
  3876. (n1 org-agenda-start-on-weekday)
  3877. (d (- nt n1)))
  3878. (- sd (+ (if (< d 0) 7 0) d)))))
  3879. (day-numbers (list start))
  3880. (day-cnt 0)
  3881. (inhibit-redisplay (not debug-on-error))
  3882. (org-agenda-show-log-scoped org-agenda-show-log)
  3883. s e rtn rtnall file date d start-pos end-pos todayp
  3884. clocktable-start clocktable-end filter)
  3885. (setq org-agenda-redo-command
  3886. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3887. (dotimes (n (1- ndays))
  3888. (push (1+ (car day-numbers)) day-numbers))
  3889. (setq day-numbers (nreverse day-numbers))
  3890. (setq clocktable-start (car day-numbers)
  3891. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3892. (setq-local org-starting-day (car day-numbers))
  3893. (setq-local org-arg-loc arg)
  3894. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3895. (unless org-agenda-compact-blocks
  3896. (let* ((d1 (car day-numbers))
  3897. (d2 (org-last day-numbers))
  3898. (w1 (org-days-to-iso-week d1))
  3899. (w2 (org-days-to-iso-week d2)))
  3900. (setq s (point))
  3901. (org-agenda--insert-overriding-header
  3902. (concat (org-agenda-span-name span)
  3903. "-agenda"
  3904. (cond ((<= 350 (- d2 d1)) "")
  3905. ((= w1 w2) (format " (W%02d)" w1))
  3906. (t (format " (W%02d-W%02d)" w1 w2)))
  3907. ":\n")))
  3908. ;; Add properties if we actually inserted a header.
  3909. (when (> (point) s)
  3910. (add-text-properties s (1- (point))
  3911. (list 'face 'org-agenda-structure
  3912. 'org-date-line t))
  3913. (org-agenda-mark-header-line s)))
  3914. (while (setq d (pop day-numbers))
  3915. (setq date (calendar-gregorian-from-absolute d)
  3916. s (point))
  3917. (if (or (setq todayp (= d today))
  3918. (and (not start-pos) (= d sd)))
  3919. (setq start-pos (point))
  3920. (when (and start-pos (not end-pos))
  3921. (setq end-pos (point))))
  3922. (setq files thefiles
  3923. rtnall nil)
  3924. (while (setq file (pop files))
  3925. (catch 'nextfile
  3926. (org-check-agenda-file file)
  3927. (let ((org-agenda-entry-types org-agenda-entry-types))
  3928. ;; Starred types override non-starred equivalents
  3929. (when (member :deadline* org-agenda-entry-types)
  3930. (setq org-agenda-entry-types
  3931. (delq :deadline org-agenda-entry-types)))
  3932. (when (member :scheduled* org-agenda-entry-types)
  3933. (setq org-agenda-entry-types
  3934. (delq :scheduled org-agenda-entry-types)))
  3935. ;; Honor with-hour
  3936. (when with-hour
  3937. (when (member :deadline org-agenda-entry-types)
  3938. (setq org-agenda-entry-types
  3939. (delq :deadline org-agenda-entry-types))
  3940. (push :deadline* org-agenda-entry-types))
  3941. (when (member :scheduled org-agenda-entry-types)
  3942. (setq org-agenda-entry-types
  3943. (delq :scheduled org-agenda-entry-types))
  3944. (push :scheduled* org-agenda-entry-types)))
  3945. (unless org-agenda-include-deadlines
  3946. (setq org-agenda-entry-types
  3947. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3948. (cond
  3949. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3950. (setq rtn (org-agenda-get-day-entries
  3951. file date :closed)))
  3952. (org-agenda-show-log-scoped
  3953. (setq rtn (apply 'org-agenda-get-day-entries
  3954. file date
  3955. (append '(:closed) org-agenda-entry-types))))
  3956. (t
  3957. (setq rtn (apply 'org-agenda-get-day-entries
  3958. file date
  3959. org-agenda-entry-types)))))
  3960. (setq rtnall (append rtnall rtn)))) ;; all entries
  3961. (when org-agenda-include-diary
  3962. (let ((org-agenda-search-headline-for-time t))
  3963. (require 'diary-lib)
  3964. (setq rtn (org-get-entries-from-diary date))
  3965. (setq rtnall (append rtnall rtn))))
  3966. (when (or rtnall org-agenda-show-all-dates)
  3967. (setq day-cnt (1+ day-cnt))
  3968. (insert
  3969. (if (stringp org-agenda-format-date)
  3970. (format-time-string org-agenda-format-date
  3971. (org-time-from-absolute date))
  3972. (funcall org-agenda-format-date date))
  3973. "\n")
  3974. (put-text-property s (1- (point)) 'face
  3975. (org-agenda-get-day-face date))
  3976. (put-text-property s (1- (point)) 'org-date-line t)
  3977. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3978. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3979. (when todayp
  3980. (put-text-property s (1- (point)) 'org-today t))
  3981. (setq rtnall
  3982. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3983. (when rtnall (insert ;; all entries
  3984. (org-agenda-finalize-entries rtnall 'agenda)
  3985. "\n"))
  3986. (put-text-property s (1- (point)) 'day d)
  3987. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  3988. (when (and org-agenda-clockreport-mode clocktable-start)
  3989. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3990. ;; the above line is to ensure the restricted range!
  3991. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3992. tbl)
  3993. (setq p (org-plist-delete p :block))
  3994. (setq p (plist-put p :tstart clocktable-start))
  3995. (setq p (plist-put p :tend clocktable-end))
  3996. (setq p (plist-put p :scope 'agenda))
  3997. (setq tbl (apply 'org-clock-get-clocktable p))
  3998. (insert tbl)))
  3999. (goto-char (point-min))
  4000. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4001. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4002. (and (pos-visible-in-window-p (point-min))
  4003. (pos-visible-in-window-p (point-max))))
  4004. (goto-char (1- (point-max)))
  4005. (recenter -1)
  4006. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4007. (goto-char (or start-pos 1))
  4008. (recenter 1)))
  4009. (goto-char (or start-pos 1))
  4010. (add-text-properties (point-min) (point-max)
  4011. `(org-agenda-type agenda
  4012. org-last-args (,arg ,start-day ,span)
  4013. org-redo-cmd ,org-agenda-redo-command
  4014. org-series-cmd ,org-cmd))
  4015. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4016. (org-agenda-show-clocking-issues))
  4017. (org-agenda-finalize)
  4018. (setq buffer-read-only t)
  4019. (message ""))))
  4020. (defun org-agenda-ndays-to-span (n)
  4021. "Return a span symbol for a span of N days, or N if none matches."
  4022. (cond ((symbolp n) n)
  4023. ((= n 1) 'day)
  4024. ((= n 7) 'week)
  4025. ((= n 14) 'fortnight)
  4026. (t n)))
  4027. (defun org-agenda-span-to-ndays (span &optional start-day)
  4028. "Return ndays from SPAN, possibly starting at START-DAY.
  4029. START-DAY is an absolute time value."
  4030. (cond ((numberp span) span)
  4031. ((eq span 'day) 1)
  4032. ((eq span 'week) 7)
  4033. ((eq span 'fortnight) 14)
  4034. ((eq span 'month)
  4035. (let ((date (calendar-gregorian-from-absolute start-day)))
  4036. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4037. ((eq span 'year)
  4038. (let ((date (calendar-gregorian-from-absolute start-day)))
  4039. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4040. (defun org-agenda-span-name (span)
  4041. "Return a SPAN name."
  4042. (if (null span)
  4043. ""
  4044. (if (symbolp span)
  4045. (capitalize (symbol-name span))
  4046. (format "%d days" span))))
  4047. ;;; Agenda word search
  4048. (defvar org-agenda-search-history nil)
  4049. (defvar org-search-syntax-table nil
  4050. "Special syntax table for Org search.
  4051. In this table, we have single quotes not as word constituents, to
  4052. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4053. (defvar org-mode-syntax-table) ; From org.el
  4054. (defun org-search-syntax-table ()
  4055. (unless org-search-syntax-table
  4056. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4057. (modify-syntax-entry ?' "." org-search-syntax-table)
  4058. (modify-syntax-entry ?` "." org-search-syntax-table))
  4059. org-search-syntax-table)
  4060. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4061. ;;;###autoload
  4062. (defun org-search-view (&optional todo-only string edit-at)
  4063. "Show all entries that contain a phrase or words or regular expressions.
  4064. With optional prefix argument TODO-ONLY, only consider entries that are
  4065. TODO entries. The argument STRING can be used to pass a default search
  4066. string into this function. If EDIT-AT is non-nil, it means that the
  4067. user should get a chance to edit this string, with cursor at position
  4068. EDIT-AT.
  4069. The search string can be viewed either as a phrase that should be found as
  4070. is, or it can be broken into a number of snippets, each of which must match
  4071. in a Boolean way to select an entry. The default depends on the variable
  4072. `org-agenda-search-view-always-boolean'.
  4073. Even if this is turned off (the default) you can always switch to
  4074. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4075. The default is a direct search of the whole phrase, where each space in
  4076. the search string can expand to an arbitrary amount of whitespace,
  4077. including newlines.
  4078. If using a Boolean search, the search string is split on whitespace and
  4079. each snippet is searched separately, with logical AND to select an entry.
  4080. Words prefixed with a minus must *not* occur in the entry. Words without
  4081. a prefix or prefixed with a plus must occur in the entry. Matching is
  4082. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4083. match whole words, not parts of a word) if
  4084. `org-agenda-search-view-force-full-words' is set (default is nil).
  4085. Boolean search snippets enclosed by curly braces are interpreted as
  4086. regular expressions that must or (when preceded with \"-\") must not
  4087. match in the entry. Snippets enclosed into double quotes will be taken
  4088. as a whole, to include whitespace.
  4089. - If the search string starts with an asterisk, search only in headlines.
  4090. - If (possibly after the leading star) the search string starts with an
  4091. exclamation mark, this also means to look at TODO entries only, an effect
  4092. that can also be achieved with a prefix argument.
  4093. - If (possibly after star and exclamation mark) the search string starts
  4094. with a colon, this will mean that the (non-regexp) snippets of the
  4095. Boolean search must match as full words.
  4096. This command searches the agenda files, and in addition the files
  4097. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4098. is active."
  4099. (interactive "P")
  4100. (when org-agenda-overriding-arguments
  4101. (setq todo-only (car org-agenda-overriding-arguments)
  4102. string (nth 1 org-agenda-overriding-arguments)
  4103. edit-at (nth 2 org-agenda-overriding-arguments)))
  4104. (let* ((props (list 'face nil
  4105. 'done-face 'org-agenda-done
  4106. 'org-not-done-regexp org-not-done-regexp
  4107. 'org-todo-regexp org-todo-regexp
  4108. 'org-complex-heading-regexp org-complex-heading-regexp
  4109. 'mouse-face 'highlight
  4110. 'help-echo (format "mouse-2 or RET jump to location")))
  4111. (full-words org-agenda-search-view-force-full-words)
  4112. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4113. regexp rtn rtnall files file pos inherited-tags
  4114. marker category level tags c neg re boolean
  4115. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4116. (unless (and (not edit-at)
  4117. (stringp string)
  4118. (string-match "\\S-" string))
  4119. (setq string (read-string
  4120. (if org-agenda-search-view-always-boolean
  4121. "[+-]Word/{Regexp} ...: "
  4122. "Phrase or [+-]Word/{Regexp} ...: ")
  4123. (cond
  4124. ((integerp edit-at) (cons string edit-at))
  4125. (edit-at string))
  4126. 'org-agenda-search-history)))
  4127. (catch 'exit
  4128. (when org-agenda-sticky
  4129. (setq org-agenda-buffer-name
  4130. (if (stringp string)
  4131. (format "*Org Agenda(%s:%s)*"
  4132. (or org-keys (or (and todo-only "S") "s")) string)
  4133. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4134. (org-agenda-prepare "SEARCH")
  4135. (org-compile-prefix-format 'search)
  4136. (org-set-sorting-strategy 'search)
  4137. (setq org-agenda-redo-command
  4138. (list 'org-search-view (if todo-only t nil)
  4139. (list 'if 'current-prefix-arg nil string)))
  4140. (setq org-agenda-query-string string)
  4141. (if (equal (string-to-char string) ?*)
  4142. (setq hdl-only t
  4143. words (substring string 1))
  4144. (setq words string))
  4145. (when (equal (string-to-char words) ?!)
  4146. (setq todo-only t
  4147. words (substring words 1)))
  4148. (when (equal (string-to-char words) ?:)
  4149. (setq full-words t
  4150. words (substring words 1)))
  4151. (when (or org-agenda-search-view-always-boolean
  4152. (member (string-to-char words) '(?- ?+ ?\{)))
  4153. (setq boolean t))
  4154. (setq words (split-string words))
  4155. (let (www w)
  4156. (while (setq w (pop words))
  4157. (while (and (string-match "\\\\\\'" w) words)
  4158. (setq w (concat (substring w 0 -1) " " (pop words))))
  4159. (push w www))
  4160. (setq words (nreverse www) www nil)
  4161. (while (setq w (pop words))
  4162. (when (and (string-match "\\`[-+]?{" w)
  4163. (not (string-match "}\\'" w)))
  4164. (while (and words (not (string-match "}\\'" (car words))))
  4165. (setq w (concat w " " (pop words))))
  4166. (setq w (concat w " " (pop words))))
  4167. (push w www))
  4168. (setq words (nreverse www)))
  4169. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4170. (when boolean
  4171. (let (wds w)
  4172. (while (setq w (pop words))
  4173. (when (or (equal (substring w 0 1) "\"")
  4174. (and (> (length w) 1)
  4175. (member (substring w 0 1) '("+" "-"))
  4176. (equal (substring w 1 2) "\"")))
  4177. (while (and words (not (equal (substring w -1) "\"")))
  4178. (setq w (concat w " " (pop words)))))
  4179. (and (string-match "\\`\\([-+]?\\)\"" w)
  4180. (setq w (replace-match "\\1" nil nil w)))
  4181. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4182. (push w wds))
  4183. (setq words (nreverse wds))))
  4184. (if boolean
  4185. (mapc (lambda (w)
  4186. (setq c (string-to-char w))
  4187. (if (equal c ?-)
  4188. (setq neg t w (substring w 1))
  4189. (if (equal c ?+)
  4190. (setq neg nil w (substring w 1))
  4191. (setq neg nil)))
  4192. (if (string-match "\\`{.*}\\'" w)
  4193. (setq re (substring w 1 -1))
  4194. (if full-words
  4195. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4196. (setq re (regexp-quote (downcase w)))))
  4197. (if neg (push re regexps-) (push re regexps+)))
  4198. words)
  4199. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4200. regexps+))
  4201. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4202. (if (not regexps+)
  4203. (setq regexp org-outline-regexp-bol)
  4204. (setq regexp (pop regexps+))
  4205. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4206. regexp))))
  4207. (setq files (org-agenda-files nil 'ifmode))
  4208. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4209. ;; restriction.
  4210. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4211. (pop org-agenda-text-search-extra-files)
  4212. (unless (get 'org-agenda-files 'org-restrict)
  4213. (setq files (org-add-archive-files files))))
  4214. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4215. ;; non-existent ones.
  4216. (setq files (cl-remove-duplicates
  4217. (append files org-agenda-text-search-extra-files)
  4218. :test (lambda (a b)
  4219. (and (file-exists-p a)
  4220. (file-exists-p b)
  4221. (file-equal-p a b))))
  4222. rtnall nil)
  4223. (while (setq file (pop files))
  4224. (setq ee nil)
  4225. (catch 'nextfile
  4226. (org-check-agenda-file file)
  4227. (setq buffer (if (file-exists-p file)
  4228. (org-get-agenda-file-buffer file)
  4229. (error "No such file %s" file)))
  4230. (unless buffer
  4231. ;; If file does not exist, make sure an error message is sent
  4232. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4233. file))))
  4234. (with-current-buffer buffer
  4235. (with-syntax-table (org-search-syntax-table)
  4236. (unless (derived-mode-p 'org-mode)
  4237. (error "Agenda file %s is not in Org mode" file))
  4238. (let ((case-fold-search t))
  4239. (save-excursion
  4240. (save-restriction
  4241. (if (eq buffer org-agenda-restrict)
  4242. (narrow-to-region org-agenda-restrict-begin
  4243. org-agenda-restrict-end)
  4244. (widen))
  4245. (goto-char (point-min))
  4246. (unless (or (org-at-heading-p)
  4247. (outline-next-heading))
  4248. (throw 'nextfile t))
  4249. (goto-char (max (point-min) (1- (point))))
  4250. (while (re-search-forward regexp nil t)
  4251. (org-back-to-heading t)
  4252. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4253. (> (org-reduced-level (org-outline-level))
  4254. org-agenda-search-view-max-outline-level)
  4255. (forward-line -1)
  4256. (org-back-to-heading t)))
  4257. (skip-chars-forward "* ")
  4258. (setq beg (point-at-bol)
  4259. beg1 (point)
  4260. end (progn
  4261. (outline-next-heading)
  4262. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4263. (> (org-reduced-level (org-outline-level))
  4264. org-agenda-search-view-max-outline-level)
  4265. (forward-line 1)
  4266. (outline-next-heading)))
  4267. (point)))
  4268. (catch :skip
  4269. (goto-char beg)
  4270. (org-agenda-skip)
  4271. (setq str (buffer-substring-no-properties
  4272. (point-at-bol)
  4273. (if hdl-only (point-at-eol) end)))
  4274. (mapc (lambda (wr) (when (string-match wr str)
  4275. (goto-char (1- end))
  4276. (throw :skip t)))
  4277. regexps-)
  4278. (mapc (lambda (wr) (unless (string-match wr str)
  4279. (goto-char (1- end))
  4280. (throw :skip t)))
  4281. (if todo-only
  4282. (cons (concat "^\\*+[ \t]+"
  4283. org-not-done-regexp)
  4284. regexps+)
  4285. regexps+))
  4286. (goto-char beg)
  4287. (setq marker (org-agenda-new-marker (point))
  4288. category (org-get-category)
  4289. level (make-string (org-reduced-level (org-outline-level)) ? )
  4290. inherited-tags
  4291. (or (eq org-agenda-show-inherited-tags 'always)
  4292. (and (listp org-agenda-show-inherited-tags)
  4293. (memq 'todo org-agenda-show-inherited-tags))
  4294. (and (eq org-agenda-show-inherited-tags t)
  4295. (or (eq org-agenda-use-tag-inheritance t)
  4296. (memq 'todo org-agenda-use-tag-inheritance))))
  4297. tags (org-get-tags nil (not inherited-tags))
  4298. txt (org-agenda-format-item
  4299. ""
  4300. (buffer-substring-no-properties
  4301. beg1 (point-at-eol))
  4302. level category tags t))
  4303. (org-add-props txt props
  4304. 'org-marker marker 'org-hd-marker marker
  4305. 'org-todo-regexp org-todo-regexp
  4306. 'level level
  4307. 'org-complex-heading-regexp org-complex-heading-regexp
  4308. 'priority 1000
  4309. 'type "search")
  4310. (push txt ee)
  4311. (goto-char (1- end))))))))))
  4312. (setq rtn (nreverse ee))
  4313. (setq rtnall (append rtnall rtn)))
  4314. (org-agenda--insert-overriding-header
  4315. (with-temp-buffer
  4316. (insert "Search words: ")
  4317. (add-text-properties (point-min) (1- (point))
  4318. (list 'face 'org-agenda-structure))
  4319. (setq pos (point))
  4320. (insert string "\n")
  4321. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4322. (setq pos (point))
  4323. (unless org-agenda-multi
  4324. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4325. Press `\\[org-agenda-manipulate-query-add]', \
  4326. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4327. `\\[org-agenda-manipulate-query-add-re]', \
  4328. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4329. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4330. (add-text-properties pos (1- (point))
  4331. (list 'face 'org-agenda-structure)))
  4332. (buffer-string)))
  4333. (org-agenda-mark-header-line (point-min))
  4334. (when rtnall
  4335. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4336. (goto-char (point-min))
  4337. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4338. (add-text-properties (point-min) (point-max)
  4339. `(org-agenda-type search
  4340. org-last-args (,todo-only ,string ,edit-at)
  4341. org-redo-cmd ,org-agenda-redo-command
  4342. org-series-cmd ,org-cmd))
  4343. (org-agenda-finalize)
  4344. (setq buffer-read-only t))))
  4345. ;;; Agenda TODO list
  4346. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4347. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4348. (concat
  4349. (if (or (equal keywords "ALL") (not keywords))
  4350. (propertize "ALL" 'face 'warning)
  4351. (mapconcat
  4352. (lambda (kw)
  4353. (propertize kw 'face (org-get-todo-face kw)))
  4354. (org-split-string keywords "|")
  4355. "|"))
  4356. "\n"))
  4357. (defvar org-select-this-todo-keyword nil)
  4358. (defvar org-last-arg nil)
  4359. ;;;###autoload
  4360. (defun org-todo-list (&optional arg)
  4361. "Show all (not done) TODO entries from all agenda file in a single list.
  4362. The prefix arg can be used to select a specific TODO keyword and limit
  4363. the list to these. When using `\\[universal-argument]', you will be prompted
  4364. for a keyword. A numeric prefix directly selects the Nth keyword in
  4365. `org-todo-keywords-1'."
  4366. (interactive "P")
  4367. (when org-agenda-overriding-arguments
  4368. (setq arg org-agenda-overriding-arguments))
  4369. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4370. (let* ((today (org-today))
  4371. (date (calendar-gregorian-from-absolute today))
  4372. (completion-ignore-case t)
  4373. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4374. (catch 'exit
  4375. (when org-agenda-sticky
  4376. (setq org-agenda-buffer-name
  4377. (if (stringp org-select-this-todo-keyword)
  4378. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4379. org-select-this-todo-keyword)
  4380. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4381. (org-agenda-prepare "TODO")
  4382. (setq kwds org-todo-keywords-for-agenda
  4383. org-select-this-todo-keyword (if (stringp arg) arg
  4384. (and (integerp arg)
  4385. (> arg 0)
  4386. (nth (1- arg) kwds))))
  4387. (when (equal arg '(4))
  4388. (setq org-select-this-todo-keyword
  4389. (completing-read "Keyword (or KWD1|K2D2|...): "
  4390. (mapcar #'list kwds) nil nil)))
  4391. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4392. (org-compile-prefix-format 'todo)
  4393. (org-set-sorting-strategy 'todo)
  4394. (setq org-agenda-redo-command
  4395. `(org-todo-list (or (and (numberp current-prefix-arg)
  4396. current-prefix-arg)
  4397. ,org-select-this-todo-keyword
  4398. current-prefix-arg ,arg)))
  4399. (setq files (org-agenda-files nil 'ifmode)
  4400. rtnall nil)
  4401. (while (setq file (pop files))
  4402. (catch 'nextfile
  4403. (org-check-agenda-file file)
  4404. (setq rtn (org-agenda-get-day-entries file date :todo))
  4405. (setq rtnall (append rtnall rtn))))
  4406. (org-agenda--insert-overriding-header
  4407. (with-temp-buffer
  4408. (insert "Global list of TODO items of type: ")
  4409. (add-text-properties (point-min) (1- (point))
  4410. (list 'face 'org-agenda-structure
  4411. 'short-heading
  4412. (concat "ToDo: "
  4413. (or org-select-this-todo-keyword "ALL"))))
  4414. (org-agenda-mark-header-line (point-min))
  4415. (insert (org-agenda-propertize-selected-todo-keywords
  4416. org-select-this-todo-keyword))
  4417. (setq pos (point))
  4418. (unless org-agenda-multi
  4419. (insert (substitute-command-keys "Press \
  4420. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4421. to search again: (0)[ALL]"))
  4422. (let ((n 0))
  4423. (dolist (k kwds)
  4424. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4425. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4426. (insert "\n "))
  4427. (insert " " s))))
  4428. (insert "\n"))
  4429. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4430. (buffer-string)))
  4431. (org-agenda-mark-header-line (point-min))
  4432. (when rtnall
  4433. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4434. (goto-char (point-min))
  4435. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4436. (add-text-properties (point-min) (point-max)
  4437. `(org-agenda-type todo
  4438. org-last-args ,arg
  4439. org-redo-cmd ,org-agenda-redo-command
  4440. org-series-cmd ,org-cmd))
  4441. (org-agenda-finalize)
  4442. (setq buffer-read-only t))))
  4443. ;;; Agenda tags match
  4444. ;;;###autoload
  4445. (defun org-tags-view (&optional todo-only match)
  4446. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4447. The prefix arg TODO-ONLY limits the search to TODO entries."
  4448. (interactive "P")
  4449. (when org-agenda-overriding-arguments
  4450. (setq todo-only (car org-agenda-overriding-arguments)
  4451. match (nth 1 org-agenda-overriding-arguments)))
  4452. (let* ((org-tags-match-list-sublevels
  4453. org-tags-match-list-sublevels)
  4454. (completion-ignore-case t)
  4455. (org--matcher-tags-todo-only todo-only)
  4456. rtn rtnall files file pos matcher
  4457. buffer)
  4458. (when (and (stringp match) (not (string-match "\\S-" match)))
  4459. (setq match nil))
  4460. (catch 'exit
  4461. ;; TODO: this code is repeated a lot...
  4462. (when org-agenda-sticky
  4463. (setq org-agenda-buffer-name
  4464. (if (stringp match)
  4465. (format "*Org Agenda(%s:%s)*"
  4466. (or org-keys (or (and todo-only "M") "m")) match)
  4467. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4468. (setq matcher (org-make-tags-matcher match))
  4469. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4470. ;; expanding tags within `org-make-tags-matcher'
  4471. (org-agenda-prepare (concat "TAGS " match))
  4472. (setq match (car matcher)
  4473. matcher (cdr matcher))
  4474. (org-compile-prefix-format 'tags)
  4475. (org-set-sorting-strategy 'tags)
  4476. (setq org-agenda-query-string match)
  4477. (setq org-agenda-redo-command
  4478. (list 'org-tags-view
  4479. `(quote ,org--matcher-tags-todo-only)
  4480. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4481. (setq files (org-agenda-files nil 'ifmode)
  4482. rtnall nil)
  4483. (while (setq file (pop files))
  4484. (catch 'nextfile
  4485. (org-check-agenda-file file)
  4486. (setq buffer (if (file-exists-p file)
  4487. (org-get-agenda-file-buffer file)
  4488. (error "No such file %s" file)))
  4489. (if (not buffer)
  4490. ;; If file does not exist, error message to agenda
  4491. (setq rtn (list
  4492. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4493. rtnall (append rtnall rtn))
  4494. (with-current-buffer buffer
  4495. (unless (derived-mode-p 'org-mode)
  4496. (error "Agenda file %s is not in Org mode" file))
  4497. (save-excursion
  4498. (save-restriction
  4499. (if (eq buffer org-agenda-restrict)
  4500. (narrow-to-region org-agenda-restrict-begin
  4501. org-agenda-restrict-end)
  4502. (widen))
  4503. (setq rtn (org-scan-tags 'agenda
  4504. matcher
  4505. org--matcher-tags-todo-only))
  4506. (setq rtnall (append rtnall rtn))))))))
  4507. (org-agenda--insert-overriding-header
  4508. (with-temp-buffer
  4509. (insert "Headlines with TAGS match: ")
  4510. (add-text-properties (point-min) (1- (point))
  4511. (list 'face 'org-agenda-structure
  4512. 'short-heading
  4513. (concat "Match: " match)))
  4514. (setq pos (point))
  4515. (insert match "\n")
  4516. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4517. (setq pos (point))
  4518. (unless org-agenda-multi
  4519. (insert (substitute-command-keys
  4520. "Press \
  4521. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4522. to search again\n")))
  4523. (add-text-properties pos (1- (point))
  4524. (list 'face 'org-agenda-structure))
  4525. (buffer-string)))
  4526. (org-agenda-mark-header-line (point-min))
  4527. (when rtnall
  4528. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4529. (goto-char (point-min))
  4530. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4531. (add-text-properties
  4532. (point-min) (point-max)
  4533. `(org-agenda-type tags
  4534. org-last-args (,org--matcher-tags-todo-only ,match)
  4535. org-redo-cmd ,org-agenda-redo-command
  4536. org-series-cmd ,org-cmd))
  4537. (org-agenda-finalize)
  4538. (setq buffer-read-only t))))
  4539. ;;; Agenda Finding stuck projects
  4540. (defvar org-agenda-skip-regexp nil
  4541. "Regular expression used in skipping subtrees for the agenda.
  4542. This is basically a temporary global variable that can be set and then
  4543. used by user-defined selections using `org-agenda-skip-function'.")
  4544. (defvar org-agenda-overriding-header nil
  4545. "When set during agenda, todo and tags searches it replaces the header.
  4546. If an empty string, no header will be inserted. If any other
  4547. string, it will be inserted as a header. If nil, a header will
  4548. be generated automatically according to the command. This
  4549. variable should not be set directly, but custom commands can bind
  4550. it in the options section.")
  4551. (defun org-agenda-skip-entry-if (&rest conditions)
  4552. "Skip entry if any of CONDITIONS is true.
  4553. See `org-agenda-skip-if' for details."
  4554. (org-agenda-skip-if nil conditions))
  4555. (defun org-agenda-skip-subtree-if (&rest conditions)
  4556. "Skip subtree if any of CONDITIONS is true.
  4557. See `org-agenda-skip-if' for details."
  4558. (org-agenda-skip-if t conditions))
  4559. (defun org-agenda-skip-if (subtree conditions)
  4560. "Checks current entity for CONDITIONS.
  4561. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4562. the entry (i.e. the text before the next heading) is checked.
  4563. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4564. from different tests. Valid conditions are:
  4565. scheduled Check if there is a scheduled cookie
  4566. notscheduled Check if there is no scheduled cookie
  4567. deadline Check if there is a deadline
  4568. notdeadline Check if there is no deadline
  4569. timestamp Check if there is a timestamp (also deadline or scheduled)
  4570. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4571. regexp Check if regexp matches
  4572. notregexp Check if regexp does not match.
  4573. todo Check if TODO keyword matches
  4574. nottodo Check if TODO keyword does not match
  4575. The regexp is taken from the conditions list, it must come right after
  4576. the `regexp' or `notregexp' element.
  4577. `todo' and `nottodo' accept as an argument a list of todo
  4578. keywords, which may include \"*\" to match any todo keyword.
  4579. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4580. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4581. Instead of a list, a keyword class may be given. For example:
  4582. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4583. would skip entries that haven't been marked with any of \"DONE\"
  4584. keywords. Possible classes are: `todo', `done', `any'.
  4585. If any of these conditions is met, this function returns the end point of
  4586. the entity, causing the search to continue from there. This is a function
  4587. that can be put into `org-agenda-skip-function' for the duration of a command."
  4588. (org-back-to-heading t)
  4589. (let* ((beg (point))
  4590. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4591. (org-entry-end-position)))
  4592. (planning-end (if subtree end (line-end-position 2)))
  4593. m)
  4594. (and
  4595. (or (and (memq 'scheduled conditions)
  4596. (re-search-forward org-scheduled-time-regexp planning-end t))
  4597. (and (memq 'notscheduled conditions)
  4598. (not
  4599. (save-excursion
  4600. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4601. (and (memq 'deadline conditions)
  4602. (re-search-forward org-deadline-time-regexp planning-end t))
  4603. (and (memq 'notdeadline conditions)
  4604. (not
  4605. (save-excursion
  4606. (re-search-forward org-deadline-time-regexp planning-end t))))
  4607. (and (memq 'timestamp conditions)
  4608. (re-search-forward org-ts-regexp end t))
  4609. (and (memq 'nottimestamp conditions)
  4610. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4611. (and (setq m (memq 'regexp conditions))
  4612. (stringp (nth 1 m))
  4613. (re-search-forward (nth 1 m) end t))
  4614. (and (setq m (memq 'notregexp conditions))
  4615. (stringp (nth 1 m))
  4616. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4617. (and (or
  4618. (setq m (memq 'nottodo conditions))
  4619. (setq m (memq 'todo-unblocked conditions))
  4620. (setq m (memq 'nottodo-unblocked conditions))
  4621. (setq m (memq 'todo conditions)))
  4622. (org-agenda-skip-if-todo m end)))
  4623. end)))
  4624. (defun org-agenda-skip-if-todo (args end)
  4625. "Helper function for `org-agenda-skip-if', do not use it directly.
  4626. ARGS is a list with first element either `todo', `nottodo',
  4627. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4628. a list of TODO keywords, or a state symbol `todo' or `done' or
  4629. `any'."
  4630. (let ((todo-re
  4631. (concat "^\\*+[ \t]+"
  4632. (regexp-opt
  4633. (pcase args
  4634. (`(,_ todo)
  4635. (org-delete-all org-done-keywords
  4636. (copy-sequence org-todo-keywords-1)))
  4637. (`(,_ done) org-done-keywords)
  4638. (`(,_ any) org-todo-keywords-1)
  4639. (`(,_ ,(pred atom))
  4640. (error "Invalid TODO class or type: %S" args))
  4641. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4642. (`(,_ ,todo-list) todo-list))
  4643. 'words))))
  4644. (pcase args
  4645. (`(todo . ,_)
  4646. (let (case-fold-search) (re-search-forward todo-re end t)))
  4647. (`(nottodo . ,_)
  4648. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4649. (`(todo-unblocked . ,_)
  4650. (catch :unblocked
  4651. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4652. (when (org-entry-blocked-p) (throw :unblocked t)))
  4653. nil))
  4654. (`(nottodo-unblocked . ,_)
  4655. (catch :unblocked
  4656. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4657. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4658. t))
  4659. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4660. ;;;###autoload
  4661. (defun org-agenda-list-stuck-projects (&rest ignore)
  4662. "Create agenda view for projects that are stuck.
  4663. Stuck projects are project that have no next actions. For the definitions
  4664. of what a project is and how to check if it stuck, customize the variable
  4665. `org-stuck-projects'."
  4666. (interactive)
  4667. (let* ((org-agenda-overriding-header
  4668. (or org-agenda-overriding-header "List of stuck projects: "))
  4669. (matcher (nth 0 org-stuck-projects))
  4670. (todo (nth 1 org-stuck-projects))
  4671. (tags (nth 2 org-stuck-projects))
  4672. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4673. (todo-wds
  4674. (if (not (member "*" todo)) todo
  4675. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4676. (org-delete-all org-done-keywords-for-agenda
  4677. (copy-sequence org-todo-keywords-for-agenda))))
  4678. (todo-re (and todo
  4679. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4680. (mapconcat #'identity todo-wds "\\|"))))
  4681. (tags-re (cond ((null tags) nil)
  4682. ((member "*" tags) org-tag-line-re)
  4683. (tags
  4684. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4685. (concat org-outline-regexp-bol
  4686. ".*?[ \t]:"
  4687. other-tags
  4688. (regexp-opt tags t)
  4689. ":" other-tags "[ \t]*$")))
  4690. (t nil)))
  4691. (re-list (delq nil (list todo-re tags-re gen-re)))
  4692. (skip-re
  4693. (if (null re-list)
  4694. (error "Missing information to identify unstuck projects")
  4695. (mapconcat #'identity re-list "\\|")))
  4696. (org-agenda-skip-function
  4697. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4698. ;; in the subtree.
  4699. `(lambda ()
  4700. (and (save-excursion
  4701. (let ((case-fold-search nil))
  4702. (re-search-forward
  4703. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4704. (progn (outline-next-heading) (point))))))
  4705. (org-tags-view nil matcher)
  4706. (setq org-agenda-buffer-name (buffer-name))
  4707. (with-current-buffer org-agenda-buffer-name
  4708. (setq org-agenda-redo-command
  4709. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4710. (let ((inhibit-read-only t))
  4711. (add-text-properties
  4712. (point-min) (point-max)
  4713. `(org-redo-cmd ,org-agenda-redo-command))))))
  4714. ;;; Diary integration
  4715. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4716. (defvar diary-list-entries-hook)
  4717. (defvar diary-time-regexp)
  4718. (defun org-get-entries-from-diary (date)
  4719. "Get the (Emacs Calendar) diary entries for DATE."
  4720. (require 'diary-lib)
  4721. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4722. (diary-display-function 'diary-fancy-display)
  4723. (pop-up-frames nil)
  4724. (diary-list-entries-hook
  4725. (cons 'org-diary-default-entry diary-list-entries-hook))
  4726. (diary-file-name-prefix nil) ; turn this feature off
  4727. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4728. (diary-time-regexp (concat "^" diary-time-regexp))
  4729. entries
  4730. (org-disable-agenda-to-diary t))
  4731. (save-excursion
  4732. (save-window-excursion
  4733. (funcall (if (fboundp 'diary-list-entries)
  4734. 'diary-list-entries 'list-diary-entries)
  4735. date 1)))
  4736. (if (not (get-buffer diary-fancy-buffer))
  4737. (setq entries nil)
  4738. (with-current-buffer diary-fancy-buffer
  4739. (setq buffer-read-only nil)
  4740. (if (zerop (buffer-size))
  4741. ;; No entries
  4742. (setq entries nil)
  4743. ;; Omit the date and other unnecessary stuff
  4744. (org-agenda-cleanup-fancy-diary)
  4745. ;; Add prefix to each line and extend the text properties
  4746. (if (zerop (buffer-size))
  4747. (setq entries nil)
  4748. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4749. (setq entries
  4750. (with-temp-buffer
  4751. (insert entries) (goto-char (point-min))
  4752. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4753. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4754. (replace-match (concat "; " (match-string 1)))))
  4755. (buffer-string)))))
  4756. (set-buffer-modified-p nil)
  4757. (kill-buffer diary-fancy-buffer)))
  4758. (when entries
  4759. (setq entries (org-split-string entries "\n"))
  4760. (setq entries
  4761. (mapcar
  4762. (lambda (x)
  4763. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4764. ;; Extend the text properties to the beginning of the line
  4765. (org-add-props x (text-properties-at (1- (length x)) x)
  4766. 'type "diary" 'date date 'face 'org-agenda-diary))
  4767. entries)))))
  4768. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4769. "Hook run when the fancy diary buffer is cleaned up.")
  4770. (defun org-agenda-cleanup-fancy-diary ()
  4771. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4772. This gets rid of the date, the underline under the date, and the
  4773. dummy entry installed by Org mode to ensure non-empty diary for
  4774. each date. It also removes lines that contain only whitespace."
  4775. (goto-char (point-min))
  4776. (if (looking-at ".*?:[ \t]*")
  4777. (progn
  4778. (replace-match "")
  4779. (re-search-forward "\n=+$" nil t)
  4780. (replace-match "")
  4781. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4782. (re-search-forward "\n=+$" nil t)
  4783. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4784. (goto-char (point-min))
  4785. (while (re-search-forward "^ +\n" nil t)
  4786. (replace-match ""))
  4787. (goto-char (point-min))
  4788. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4789. (replace-match ""))
  4790. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4791. (defun org-modify-diary-entry-string (string)
  4792. "Add text properties to string, allowing Org to act on it."
  4793. (org-add-props string nil
  4794. 'mouse-face 'highlight
  4795. 'help-echo (if buffer-file-name
  4796. (format "mouse-2 or RET jump to diary file %s"
  4797. (abbreviate-file-name buffer-file-name))
  4798. "")
  4799. 'org-agenda-diary-link t
  4800. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4801. (defun org-diary-default-entry ()
  4802. "Add a dummy entry to the diary.
  4803. Needed to avoid empty dates which mess up holiday display."
  4804. ;; Catch the error if dealing with the new add-to-diary-alist
  4805. (when org-disable-agenda-to-diary
  4806. (condition-case nil
  4807. (org-add-to-diary-list original-date "Org mode dummy" "")
  4808. (error
  4809. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4810. (defun org-add-to-diary-list (&rest args)
  4811. (if (fboundp 'diary-add-to-list)
  4812. (apply 'diary-add-to-list args)
  4813. (apply 'add-to-diary-list args)))
  4814. (defvar org-diary-last-run-time nil)
  4815. ;;;###autoload
  4816. (defun org-diary (&rest args)
  4817. "Return diary information from org files.
  4818. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4819. It accesses org files and extracts information from those files to be
  4820. listed in the diary. The function accepts arguments specifying what
  4821. items should be listed. For a list of arguments allowed here, see the
  4822. variable `org-agenda-entry-types'.
  4823. The call in the diary file should look like this:
  4824. &%%(org-diary) ~/path/to/some/orgfile.org
  4825. Use a separate line for each org file to check. Or, if you omit the file name,
  4826. all files listed in `org-agenda-files' will be checked automatically:
  4827. &%%(org-diary)
  4828. If you don't give any arguments (as in the example above), the default value
  4829. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4830. So the example above may also be written as
  4831. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4832. The function expects the lisp variables `entry' and `date' to be provided
  4833. by the caller, because this is how the calendar works. Don't use this
  4834. function from a program - use `org-agenda-get-day-entries' instead."
  4835. (when (> (- (float-time)
  4836. org-agenda-last-marker-time)
  4837. 5)
  4838. ;; I am not sure if this works with sticky agendas, because the marker
  4839. ;; list is then no longer a global variable.
  4840. (org-agenda-reset-markers))
  4841. (org-compile-prefix-format 'agenda)
  4842. (org-set-sorting-strategy 'agenda)
  4843. (setq args (or args org-agenda-entry-types))
  4844. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4845. (list entry)
  4846. (org-agenda-files t)))
  4847. (time (float-time))
  4848. file rtn results)
  4849. (when (or (not org-diary-last-run-time)
  4850. (> (- time
  4851. org-diary-last-run-time)
  4852. 3))
  4853. (org-agenda-prepare-buffers files))
  4854. (setq org-diary-last-run-time time)
  4855. ;; If this is called during org-agenda, don't return any entries to
  4856. ;; the calendar. Org Agenda will list these entries itself.
  4857. (when org-disable-agenda-to-diary (setq files nil))
  4858. (while (setq file (pop files))
  4859. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4860. (setq results (append results rtn)))
  4861. (when results
  4862. (setq results
  4863. (mapcar (lambda (i) (replace-regexp-in-string
  4864. org-link-bracket-re "\\2" i)) results))
  4865. (concat (org-agenda-finalize-entries results) "\n"))))
  4866. ;;; Agenda entry finders
  4867. (defun org-agenda--timestamp-to-absolute (&rest args)
  4868. "Call `org-time-string-to-absolute' with ARGS.
  4869. However, throw `:skip' whenever an error is raised."
  4870. (condition-case e
  4871. (apply #'org-time-string-to-absolute args)
  4872. (org-diary-sexp-no-match (throw :skip nil))
  4873. (error
  4874. (message "%s; Skipping entry" (error-message-string e))
  4875. (throw :skip nil))))
  4876. (defun org-agenda-get-day-entries (file date &rest args)
  4877. "Does the work for `org-diary' and `org-agenda'.
  4878. FILE is the path to a file to be checked for entries. DATE is date like
  4879. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4880. which kind of entries should be extracted. For details about these, see
  4881. the documentation of `org-diary'."
  4882. (let* ((org-startup-folded nil)
  4883. (org-startup-align-all-tables nil)
  4884. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4885. (error "No such file %s" file))))
  4886. (if (not buffer)
  4887. ;; If file does not exist, signal it in diary nonetheless.
  4888. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4889. (with-current-buffer buffer
  4890. (unless (derived-mode-p 'org-mode)
  4891. (error "Agenda file %s is not in Org mode" file))
  4892. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4893. (setf org-agenda-current-date date)
  4894. (save-excursion
  4895. (save-restriction
  4896. (if (eq buffer org-agenda-restrict)
  4897. (narrow-to-region org-agenda-restrict-begin
  4898. org-agenda-restrict-end)
  4899. (widen))
  4900. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4901. ;; first in order to populate DEADLINES before passing it.
  4902. ;;
  4903. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4904. ;; guarding us from modifying `org-agenda-entry-types'.
  4905. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4906. (when (and (memq :scheduled args) (memq :scheduled* args))
  4907. (setf args (delq :scheduled* args)))
  4908. (cond
  4909. ((memq :deadline args)
  4910. (setf args (cons :deadline
  4911. (delq :deadline (delq :deadline* args)))))
  4912. ((memq :deadline* args)
  4913. (setf args (cons :deadline* (delq :deadline* args)))))
  4914. ;; Collect list of headlines. Return them flattened.
  4915. (let ((case-fold-search nil) results deadlines)
  4916. (dolist (arg args (apply #'nconc (nreverse results)))
  4917. (pcase arg
  4918. ((and :todo (guard (org-agenda-today-p date)))
  4919. (push (org-agenda-get-todos) results))
  4920. (:timestamp
  4921. (push (org-agenda-get-blocks) results)
  4922. (push (org-agenda-get-timestamps deadlines) results))
  4923. (:sexp
  4924. (push (org-agenda-get-sexps) results))
  4925. (:scheduled
  4926. (push (org-agenda-get-scheduled deadlines) results))
  4927. (:scheduled*
  4928. (push (org-agenda-get-scheduled deadlines t) results))
  4929. (:closed
  4930. (push (org-agenda-get-progress) results))
  4931. (:deadline
  4932. (setf deadlines (org-agenda-get-deadlines))
  4933. (push deadlines results))
  4934. (:deadline*
  4935. (setf deadlines (org-agenda-get-deadlines t))
  4936. (push deadlines results)))))))))))
  4937. (defsubst org-em (x y list)
  4938. "Is X or Y a member of LIST?"
  4939. (or (memq x list) (memq y list)))
  4940. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4941. (defvar org-agenda-sorting-strategy-selected nil)
  4942. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4943. "Retrieve timestamp information for sorting agenda views.
  4944. Given a point or marker POM, returns a cons cell of the timestamp
  4945. and the timestamp type relevant for the sorting strategy in
  4946. `org-agenda-sorting-strategy-selected'."
  4947. (let (ts ts-date-type)
  4948. (save-match-data
  4949. (cond ((org-em 'scheduled-up 'scheduled-down
  4950. org-agenda-sorting-strategy-selected)
  4951. (setq ts (org-entry-get pom "SCHEDULED")
  4952. ts-date-type " scheduled"))
  4953. ((org-em 'deadline-up 'deadline-down
  4954. org-agenda-sorting-strategy-selected)
  4955. (setq ts (org-entry-get pom "DEADLINE")
  4956. ts-date-type " deadline"))
  4957. ((org-em 'ts-up 'ts-down
  4958. org-agenda-sorting-strategy-selected)
  4959. (setq ts (org-entry-get pom "TIMESTAMP")
  4960. ts-date-type " timestamp"))
  4961. ((org-em 'tsia-up 'tsia-down
  4962. org-agenda-sorting-strategy-selected)
  4963. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4964. ts-date-type " timestamp_ia"))
  4965. ((org-em 'timestamp-up 'timestamp-down
  4966. org-agenda-sorting-strategy-selected)
  4967. (setq ts (or (org-entry-get pom "SCHEDULED")
  4968. (org-entry-get pom "DEADLINE")
  4969. (org-entry-get pom "TIMESTAMP")
  4970. (org-entry-get pom "TIMESTAMP_IA"))
  4971. ts-date-type ""))
  4972. (t (setq ts-date-type "")))
  4973. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4974. ts-date-type))))
  4975. (defun org-agenda-get-todos ()
  4976. "Return the TODO information for agenda display."
  4977. (let* ((props (list 'face nil
  4978. 'done-face 'org-agenda-done
  4979. 'org-not-done-regexp org-not-done-regexp
  4980. 'org-todo-regexp org-todo-regexp
  4981. 'org-complex-heading-regexp org-complex-heading-regexp
  4982. 'mouse-face 'highlight
  4983. 'help-echo
  4984. (format "mouse-2 or RET jump to org file %s"
  4985. (abbreviate-file-name buffer-file-name))))
  4986. (case-fold-search nil)
  4987. (regexp (format org-heading-keyword-regexp-format
  4988. (cond
  4989. ((and org-select-this-todo-keyword
  4990. (equal org-select-this-todo-keyword "*"))
  4991. org-todo-regexp)
  4992. (org-select-this-todo-keyword
  4993. (concat "\\("
  4994. (mapconcat 'identity
  4995. (org-split-string
  4996. org-select-this-todo-keyword
  4997. "|")
  4998. "\\|") "\\)"))
  4999. (t org-not-done-regexp))))
  5000. marker priority category level tags todo-state
  5001. ts-date ts-date-type ts-date-pair
  5002. ee txt beg end inherited-tags todo-state-end-pos)
  5003. (goto-char (point-min))
  5004. (while (re-search-forward regexp nil t)
  5005. (catch :skip
  5006. (save-match-data
  5007. (beginning-of-line)
  5008. (org-agenda-skip)
  5009. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5010. (unless (and (setq todo-state (org-get-todo-state))
  5011. (setq todo-state-end-pos (match-end 2)))
  5012. (goto-char end)
  5013. (throw :skip nil))
  5014. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5015. (goto-char (1+ beg))
  5016. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5017. (throw :skip nil)))
  5018. (goto-char (match-beginning 2))
  5019. (setq marker (org-agenda-new-marker (match-beginning 0))
  5020. category (org-get-category)
  5021. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5022. ts-date (car ts-date-pair)
  5023. ts-date-type (cdr ts-date-pair)
  5024. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5025. inherited-tags
  5026. (or (eq org-agenda-show-inherited-tags 'always)
  5027. (and (listp org-agenda-show-inherited-tags)
  5028. (memq 'todo org-agenda-show-inherited-tags))
  5029. (and (eq org-agenda-show-inherited-tags t)
  5030. (or (eq org-agenda-use-tag-inheritance t)
  5031. (memq 'todo org-agenda-use-tag-inheritance))))
  5032. tags (org-get-tags nil (not inherited-tags))
  5033. level (make-string (org-reduced-level (org-outline-level)) ? )
  5034. txt (org-agenda-format-item "" txt level category tags t)
  5035. priority (1+ (org-get-priority txt)))
  5036. (org-add-props txt props
  5037. 'org-marker marker 'org-hd-marker marker
  5038. 'priority priority
  5039. 'level level
  5040. 'ts-date ts-date
  5041. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5042. (push txt ee)
  5043. (if org-agenda-todo-list-sublevels
  5044. (goto-char todo-state-end-pos)
  5045. (org-end-of-subtree 'invisible))))
  5046. (nreverse ee)))
  5047. (defun org-agenda-todo-custom-ignore-p (time n)
  5048. "Check whether timestamp is farther away than n number of days.
  5049. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5050. `org-agenda-todo-ignore-scheduled' or
  5051. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5052. (let ((days (org-time-stamp-to-now
  5053. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5054. (if (>= n 0)
  5055. (>= days n)
  5056. (<= days n))))
  5057. ;;;###autoload
  5058. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5059. (&optional end)
  5060. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5061. (when (or org-agenda-todo-ignore-with-date
  5062. org-agenda-todo-ignore-scheduled
  5063. org-agenda-todo-ignore-deadlines
  5064. org-agenda-todo-ignore-timestamp)
  5065. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5066. (save-excursion
  5067. (or (and org-agenda-todo-ignore-with-date
  5068. (re-search-forward org-ts-regexp end t))
  5069. (and org-agenda-todo-ignore-scheduled
  5070. (re-search-forward org-scheduled-time-regexp end t)
  5071. (cond
  5072. ((eq org-agenda-todo-ignore-scheduled 'future)
  5073. (> (org-time-stamp-to-now
  5074. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5075. ((eq org-agenda-todo-ignore-scheduled 'past)
  5076. (<= (org-time-stamp-to-now
  5077. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5078. ((numberp org-agenda-todo-ignore-scheduled)
  5079. (org-agenda-todo-custom-ignore-p
  5080. (match-string 1) org-agenda-todo-ignore-scheduled))
  5081. (t)))
  5082. (and org-agenda-todo-ignore-deadlines
  5083. (re-search-forward org-deadline-time-regexp end t)
  5084. (cond
  5085. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5086. ((eq org-agenda-todo-ignore-deadlines 'far)
  5087. (not (org-deadline-close-p (match-string 1))))
  5088. ((eq org-agenda-todo-ignore-deadlines 'future)
  5089. (> (org-time-stamp-to-now
  5090. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5091. ((eq org-agenda-todo-ignore-deadlines 'past)
  5092. (<= (org-time-stamp-to-now
  5093. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5094. ((numberp org-agenda-todo-ignore-deadlines)
  5095. (org-agenda-todo-custom-ignore-p
  5096. (match-string 1) org-agenda-todo-ignore-deadlines))
  5097. (t (org-deadline-close-p (match-string 1)))))
  5098. (and org-agenda-todo-ignore-timestamp
  5099. (let ((buffer (current-buffer))
  5100. (regexp
  5101. (concat
  5102. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5103. (start (point)))
  5104. ;; Copy current buffer into a temporary one
  5105. (with-temp-buffer
  5106. (insert-buffer-substring buffer start end)
  5107. (goto-char (point-min))
  5108. ;; Delete SCHEDULED and DEADLINE items
  5109. (while (re-search-forward regexp end t)
  5110. (delete-region (match-beginning 0) (match-end 0)))
  5111. (goto-char (point-min))
  5112. ;; No search for timestamp left
  5113. (when (re-search-forward org-ts-regexp nil t)
  5114. (cond
  5115. ((eq org-agenda-todo-ignore-timestamp 'future)
  5116. (> (org-time-stamp-to-now
  5117. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5118. ((eq org-agenda-todo-ignore-timestamp 'past)
  5119. (<= (org-time-stamp-to-now
  5120. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5121. ((numberp org-agenda-todo-ignore-timestamp)
  5122. (org-agenda-todo-custom-ignore-p
  5123. (match-string 1) org-agenda-todo-ignore-timestamp))
  5124. (t))))))))))
  5125. (defun org-agenda-get-timestamps (&optional deadlines)
  5126. "Return the date stamp information for agenda display.
  5127. Optional argument DEADLINES is a list of deadline items to be
  5128. displayed in agenda view."
  5129. (let* ((props (list 'face 'org-agenda-calendar-event
  5130. 'org-not-done-regexp org-not-done-regexp
  5131. 'org-todo-regexp org-todo-regexp
  5132. 'org-complex-heading-regexp org-complex-heading-regexp
  5133. 'mouse-face 'highlight
  5134. 'help-echo
  5135. (format "mouse-2 or RET jump to Org file %s"
  5136. (abbreviate-file-name buffer-file-name))))
  5137. (current (calendar-absolute-from-gregorian date))
  5138. (today (org-today))
  5139. (deadline-position-alist
  5140. (mapcar (lambda (d)
  5141. (let ((m (get-text-property 0 'org-hd-marker d)))
  5142. (and m (marker-position m))))
  5143. deadlines))
  5144. ;; Match time-stamps set to current date, time-stamps with
  5145. ;; a repeater, and S-exp time-stamps.
  5146. (regexp
  5147. (concat
  5148. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5149. (regexp-quote
  5150. (substring
  5151. (format-time-string
  5152. (car org-time-stamp-formats)
  5153. (encode-time ; DATE bound by calendar
  5154. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5155. 1 11))
  5156. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5157. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5158. timestamp-items)
  5159. (goto-char (point-min))
  5160. (while (re-search-forward regexp nil t)
  5161. ;; Skip date ranges, scheduled and deadlines, which are handled
  5162. ;; specially. Also skip time-stamps before first headline as
  5163. ;; there would be no entry to add to the agenda. Eventually,
  5164. ;; ignore clock entries.
  5165. (catch :skip
  5166. (save-match-data
  5167. (when (or (org-at-date-range-p)
  5168. (org-at-planning-p)
  5169. (org-before-first-heading-p)
  5170. (and org-agenda-include-inactive-timestamps
  5171. (org-at-clock-log-p)))
  5172. (throw :skip nil))
  5173. (org-agenda-skip))
  5174. (let* ((pos (match-beginning 0))
  5175. (repeat (match-string 1))
  5176. (sexp-entry (match-string 3))
  5177. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5178. (save-excursion
  5179. (goto-char pos)
  5180. (looking-at org-ts-regexp-both)
  5181. (match-string 0))))
  5182. (todo-state (org-get-todo-state))
  5183. (warntime (get-text-property (point) 'org-appt-warntime))
  5184. (done? (member todo-state org-done-keywords)))
  5185. ;; Possibly skip done tasks.
  5186. (when (and done? org-agenda-skip-timestamp-if-done)
  5187. (throw :skip t))
  5188. ;; S-exp entry doesn't match current day: skip it.
  5189. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5190. (throw :skip nil))
  5191. (when repeat
  5192. (let* ((past
  5193. ;; A repeating time stamp is shown at its base
  5194. ;; date and every repeated date up to TODAY. If
  5195. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5196. ;; however, only the last repeat before today
  5197. ;; (inclusive) is shown.
  5198. (org-agenda--timestamp-to-absolute
  5199. repeat
  5200. (if (or (> current today)
  5201. (eq org-agenda-prefer-last-repeat t)
  5202. (member todo-state org-agenda-prefer-last-repeat))
  5203. today
  5204. current)
  5205. 'past (current-buffer) pos))
  5206. (future
  5207. ;; Display every repeated date past TODAY
  5208. ;; (exclusive) unless
  5209. ;; `org-agenda-show-future-repeats' is nil. If
  5210. ;; this variable is set to `next', only display
  5211. ;; the first repeated date after TODAY
  5212. ;; (exclusive).
  5213. (cond
  5214. ((<= current today) past)
  5215. ((not org-agenda-show-future-repeats) past)
  5216. (t
  5217. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5218. (1+ today)
  5219. current)))
  5220. (org-agenda--timestamp-to-absolute
  5221. repeat base 'future (current-buffer) pos))))))
  5222. (when (and (/= current past) (/= current future))
  5223. (throw :skip nil))))
  5224. (save-excursion
  5225. (re-search-backward org-outline-regexp-bol nil t)
  5226. ;; Possibly skip time-stamp when a deadline is set.
  5227. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5228. (assq (point) deadline-position-alist))
  5229. (throw :skip nil))
  5230. (let* ((category (org-get-category pos))
  5231. (inherited-tags
  5232. (or (eq org-agenda-show-inherited-tags 'always)
  5233. (and (consp org-agenda-show-inherited-tags)
  5234. (memq 'agenda org-agenda-show-inherited-tags))
  5235. (and (eq org-agenda-show-inherited-tags t)
  5236. (or (eq org-agenda-use-tag-inheritance t)
  5237. (memq 'agenda
  5238. org-agenda-use-tag-inheritance)))))
  5239. (tags (org-get-tags nil (not inherited-tags)))
  5240. (level (make-string (org-reduced-level (org-outline-level))
  5241. ?\s))
  5242. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5243. (match-string 1)))
  5244. (inactive? (= (char-after pos) ?\[))
  5245. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5246. (item
  5247. (org-agenda-format-item
  5248. (and inactive? org-agenda-inactive-leader)
  5249. head level category tags time-stamp org-ts-regexp habit?)))
  5250. (org-add-props item props
  5251. 'priority (if habit?
  5252. (org-habit-get-priority (org-habit-parse-todo))
  5253. (org-get-priority item))
  5254. 'org-marker (org-agenda-new-marker pos)
  5255. 'org-hd-marker (org-agenda-new-marker)
  5256. 'date date
  5257. 'level level
  5258. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5259. current)
  5260. 'todo-state todo-state
  5261. 'warntime warntime
  5262. 'type "timestamp")
  5263. (push item timestamp-items))))
  5264. (when org-agenda-skip-additional-timestamps-same-entry
  5265. (outline-next-heading))))
  5266. (nreverse timestamp-items)))
  5267. (defun org-agenda-get-sexps ()
  5268. "Return the sexp information for agenda display."
  5269. (require 'diary-lib)
  5270. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5271. 'mouse-face 'highlight
  5272. 'help-echo
  5273. (format "mouse-2 or RET jump to org file %s"
  5274. (abbreviate-file-name buffer-file-name))))
  5275. (regexp "^&?%%(")
  5276. marker category extra level ee txt tags entry
  5277. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5278. (goto-char (point-min))
  5279. (while (re-search-forward regexp nil t)
  5280. (catch :skip
  5281. (org-agenda-skip)
  5282. (setq beg (match-beginning 0))
  5283. (goto-char (1- (match-end 0)))
  5284. (setq b (point))
  5285. (forward-sexp 1)
  5286. (setq sexp (buffer-substring b (point)))
  5287. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5288. (org-trim (match-string 1))
  5289. ""))
  5290. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5291. (when result
  5292. (setq marker (org-agenda-new-marker beg)
  5293. level (make-string (org-reduced-level (org-outline-level)) ? )
  5294. category (org-get-category beg)
  5295. inherited-tags
  5296. (or (eq org-agenda-show-inherited-tags 'always)
  5297. (and (listp org-agenda-show-inherited-tags)
  5298. (memq 'agenda org-agenda-show-inherited-tags))
  5299. (and (eq org-agenda-show-inherited-tags t)
  5300. (or (eq org-agenda-use-tag-inheritance t)
  5301. (memq 'agenda org-agenda-use-tag-inheritance))))
  5302. tags (org-get-tags nil (not inherited-tags))
  5303. todo-state (org-get-todo-state)
  5304. warntime (get-text-property (point) 'org-appt-warntime)
  5305. extra nil)
  5306. (dolist (r (if (stringp result)
  5307. (list result)
  5308. result)) ;; we expect a list here
  5309. (when (and org-agenda-diary-sexp-prefix
  5310. (string-match org-agenda-diary-sexp-prefix r))
  5311. (setq extra (match-string 0 r)
  5312. r (replace-match "" nil nil r)))
  5313. (if (string-match "\\S-" r)
  5314. (setq txt r)
  5315. (setq txt "SEXP entry returned empty string"))
  5316. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5317. (org-add-props txt props 'org-marker marker
  5318. 'date date 'todo-state todo-state
  5319. 'level level 'type "sexp" 'warntime warntime)
  5320. (push txt ee)))))
  5321. (nreverse ee)))
  5322. ;; Calendar sanity: define some functions that are independent of
  5323. ;; `calendar-date-style'.
  5324. (defun org-anniversary (year month day &optional mark)
  5325. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5326. (with-no-warnings
  5327. (let ((calendar-date-style 'iso))
  5328. (diary-anniversary year month day mark))))
  5329. (defun org-cyclic (N year month day &optional mark)
  5330. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5331. (with-no-warnings
  5332. (let ((calendar-date-style 'iso))
  5333. (diary-cyclic N year month day mark))))
  5334. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5335. "Like `diary-block', but with fixed (ISO) order of arguments."
  5336. (with-no-warnings
  5337. (let ((calendar-date-style 'iso))
  5338. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5339. (defun org-date (year month day &optional mark)
  5340. "Like `diary-date', but with fixed (ISO) order of arguments."
  5341. (with-no-warnings
  5342. (let ((calendar-date-style 'iso))
  5343. (diary-date year month day mark))))
  5344. ;; Define the `org-class' function
  5345. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5346. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5347. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5348. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5349. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5350. `holidays', then any date that is known by the Emacs calendar to be a
  5351. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5352. then those holidays will be skipped."
  5353. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5354. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5355. (d (calendar-absolute-from-gregorian date))
  5356. (h (when skip-weeks (calendar-check-holidays date))))
  5357. (and
  5358. (<= date1 d)
  5359. (<= d date2)
  5360. (= (calendar-day-of-week date) dayname)
  5361. (or (not skip-weeks)
  5362. (progn
  5363. (require 'cal-iso)
  5364. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5365. (not (or (and h (memq 'holidays skip-weeks))
  5366. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5367. entry)))
  5368. (defalias 'org-get-closed 'org-agenda-get-progress)
  5369. (defun org-agenda-get-progress ()
  5370. "Return the logged TODO entries for agenda display."
  5371. (let* ((props (list 'mouse-face 'highlight
  5372. 'org-not-done-regexp org-not-done-regexp
  5373. 'org-todo-regexp org-todo-regexp
  5374. 'org-complex-heading-regexp org-complex-heading-regexp
  5375. 'help-echo
  5376. (format "mouse-2 or RET jump to org file %s"
  5377. (abbreviate-file-name buffer-file-name))))
  5378. (items (if (consp org-agenda-show-log-scoped)
  5379. org-agenda-show-log-scoped
  5380. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5381. '(clock)
  5382. org-agenda-log-mode-items)))
  5383. (parts
  5384. (delq nil
  5385. (list
  5386. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5387. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5388. (when (memq 'state items)
  5389. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5390. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5391. (error "`org-agenda-log-mode-items' is empty")))
  5392. (regexp (concat
  5393. "\\(" parts-re "\\)"
  5394. " *\\["
  5395. (regexp-quote
  5396. (substring
  5397. (format-time-string
  5398. (car org-time-stamp-formats)
  5399. (encode-time ; DATE bound by calendar
  5400. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5401. 1 11))))
  5402. (org-agenda-search-headline-for-time nil)
  5403. marker hdmarker priority category level tags closedp type
  5404. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5405. (goto-char (point-min))
  5406. (while (re-search-forward regexp nil t)
  5407. (catch :skip
  5408. (org-agenda-skip)
  5409. (setq marker (org-agenda-new-marker (match-beginning 0))
  5410. closedp (equal (match-string 1) org-closed-string)
  5411. statep (equal (string-to-char (match-string 1)) ?-)
  5412. clockp (not (or closedp statep))
  5413. state (and statep (match-string 2))
  5414. category (org-get-category (match-beginning 0))
  5415. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5416. (when (string-match "\\]" timestr)
  5417. ;; substring should only run to end of time stamp
  5418. (setq rest (substring timestr (match-end 0))
  5419. timestr (substring timestr 0 (match-end 0)))
  5420. (if (and (not closedp) (not statep)
  5421. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5422. rest))
  5423. (progn (setq timestr (concat (substring timestr 0 -1)
  5424. "-" (match-string 1 rest) "]"))
  5425. (setq clocked (match-string 2 rest)))
  5426. (setq clocked "-")))
  5427. (save-excursion
  5428. (setq extra
  5429. (cond
  5430. ((not org-agenda-log-mode-add-notes) nil)
  5431. (statep
  5432. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5433. (match-string 1)))
  5434. (clockp
  5435. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5436. (match-string 1)))))
  5437. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5438. (throw :skip nil)
  5439. (goto-char (match-beginning 0))
  5440. (setq hdmarker (org-agenda-new-marker)
  5441. inherited-tags
  5442. (or (eq org-agenda-show-inherited-tags 'always)
  5443. (and (listp org-agenda-show-inherited-tags)
  5444. (memq 'todo org-agenda-show-inherited-tags))
  5445. (and (eq org-agenda-show-inherited-tags t)
  5446. (or (eq org-agenda-use-tag-inheritance t)
  5447. (memq 'todo org-agenda-use-tag-inheritance))))
  5448. tags (org-get-tags nil (not inherited-tags))
  5449. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5450. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5451. (setq txt (match-string 1))
  5452. (when extra
  5453. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5454. (setq txt (concat (substring txt 0 (match-beginning 1))
  5455. " - " extra " " (match-string 2 txt)))
  5456. (setq txt (concat txt " - " extra))))
  5457. (setq txt (org-agenda-format-item
  5458. (cond
  5459. (closedp "Closed: ")
  5460. (statep (concat "State: (" state ")"))
  5461. (t (concat "Clocked: (" clocked ")")))
  5462. txt level category tags timestr)))
  5463. (setq type (cond (closedp "closed")
  5464. (statep "state")
  5465. (t "clock")))
  5466. (setq priority 100000)
  5467. (org-add-props txt props
  5468. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5469. 'priority priority 'level level
  5470. 'type type 'date date
  5471. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5472. (push txt ee))
  5473. (goto-char (point-at-eol))))
  5474. (nreverse ee)))
  5475. (defun org-agenda-show-clocking-issues ()
  5476. "Add overlays, showing issues with clocking.
  5477. See also the user option `org-agenda-clock-consistency-checks'."
  5478. (interactive)
  5479. (let* ((pl org-agenda-clock-consistency-checks)
  5480. (re (concat "^[ \t]*"
  5481. org-clock-string
  5482. "[ \t]+"
  5483. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5484. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5485. (tlstart 0.)
  5486. (tlend 0.)
  5487. (maxtime (org-duration-to-minutes
  5488. (or (plist-get pl :max-duration) "24:00")))
  5489. (mintime (org-duration-to-minutes
  5490. (or (plist-get pl :min-duration) 0)))
  5491. (maxgap (org-duration-to-minutes
  5492. ;; default 30:00 means never complain
  5493. (or (plist-get pl :max-gap) "30:00")))
  5494. (gapok (mapcar #'org-duration-to-minutes
  5495. (plist-get pl :gap-ok-around)))
  5496. (def-face (or (plist-get pl :default-face)
  5497. '((:background "DarkRed") (:foreground "white"))))
  5498. issue face m te ts dt ov)
  5499. (goto-char (point-min))
  5500. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5501. (setq issue nil face def-face)
  5502. (catch 'next
  5503. (setq m (org-get-at-bol 'org-marker)
  5504. te nil ts nil)
  5505. (unless (and m (markerp m))
  5506. (setq issue "No valid clock line") (throw 'next t))
  5507. (org-with-point-at m
  5508. (save-excursion
  5509. (goto-char (point-at-bol))
  5510. (unless (looking-at re)
  5511. (error "No valid Clock line")
  5512. (throw 'next t))
  5513. (unless (match-end 3)
  5514. (setq issue
  5515. (format
  5516. "No end time: (%s)"
  5517. (org-duration-from-minutes
  5518. (floor
  5519. (- (float-time (org-current-time))
  5520. (float-time (org-time-string-to-time (match-string 1))))
  5521. 60)))
  5522. face (or (plist-get pl :no-end-time-face) face))
  5523. (throw 'next t))
  5524. (setq ts (match-string 1)
  5525. te (match-string 3)
  5526. ts (float-time (org-time-string-to-time ts))
  5527. te (float-time (org-time-string-to-time te))
  5528. dt (- te ts))))
  5529. (cond
  5530. ((> dt (* 60 maxtime))
  5531. ;; a very long clocking chunk
  5532. (setq issue (format "Clocking interval is very long: %s"
  5533. (org-duration-from-minutes (floor dt 60)))
  5534. face (or (plist-get pl :long-face) face)))
  5535. ((< dt (* 60 mintime))
  5536. ;; a very short clocking chunk
  5537. (setq issue (format "Clocking interval is very short: %s"
  5538. (org-duration-from-minutes (floor dt 60)))
  5539. face (or (plist-get pl :short-face) face)))
  5540. ((and (> tlend 0) (< ts tlend))
  5541. ;; Two clock entries are overlapping
  5542. (setq issue (format "Clocking overlap: %d minutes"
  5543. (/ (- tlend ts) 60))
  5544. face (or (plist-get pl :overlap-face) face)))
  5545. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5546. ;; There is a gap, lets see if we need to report it
  5547. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5548. (setq issue (format "Clocking gap: %d minutes"
  5549. (/ (- ts tlend) 60))
  5550. face (or (plist-get pl :gap-face) face))))
  5551. (t nil)))
  5552. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5553. (when issue
  5554. ;; OK, there was some issue, add an overlay to show the issue
  5555. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5556. (overlay-put ov 'before-string
  5557. (concat
  5558. (org-add-props
  5559. (format "%-43s" (concat " " issue))
  5560. nil
  5561. 'face face)
  5562. "\n"))
  5563. (overlay-put ov 'evaporate t)))))
  5564. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5565. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5566. (catch 'exit
  5567. (unless ok-list
  5568. ;; there are no OK times for gaps...
  5569. (throw 'exit nil))
  5570. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5571. ;; This is more than 24 hours, so it is OK.
  5572. ;; because we have at least one OK time, that must be in the
  5573. ;; 24 hour interval.
  5574. (throw 'exit t))
  5575. ;; We have a shorter gap.
  5576. ;; Now we have to get the minute of the day when these times are
  5577. (let* ((t1dec (org-decode-time t1))
  5578. (t2dec (org-decode-time t2))
  5579. ;; compute the minute on the day
  5580. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5581. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5582. (when (< min2 min1)
  5583. ;; if min2 is smaller than min1, this means it is on the next day.
  5584. ;; Wrap it to after midnight.
  5585. (setq min2 (+ min2 1440)))
  5586. ;; Now check if any of the OK times is in the gap
  5587. (mapc (lambda (x)
  5588. ;; Wrap the time to after midnight if necessary
  5589. (when (< x min1) (setq x (+ x 1440)))
  5590. ;; Check if in interval
  5591. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5592. ok-list)
  5593. ;; Nope, this gap is not OK
  5594. nil)))
  5595. (defun org-agenda-get-deadlines (&optional with-hour)
  5596. "Return the deadline information for agenda display.
  5597. When WITH-HOUR is non-nil, only return deadlines with an hour
  5598. specification like [h]h:mm."
  5599. (let* ((props (list 'mouse-face 'highlight
  5600. 'org-not-done-regexp org-not-done-regexp
  5601. 'org-todo-regexp org-todo-regexp
  5602. 'org-complex-heading-regexp org-complex-heading-regexp
  5603. 'help-echo
  5604. (format "mouse-2 or RET jump to org file %s"
  5605. (abbreviate-file-name buffer-file-name))))
  5606. (regexp (if with-hour
  5607. org-deadline-time-hour-regexp
  5608. org-deadline-time-regexp))
  5609. (today (org-today))
  5610. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5611. (current (calendar-absolute-from-gregorian date))
  5612. deadline-items)
  5613. (goto-char (point-min))
  5614. (while (re-search-forward regexp nil t)
  5615. (catch :skip
  5616. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5617. (org-agenda-skip)
  5618. (let* ((s (match-string 1))
  5619. (pos (1- (match-beginning 1)))
  5620. (todo-state (save-match-data (org-get-todo-state)))
  5621. (done? (member todo-state org-done-keywords))
  5622. (sexp? (string-prefix-p "%%" s))
  5623. ;; DEADLINE is the deadline date for the entry. It is
  5624. ;; either the base date or the last repeat, according
  5625. ;; to `org-agenda-prefer-last-repeat'.
  5626. (deadline
  5627. (cond
  5628. (sexp? (org-agenda--timestamp-to-absolute s current))
  5629. ((or (eq org-agenda-prefer-last-repeat t)
  5630. (member todo-state org-agenda-prefer-last-repeat))
  5631. (org-agenda--timestamp-to-absolute
  5632. s today 'past (current-buffer) pos))
  5633. (t (org-agenda--timestamp-to-absolute s))))
  5634. ;; REPEAT is the future repeat closest from CURRENT,
  5635. ;; according to `org-agenda-show-future-repeats'. If
  5636. ;; the latter is nil, or if the time stamp has no
  5637. ;; repeat part, default to DEADLINE.
  5638. (repeat
  5639. (cond
  5640. (sexp? deadline)
  5641. ((<= current today) deadline)
  5642. ((not org-agenda-show-future-repeats) deadline)
  5643. (t
  5644. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5645. (1+ today)
  5646. current)))
  5647. (org-agenda--timestamp-to-absolute
  5648. s base 'future (current-buffer) pos)))))
  5649. (diff (- deadline current))
  5650. (suppress-prewarning
  5651. (let ((scheduled
  5652. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5653. (org-entry-get nil "SCHEDULED"))))
  5654. (cond
  5655. ((not scheduled) nil)
  5656. ;; The current item has a scheduled date, so
  5657. ;; evaluate its prewarning lead time.
  5658. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5659. ;; Use global prewarning-restart lead time.
  5660. org-agenda-skip-deadline-prewarning-if-scheduled)
  5661. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5662. 'pre-scheduled)
  5663. ;; Set pre-warning to no earlier than SCHEDULED.
  5664. (min (- deadline
  5665. (org-agenda--timestamp-to-absolute scheduled))
  5666. org-deadline-warning-days))
  5667. ;; Set pre-warning to deadline.
  5668. (t 0))))
  5669. (wdays (or suppress-prewarning (org-get-wdays s))))
  5670. (cond
  5671. ;; Only display deadlines at their base date, at future
  5672. ;; repeat occurrences or in today agenda.
  5673. ((= current deadline) nil)
  5674. ((= current repeat) nil)
  5675. ((not today?) (throw :skip nil))
  5676. ;; Upcoming deadline: display within warning period WDAYS.
  5677. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5678. ;; Overdue deadline: warn about it for
  5679. ;; `org-deadline-past-days' duration.
  5680. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5681. ;; Possibly skip done tasks.
  5682. (when (and done?
  5683. (or org-agenda-skip-deadline-if-done
  5684. (/= deadline current)))
  5685. (throw :skip nil))
  5686. (save-excursion
  5687. (re-search-backward "^\\*+[ \t]+" nil t)
  5688. (goto-char (match-end 0))
  5689. (let* ((category (org-get-category))
  5690. (level (make-string (org-reduced-level (org-outline-level))
  5691. ?\s))
  5692. (head (buffer-substring (point) (line-end-position)))
  5693. (inherited-tags
  5694. (or (eq org-agenda-show-inherited-tags 'always)
  5695. (and (listp org-agenda-show-inherited-tags)
  5696. (memq 'agenda org-agenda-show-inherited-tags))
  5697. (and (eq org-agenda-show-inherited-tags t)
  5698. (or (eq org-agenda-use-tag-inheritance t)
  5699. (memq 'agenda
  5700. org-agenda-use-tag-inheritance)))))
  5701. (tags (org-get-tags nil (not inherited-tags)))
  5702. (time
  5703. (cond
  5704. ;; No time of day designation if it is only
  5705. ;; a reminder.
  5706. ((and (/= current deadline) (/= current repeat)) nil)
  5707. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5708. (concat (substring s (match-beginning 1)) " "))
  5709. (t 'time)))
  5710. (item
  5711. (org-agenda-format-item
  5712. ;; Insert appropriate suffixes before deadlines.
  5713. ;; Those only apply to today agenda.
  5714. (pcase-let ((`(,now ,future ,past)
  5715. org-agenda-deadline-leaders))
  5716. (cond
  5717. ((and today? (< deadline today)) (format past (- diff)))
  5718. ((and today? (> deadline today)) (format future diff))
  5719. (t now)))
  5720. head level category tags time))
  5721. (face (org-agenda-deadline-face
  5722. (- 1 (/ (float diff) (max wdays 1)))))
  5723. (upcoming? (and today? (> deadline today)))
  5724. (warntime (get-text-property (point) 'org-appt-warntime)))
  5725. (org-add-props item props
  5726. 'org-marker (org-agenda-new-marker pos)
  5727. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5728. 'warntime warntime
  5729. 'level level
  5730. 'ts-date deadline
  5731. 'priority
  5732. ;; Adjust priority to today reminders about deadlines.
  5733. ;; Overdue deadlines get the highest priority
  5734. ;; increase, then imminent deadlines and eventually
  5735. ;; more distant deadlines.
  5736. (let ((adjust (if today? (- diff) 0)))
  5737. (+ adjust (org-get-priority item)))
  5738. 'todo-state todo-state
  5739. 'type (if upcoming? "upcoming-deadline" "deadline")
  5740. 'date (if upcoming? date deadline)
  5741. 'face (if done? 'org-agenda-done face)
  5742. 'undone-face face
  5743. 'done-face 'org-agenda-done)
  5744. (push item deadline-items))))))
  5745. (nreverse deadline-items)))
  5746. (defun org-agenda-deadline-face (fraction)
  5747. "Return the face to displaying a deadline item.
  5748. FRACTION is what fraction of the head-warning time has passed."
  5749. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5750. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5751. "Return the scheduled information for agenda display.
  5752. Optional argument DEADLINES is a list of deadline items to be
  5753. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5754. scheduled items with an hour specification like [h]h:mm."
  5755. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5756. 'org-todo-regexp org-todo-regexp
  5757. 'org-complex-heading-regexp org-complex-heading-regexp
  5758. 'done-face 'org-agenda-done
  5759. 'mouse-face 'highlight
  5760. 'help-echo
  5761. (format "mouse-2 or RET jump to Org file %s"
  5762. (abbreviate-file-name buffer-file-name))))
  5763. (regexp (if with-hour
  5764. org-scheduled-time-hour-regexp
  5765. org-scheduled-time-regexp))
  5766. (today (org-today))
  5767. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5768. (current (calendar-absolute-from-gregorian date))
  5769. (deadline-pos
  5770. (mapcar (lambda (d)
  5771. (let ((m (get-text-property 0 'org-hd-marker d)))
  5772. (and m (marker-position m))))
  5773. deadlines))
  5774. scheduled-items)
  5775. (goto-char (point-min))
  5776. (while (re-search-forward regexp nil t)
  5777. (catch :skip
  5778. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5779. (org-agenda-skip)
  5780. (let* ((s (match-string 1))
  5781. (pos (1- (match-beginning 1)))
  5782. (todo-state (save-match-data (org-get-todo-state)))
  5783. (donep (member todo-state org-done-keywords))
  5784. (sexp? (string-prefix-p "%%" s))
  5785. ;; SCHEDULE is the scheduled date for the entry. It is
  5786. ;; either the bare date or the last repeat, according
  5787. ;; to `org-agenda-prefer-last-repeat'.
  5788. (schedule
  5789. (cond
  5790. (sexp? (org-agenda--timestamp-to-absolute s current))
  5791. ((or (eq org-agenda-prefer-last-repeat t)
  5792. (member todo-state org-agenda-prefer-last-repeat))
  5793. (org-agenda--timestamp-to-absolute
  5794. s today 'past (current-buffer) pos))
  5795. (t (org-agenda--timestamp-to-absolute s))))
  5796. ;; REPEAT is the future repeat closest from CURRENT,
  5797. ;; according to `org-agenda-show-future-repeats'. If
  5798. ;; the latter is nil, or if the time stamp has no
  5799. ;; repeat part, default to SCHEDULE.
  5800. (repeat
  5801. (cond
  5802. (sexp? schedule)
  5803. ((<= current today) schedule)
  5804. ((not org-agenda-show-future-repeats) schedule)
  5805. (t
  5806. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5807. (1+ today)
  5808. current)))
  5809. (org-agenda--timestamp-to-absolute
  5810. s base 'future (current-buffer) pos)))))
  5811. (diff (- current schedule))
  5812. (warntime (get-text-property (point) 'org-appt-warntime))
  5813. (pastschedp (< schedule today))
  5814. (futureschedp (> schedule today))
  5815. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5816. (suppress-delay
  5817. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5818. (org-entry-get nil "DEADLINE"))))
  5819. (cond
  5820. ((not deadline) nil)
  5821. ;; The current item has a deadline date, so
  5822. ;; evaluate its delay time.
  5823. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5824. ;; Use global delay time.
  5825. (- org-agenda-skip-scheduled-delay-if-deadline))
  5826. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5827. 'post-deadline)
  5828. ;; Set delay to no later than DEADLINE.
  5829. (min (- schedule
  5830. (org-agenda--timestamp-to-absolute deadline))
  5831. org-scheduled-delay-days))
  5832. (t 0))))
  5833. (diff-r (abs (- repeat current)))
  5834. (ddays-once (or (and (string-match "--\\([0-9]+\\)[hdwmy]" s)
  5835. (string-to-number (match-string 1 s)))
  5836. 0))
  5837. (ddays
  5838. (cond
  5839. ;; Nullify delay when a repeater triggered already
  5840. ;; and the delay is of the form --Xd.
  5841. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5842. (> schedule (org-agenda--timestamp-to-absolute s)))
  5843. 0)
  5844. (suppress-delay
  5845. (let ((org-scheduled-delay-days suppress-delay))
  5846. (org-get-wdays s t t)))
  5847. (t (org-get-wdays s t)))))
  5848. ;; Display scheduled items at base date (SCHEDULE), today if
  5849. ;; scheduled before the current date, and at any repeat past
  5850. ;; today. However, skip delayed items and items that have
  5851. ;; been displayed for more than `org-scheduled-past-days'.
  5852. (unless (and todayp
  5853. habitp
  5854. (bound-and-true-p org-habit-show-all-today))
  5855. (when (or
  5856. ;; no one-time delay, not repeated delay
  5857. (and (not ddays-once) (not (= ddays diff-r)))
  5858. ;; one-time delay, but not for today
  5859. (and ddays-once
  5860. (not (= diff diff-r))
  5861. (= ddays-once diff-r))
  5862. ;; normal delay, but already in the past
  5863. (and (> ddays 0) (< diff ddays))
  5864. ;; a habit, but past `org-habit-scheduled-past-days'
  5865. (> diff (or (and habitp org-habit-scheduled-past-days)
  5866. org-scheduled-past-days))
  5867. ;; schedule in the future
  5868. (> schedule current)
  5869. ;; no delay, not scheduled today, no deadline for today
  5870. (and (= ddays 0)
  5871. (/= current schedule)
  5872. (/= current today)
  5873. (/= current repeat)))
  5874. (throw :skip nil)))
  5875. ;; Possibly skip done tasks.
  5876. (when (and donep
  5877. (or org-agenda-skip-scheduled-if-done
  5878. (/= schedule current)))
  5879. (throw :skip nil))
  5880. ;; Skip entry if it already appears as a deadline, per
  5881. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5882. ;; doesn't apply to habits.
  5883. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5884. ((guard
  5885. (or (not (memq (line-beginning-position 0) deadline-pos))
  5886. habitp))
  5887. nil)
  5888. (`repeated-after-deadline
  5889. (let ((deadline (time-to-days
  5890. (org-get-deadline-time (point)))))
  5891. (and (<= schedule deadline) (> current deadline))))
  5892. (`not-today pastschedp)
  5893. (`t t)
  5894. (_ nil))
  5895. (throw :skip nil))
  5896. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5897. ;; only show them for today. Also skip done habits.
  5898. (when (and habitp
  5899. (or donep
  5900. (not (bound-and-true-p org-habit-show-habits))
  5901. (and (not todayp)
  5902. (bound-and-true-p
  5903. org-habit-show-habits-only-for-today))))
  5904. (throw :skip nil))
  5905. (save-excursion
  5906. (re-search-backward "^\\*+[ \t]+" nil t)
  5907. (goto-char (match-end 0))
  5908. (let* ((category (org-get-category))
  5909. (inherited-tags
  5910. (or (eq org-agenda-show-inherited-tags 'always)
  5911. (and (listp org-agenda-show-inherited-tags)
  5912. (memq 'agenda org-agenda-show-inherited-tags))
  5913. (and (eq org-agenda-show-inherited-tags t)
  5914. (or (eq org-agenda-use-tag-inheritance t)
  5915. (memq 'agenda
  5916. org-agenda-use-tag-inheritance)))))
  5917. (tags (org-get-tags nil (not inherited-tags)))
  5918. (level (make-string (org-reduced-level (org-outline-level))
  5919. ?\s))
  5920. (head (buffer-substring (point) (line-end-position)))
  5921. (time
  5922. (cond
  5923. ;; No time of day designation if it is only a
  5924. ;; reminder, except for habits, which always show
  5925. ;; the time of day. Habits are an exception
  5926. ;; because if there is a time of day, that is
  5927. ;; interpreted to mean they should usually happen
  5928. ;; then, even if doing the habit was missed.
  5929. ((and
  5930. (not habitp)
  5931. (/= current schedule)
  5932. (/= current repeat))
  5933. nil)
  5934. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5935. (concat (substring s (match-beginning 1)) " "))
  5936. (t 'time)))
  5937. (item
  5938. (org-agenda-format-item
  5939. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5940. ;; Show a reminder of a past scheduled today.
  5941. (if (and todayp pastschedp)
  5942. (format past diff)
  5943. first))
  5944. head level category tags time nil habitp))
  5945. (face (cond ((and (not habitp) pastschedp)
  5946. 'org-scheduled-previously)
  5947. ((and habitp futureschedp)
  5948. 'org-agenda-done)
  5949. (todayp 'org-scheduled-today)
  5950. (t 'org-scheduled)))
  5951. (habitp (and habitp (org-habit-parse-todo))))
  5952. (org-add-props item props
  5953. 'undone-face face
  5954. 'face (if donep 'org-agenda-done face)
  5955. 'org-marker (org-agenda-new-marker pos)
  5956. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5957. 'type (if pastschedp "past-scheduled" "scheduled")
  5958. 'date (if pastschedp schedule date)
  5959. 'ts-date schedule
  5960. 'warntime warntime
  5961. 'level level
  5962. 'priority (if habitp (org-habit-get-priority habitp)
  5963. (+ 99 diff (org-get-priority item)))
  5964. 'org-habit-p habitp
  5965. 'todo-state todo-state)
  5966. (push item scheduled-items))))))
  5967. (nreverse scheduled-items)))
  5968. (defun org-agenda-get-blocks ()
  5969. "Return the date-range information for agenda display."
  5970. (let* ((props (list 'face nil
  5971. 'org-not-done-regexp org-not-done-regexp
  5972. 'org-todo-regexp org-todo-regexp
  5973. 'org-complex-heading-regexp org-complex-heading-regexp
  5974. 'mouse-face 'highlight
  5975. 'help-echo
  5976. (format "mouse-2 or RET jump to org file %s"
  5977. (abbreviate-file-name buffer-file-name))))
  5978. (regexp org-tr-regexp)
  5979. (d0 (calendar-absolute-from-gregorian date))
  5980. marker hdmarker ee txt d1 d2 s1 s2 category
  5981. level todo-state tags pos head donep inherited-tags)
  5982. (goto-char (point-min))
  5983. (while (re-search-forward regexp nil t)
  5984. (catch :skip
  5985. (org-agenda-skip)
  5986. (setq pos (point))
  5987. (let ((start-time (match-string 1))
  5988. (end-time (match-string 2)))
  5989. (setq s1 (match-string 1)
  5990. s2 (match-string 2)
  5991. d1 (time-to-days
  5992. (condition-case err
  5993. (org-time-string-to-time s1)
  5994. (error
  5995. (error
  5996. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5997. s1
  5998. pos
  5999. (current-buffer)
  6000. (error-message-string err)))))
  6001. d2 (time-to-days
  6002. (condition-case err
  6003. (org-time-string-to-time s2)
  6004. (error
  6005. (error
  6006. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6007. s2
  6008. pos
  6009. (current-buffer)
  6010. (error-message-string err))))))
  6011. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6012. ;; Only allow days between the limits, because the normal
  6013. ;; date stamps will catch the limits.
  6014. (save-excursion
  6015. (setq todo-state (org-get-todo-state))
  6016. (setq donep (member todo-state org-done-keywords))
  6017. (when (and donep org-agenda-skip-timestamp-if-done)
  6018. (throw :skip t))
  6019. (setq marker (org-agenda-new-marker (point))
  6020. category (org-get-category))
  6021. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6022. (throw :skip nil)
  6023. (goto-char (match-beginning 0))
  6024. (setq hdmarker (org-agenda-new-marker (point))
  6025. inherited-tags
  6026. (or (eq org-agenda-show-inherited-tags 'always)
  6027. (and (listp org-agenda-show-inherited-tags)
  6028. (memq 'agenda org-agenda-show-inherited-tags))
  6029. (and (eq org-agenda-show-inherited-tags t)
  6030. (or (eq org-agenda-use-tag-inheritance t)
  6031. (memq 'agenda org-agenda-use-tag-inheritance))))
  6032. tags (org-get-tags nil (not inherited-tags)))
  6033. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6034. (looking-at "\\*+[ \t]+\\(.*\\)")
  6035. (setq head (match-string 1))
  6036. (let ((remove-re
  6037. (if org-agenda-remove-timeranges-from-blocks
  6038. (concat
  6039. "<" (regexp-quote s1) ".*?>"
  6040. "--"
  6041. "<" (regexp-quote s2) ".*?>")
  6042. nil)))
  6043. (setq txt (org-agenda-format-item
  6044. (format
  6045. (nth (if (= d1 d2) 0 1)
  6046. org-agenda-timerange-leaders)
  6047. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6048. head level category tags
  6049. (save-match-data
  6050. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6051. (match-string 6 s1)))
  6052. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6053. (match-string 6 s2))))
  6054. (cond ((string= hhmm1 hhmm2)
  6055. (concat "<" start-time ">--<" end-time ">"))
  6056. ((and (= d1 d0) (= d2 d0))
  6057. (concat "<" start-time ">--<" end-time ">"))
  6058. ((= d1 d0)
  6059. (concat "<" start-time ">"))
  6060. ((= d2 d0)
  6061. (concat "<" end-time ">")))))
  6062. remove-re))))
  6063. (org-add-props txt props
  6064. 'org-marker marker 'org-hd-marker hdmarker
  6065. 'type "block" 'date date
  6066. 'level level
  6067. 'todo-state todo-state
  6068. 'priority (org-get-priority txt))
  6069. (push txt ee))))
  6070. (goto-char pos)))
  6071. ;; Sort the entries by expiration date.
  6072. (nreverse ee)))
  6073. ;;; Agenda presentation and sorting
  6074. (defvar org-prefix-has-time nil
  6075. "A flag, set by `org-compile-prefix-format'.
  6076. The flag is set if the currently compiled format contains a `%t'.")
  6077. (defvar org-prefix-has-tag nil
  6078. "A flag, set by `org-compile-prefix-format'.
  6079. The flag is set if the currently compiled format contains a `%T'.")
  6080. (defvar org-prefix-has-effort nil
  6081. "A flag, set by `org-compile-prefix-format'.
  6082. The flag is set if the currently compiled format contains a `%e'.")
  6083. (defvar org-prefix-has-breadcrumbs nil
  6084. "A flag, set by `org-compile-prefix-format'.
  6085. The flag is set if the currently compiled format contains a `%b'.")
  6086. (defvar org-prefix-category-length nil
  6087. "Used by `org-compile-prefix-format' to remember the category field width.")
  6088. (defvar org-prefix-category-max-length nil
  6089. "Used by `org-compile-prefix-format' to remember the category field width.")
  6090. (defun org-agenda-get-category-icon (category)
  6091. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6092. (cl-dolist (entry org-agenda-category-icon-alist)
  6093. (when (string-match-p (car entry) category)
  6094. (if (listp (cadr entry))
  6095. (cl-return (cadr entry))
  6096. (cl-return (apply #'create-image (cdr entry)))))))
  6097. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6098. remove-re habitp)
  6099. "Format TXT to be inserted into the agenda buffer.
  6100. In particular, add the prefix and corresponding text properties.
  6101. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6102. LEVEL may be a string to replace the `%l' specifier.
  6103. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6104. category taken from local variable or file name. It will replace the `%c'
  6105. specifier in the format.
  6106. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6107. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6108. When DOTIME is a string, this string is searched for a time before TXT is.
  6109. TAGS can be the tags of the headline.
  6110. Any match of REMOVE-RE will be removed from TXT."
  6111. ;; We keep the org-prefix-* variable values along with a compiled
  6112. ;; formatter, so that multiple agendas existing at the same time do
  6113. ;; not step on each other toes.
  6114. ;;
  6115. ;; It was inconvenient to make these variables buffer local in
  6116. ;; Agenda buffers, because this function expects to be called with
  6117. ;; the buffer where item comes from being current, and not agenda
  6118. ;; buffer
  6119. (let* ((bindings (car org-prefix-format-compiled))
  6120. (formatter (cadr org-prefix-format-compiled)))
  6121. (cl-loop for (var value) in bindings
  6122. do (set var value))
  6123. (save-match-data
  6124. ;; Diary entries sometimes have extra whitespace at the beginning
  6125. (setq txt (org-trim txt))
  6126. ;; Fix the tags part in txt
  6127. (setq txt (org-agenda-fix-displayed-tags
  6128. txt tags
  6129. org-agenda-show-inherited-tags
  6130. org-agenda-hide-tags-regexp))
  6131. (let* ((category (or category
  6132. (if buffer-file-name
  6133. (file-name-sans-extension
  6134. (file-name-nondirectory buffer-file-name))
  6135. "")))
  6136. (category-icon (org-agenda-get-category-icon category))
  6137. (category-icon (if category-icon
  6138. (propertize " " 'display category-icon)
  6139. ""))
  6140. (effort (and (not (string= txt ""))
  6141. (get-text-property 1 'effort txt)))
  6142. ;; time, tag, effort are needed for the eval of the prefix format
  6143. (tag (if tags (nth (1- (length tags)) tags) ""))
  6144. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6145. time
  6146. (ts (when dotime (concat
  6147. (if (stringp dotime) dotime "")
  6148. (and org-agenda-search-headline-for-time txt))))
  6149. (time-of-day (and dotime (org-get-time-of-day ts)))
  6150. stamp plain s0 s1 s2 rtn srp l
  6151. duration breadcrumbs)
  6152. (and (derived-mode-p 'org-mode) buffer-file-name
  6153. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6154. (when (and dotime time-of-day)
  6155. ;; Extract starting and ending time and move them to prefix
  6156. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6157. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6158. (setq s0 (match-string 0 ts)
  6159. srp (and stamp (match-end 3))
  6160. s1 (match-string (if plain 1 2) ts)
  6161. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6162. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6163. ;; them, we might want to remove them there to avoid duplication.
  6164. ;; The user can turn this off with a variable.
  6165. (when (and org-prefix-has-time
  6166. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6167. (string-match (concat (regexp-quote s0) " *") txt)
  6168. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6169. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6170. (= (match-beginning 0) 0)
  6171. t))
  6172. (setq txt (replace-match "" nil nil txt))))
  6173. ;; Normalize the time(s) to 24 hour
  6174. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6175. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6176. ;; Try to set s2 if s1 and
  6177. ;; `org-agenda-default-appointment-duration' are set
  6178. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6179. (setq s2
  6180. (org-duration-from-minutes
  6181. (+ (org-duration-to-minutes s1 t)
  6182. org-agenda-default-appointment-duration)
  6183. nil t)))
  6184. ;; Compute the duration
  6185. (when s2
  6186. (setq duration (- (org-duration-to-minutes s2)
  6187. (org-duration-to-minutes s1)))))
  6188. (when (string-match org-tag-group-re txt)
  6189. ;; Tags are in the string
  6190. (if (or (eq org-agenda-remove-tags t)
  6191. (and org-agenda-remove-tags
  6192. org-prefix-has-tag))
  6193. (setq txt (replace-match "" t t txt))
  6194. (setq txt (replace-match
  6195. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6196. (match-string 1 txt))
  6197. t t txt))))
  6198. (when remove-re
  6199. (while (string-match remove-re txt)
  6200. (setq txt (replace-match "" t t txt))))
  6201. ;; Set org-heading property on `txt' to mark the start of the
  6202. ;; heading.
  6203. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6204. ;; Prepare the variables needed in the eval of the compiled format
  6205. (when org-prefix-has-breadcrumbs
  6206. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6207. (let ((s (org-format-outline-path (org-get-outline-path)
  6208. (1- (frame-width))
  6209. nil org-agenda-breadcrumbs-separator)))
  6210. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6211. (setq time (cond (s2 (concat
  6212. (org-agenda-time-of-day-to-ampm-maybe s1)
  6213. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6214. (when org-agenda-timegrid-use-ampm " ")))
  6215. (s1 (concat
  6216. (org-agenda-time-of-day-to-ampm-maybe s1)
  6217. (if org-agenda-timegrid-use-ampm
  6218. (concat time-grid-trailing-characters " ")
  6219. time-grid-trailing-characters)))
  6220. (t ""))
  6221. extra (or (and (not habitp) extra) "")
  6222. category (if (symbolp category) (symbol-name category) category)
  6223. level (or level ""))
  6224. (if (string-match org-link-bracket-re category)
  6225. (progn
  6226. (setq l (string-width (or (match-string 2) (match-string 1))))
  6227. (when (< l (or org-prefix-category-length 0))
  6228. (setq category (copy-sequence category))
  6229. (org-add-props category nil
  6230. 'extra-space (make-string
  6231. (- org-prefix-category-length l 1) ?\ ))))
  6232. (when (and org-prefix-category-max-length
  6233. (>= (length category) org-prefix-category-max-length))
  6234. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6235. ;; Evaluate the compiled format
  6236. (setq rtn (concat (eval formatter) txt))
  6237. ;; And finally add the text properties
  6238. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6239. (org-add-props rtn nil
  6240. 'org-category category
  6241. 'tags (mapcar 'org-downcase-keep-props tags)
  6242. 'org-highest-priority org-highest-priority
  6243. 'org-lowest-priority org-lowest-priority
  6244. 'time-of-day time-of-day
  6245. 'duration duration
  6246. 'breadcrumbs breadcrumbs
  6247. 'txt txt
  6248. 'level level
  6249. 'time time
  6250. 'extra extra
  6251. 'format org-prefix-format-compiled
  6252. 'dotime dotime)))))
  6253. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6254. "Remove tags string from TXT, and add a modified list of tags.
  6255. The modified list may contain inherited tags, and tags matched by
  6256. `org-agenda-hide-tags-regexp' will be removed."
  6257. (when (or add-inherited hide-re)
  6258. (when (string-match org-tag-group-re txt)
  6259. (setq txt (substring txt 0 (match-beginning 0))))
  6260. (setq tags
  6261. (delq nil
  6262. (mapcar (lambda (tg)
  6263. (if (or (and hide-re (string-match hide-re tg))
  6264. (and (not add-inherited)
  6265. (get-text-property 0 'inherited tg)))
  6266. nil
  6267. tg))
  6268. tags)))
  6269. (when tags
  6270. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6271. i)
  6272. (setq txt (concat txt " :"
  6273. (mapconcat
  6274. (lambda (x)
  6275. (setq i (get-text-property 0 'inherited x))
  6276. (if (and have-i (not i))
  6277. (progn
  6278. (setq have-i nil)
  6279. (concat ":" x))
  6280. x))
  6281. tags ":")
  6282. (if have-i "::" ":"))))))
  6283. txt)
  6284. (defun org-downcase-keep-props (s)
  6285. (let ((props (text-properties-at 0 s)))
  6286. (setq s (downcase s))
  6287. (add-text-properties 0 (length s) props s)
  6288. s))
  6289. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6290. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6291. "Add a time-grid for agenda items which need it.
  6292. LIST is the list of agenda items formatted by `org-agenda-list'.
  6293. NDAYS is the span of the current agenda view.
  6294. TODAYP is t when the current agenda view is on today."
  6295. (catch 'exit
  6296. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6297. ((and todayp (member 'today (car org-agenda-time-grid))))
  6298. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6299. ((member 'weekly (car org-agenda-time-grid)))
  6300. (t (throw 'exit list)))
  6301. (let* ((have (delq nil (mapcar
  6302. (lambda (x) (get-text-property 1 'time-of-day x))
  6303. list)))
  6304. (string (nth 3 org-agenda-time-grid))
  6305. (gridtimes (nth 1 org-agenda-time-grid))
  6306. (req (car org-agenda-time-grid))
  6307. (remove (member 'remove-match req))
  6308. new time)
  6309. (when (and (member 'require-timed req) (not have))
  6310. ;; don't show empty grid
  6311. (throw 'exit list))
  6312. (while (setq time (pop gridtimes))
  6313. (unless (and remove (member time have))
  6314. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6315. (push (org-agenda-format-item
  6316. nil string nil "" nil
  6317. (concat (substring time 0 -2) ":" (substring time -2)))
  6318. new)
  6319. (put-text-property
  6320. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6321. (when (and todayp org-agenda-show-current-time-in-grid)
  6322. (push (org-agenda-format-item
  6323. nil org-agenda-current-time-string nil "" nil
  6324. (format-time-string "%H:%M "))
  6325. new)
  6326. (put-text-property
  6327. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6328. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6329. (append new list)
  6330. (append list new)))))
  6331. (defun org-compile-prefix-format (key)
  6332. "Compile the prefix format into a Lisp form that can be evaluated.
  6333. The resulting form and associated variable bindings is returned
  6334. and stored in the variable `org-prefix-format-compiled'."
  6335. (setq org-prefix-has-time nil
  6336. org-prefix-has-tag nil
  6337. org-prefix-category-length nil
  6338. org-prefix-has-effort nil
  6339. org-prefix-has-breadcrumbs nil)
  6340. (let ((s (cond
  6341. ((stringp org-agenda-prefix-format)
  6342. org-agenda-prefix-format)
  6343. ((assq key org-agenda-prefix-format)
  6344. (cdr (assq key org-agenda-prefix-format)))
  6345. (t " %-12:c%?-12t% s")))
  6346. (start 0)
  6347. varform vars var e c f opt)
  6348. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6349. s start)
  6350. (setq var (or (cdr (assoc (match-string 4 s)
  6351. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6352. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6353. 'eval)
  6354. c (or (match-string 3 s) "")
  6355. opt (match-beginning 1)
  6356. start (1+ (match-beginning 0)))
  6357. (cl-case var
  6358. (time (setq org-prefix-has-time t))
  6359. (tag (setq org-prefix-has-tag t))
  6360. (effort (setq org-prefix-has-effort t))
  6361. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6362. (setq f (concat "%" (match-string 2 s) "s"))
  6363. (when (eq var 'category)
  6364. (setq org-prefix-category-length
  6365. (floor (abs (string-to-number (match-string 2 s)))))
  6366. (setq org-prefix-category-max-length
  6367. (let ((x (match-string 2 s)))
  6368. (save-match-data
  6369. (and (string-match "\\.[0-9]+" x)
  6370. (string-to-number (substring (match-string 0 x) 1)))))))
  6371. (if (eq var 'eval)
  6372. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6373. (if opt
  6374. (setq varform
  6375. `(if (or (equal "" ,var) (equal nil ,var))
  6376. ""
  6377. (format ,f (concat ,var ,c))))
  6378. (setq varform
  6379. `(format ,f (if (or (equal ,var "")
  6380. (equal ,var nil)) ""
  6381. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6382. (setq s (replace-match "%s" t nil s))
  6383. (push varform vars))
  6384. (setq vars (nreverse vars))
  6385. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6386. (setq org-prefix-format-compiled
  6387. (list
  6388. `((org-prefix-has-time ,org-prefix-has-time)
  6389. (org-prefix-has-tag ,org-prefix-has-tag)
  6390. (org-prefix-category-length ,org-prefix-category-length)
  6391. (org-prefix-has-effort ,org-prefix-has-effort)
  6392. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6393. `(format ,s ,@vars))))))
  6394. (defun org-set-sorting-strategy (key)
  6395. (if (symbolp (car org-agenda-sorting-strategy))
  6396. ;; the old format
  6397. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6398. (setq org-agenda-sorting-strategy-selected
  6399. (or (cdr (assq key org-agenda-sorting-strategy))
  6400. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6401. '(time-up category-keep priority-down)))))
  6402. (defun org-get-time-of-day (s &optional string mod24)
  6403. "Check string S for a time of day.
  6404. If found, return it as a military time number between 0 and 2400.
  6405. If not found, return nil.
  6406. The optional STRING argument forces conversion into a 5 character wide string
  6407. HH:MM."
  6408. (save-match-data
  6409. (when
  6410. (and
  6411. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6412. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6413. (not (eq (get-text-property 1 'face s) 'org-link)))
  6414. (let* ((h (string-to-number (match-string 1 s)))
  6415. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6416. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6417. (am-p (equal ampm "am"))
  6418. (h1 (cond ((not ampm) h)
  6419. ((= h 12) (if am-p 0 12))
  6420. (t (+ h (if am-p 0 12)))))
  6421. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6422. (mod h1 24) h1))
  6423. (t0 (+ (* 100 h2) m))
  6424. (t1 (concat (if (>= h1 24) "+" " ")
  6425. (if (and org-agenda-time-leading-zero
  6426. (< t0 1000)) "0" "")
  6427. (if (< t0 100) "0" "")
  6428. (if (< t0 10) "0" "")
  6429. (int-to-string t0))))
  6430. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6431. (defvar org-agenda-before-sorting-filter-function nil
  6432. "Function to be applied to agenda items prior to sorting.
  6433. Prior to sorting also means just before they are inserted into the agenda.
  6434. To aid sorting, you may revisit the original entries and add more text
  6435. properties which will later be used by the sorting functions.
  6436. The function should take a string argument, an agenda line.
  6437. It has access to the text properties in that line, which contain among
  6438. other things, the property `org-hd-marker' that points to the entry
  6439. where the line comes from. Note that not all lines going into the agenda
  6440. have this property, only most.
  6441. The function should return the modified string. It is probably best
  6442. to ONLY change text properties.
  6443. You can also use this function as a filter, by returning nil for lines
  6444. you don't want to have in the agenda at all. For this application, you
  6445. could bind the variable in the options section of a custom command.")
  6446. (defun org-agenda-finalize-entries (list &optional type)
  6447. "Sort, limit and concatenate the LIST of agenda items.
  6448. The optional argument TYPE tells the agenda type."
  6449. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6450. (cdr (assoc type org-agenda-max-effort)))
  6451. (t org-agenda-max-effort)))
  6452. (max-todo (cond ((listp org-agenda-max-todos)
  6453. (cdr (assoc type org-agenda-max-todos)))
  6454. (t org-agenda-max-todos)))
  6455. (max-tags (cond ((listp org-agenda-max-tags)
  6456. (cdr (assoc type org-agenda-max-tags)))
  6457. (t org-agenda-max-tags)))
  6458. (max-entries (cond ((listp org-agenda-max-entries)
  6459. (cdr (assoc type org-agenda-max-entries)))
  6460. (t org-agenda-max-entries))))
  6461. (when org-agenda-before-sorting-filter-function
  6462. (setq list
  6463. (delq nil
  6464. (mapcar
  6465. org-agenda-before-sorting-filter-function list))))
  6466. (setq list (mapcar 'org-agenda-highlight-todo list)
  6467. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6468. (when max-effort
  6469. (setq list (org-agenda-limit-entries
  6470. list 'effort-minutes max-effort
  6471. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6472. 32767 -1))))))
  6473. (when max-todo
  6474. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6475. (when max-tags
  6476. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6477. (when max-entries
  6478. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6479. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6480. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6481. (mapconcat 'identity list "\n")))
  6482. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6483. "Limit the number of agenda entries."
  6484. (let ((include (and limit (< limit 0))))
  6485. (if limit
  6486. (let ((fun (or fn (lambda (p) (when p 1))))
  6487. (lim 0))
  6488. (delq nil
  6489. (mapcar
  6490. (lambda (e)
  6491. (let ((pval (funcall
  6492. fun (get-text-property (1- (length e))
  6493. prop e))))
  6494. (when pval (setq lim (+ lim pval)))
  6495. (cond ((and pval (<= lim (abs limit))) e)
  6496. ((and include (not pval)) e))))
  6497. list)))
  6498. list)))
  6499. (defun org-agenda-limit-interactively (remove)
  6500. "In agenda, interactively limit entries to various maximums."
  6501. (interactive "P")
  6502. (if remove
  6503. (progn (setq org-agenda-max-entries nil
  6504. org-agenda-max-todos nil
  6505. org-agenda-max-tags nil
  6506. org-agenda-max-effort nil)
  6507. (org-agenda-redo))
  6508. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6509. (msg (cond ((= max ?E) "How many minutes? ")
  6510. ((= max ?e) "How many entries? ")
  6511. ((= max ?t) "How many TODO entries? ")
  6512. ((= max ?T) "How many tagged entries? ")
  6513. (t (user-error "Wrong input"))))
  6514. (num (string-to-number (read-from-minibuffer msg))))
  6515. (cond ((equal max ?e)
  6516. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6517. ((equal max ?t)
  6518. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6519. ((equal max ?T)
  6520. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6521. ((equal max ?E)
  6522. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6523. (org-agenda-fit-window-to-buffer))
  6524. (defun org-agenda-highlight-todo (x)
  6525. (let ((org-done-keywords org-done-keywords-for-agenda)
  6526. (case-fold-search nil)
  6527. re)
  6528. (if (eq x 'line)
  6529. (save-excursion
  6530. (beginning-of-line 1)
  6531. (setq re (org-get-at-bol 'org-todo-regexp))
  6532. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6533. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6534. (add-text-properties (match-beginning 0) (match-end 1)
  6535. (list 'face (org-get-todo-face 1)))
  6536. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6537. (delete-region (match-beginning 1) (1- (match-end 0)))
  6538. (goto-char (match-beginning 1))
  6539. (insert (format org-agenda-todo-keyword-format s)))))
  6540. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6541. (setq re (get-text-property 0 'org-todo-regexp x))
  6542. (when (and re
  6543. ;; Test `pl' because if there's no heading content,
  6544. ;; there's no point matching to highlight. Note
  6545. ;; that if we didn't test `pl' first, and there
  6546. ;; happened to be no keyword from `org-todo-regexp'
  6547. ;; on this heading line, then the `equal' comparison
  6548. ;; afterwards would spuriously succeed in the case
  6549. ;; where `pl' is nil -- causing an args-out-of-range
  6550. ;; error when we try to add text properties to text
  6551. ;; that isn't there.
  6552. pl
  6553. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6554. x pl) pl))
  6555. (add-text-properties
  6556. (or (match-end 1) (match-end 0)) (match-end 0)
  6557. (list 'face (org-get-todo-face (match-string 2 x)))
  6558. x)
  6559. (when (match-end 1)
  6560. (setq x
  6561. (concat
  6562. (substring x 0 (match-end 1))
  6563. (format org-agenda-todo-keyword-format
  6564. (match-string 2 x))
  6565. ;; Remove `display' property as the icon could leak
  6566. ;; on the white space.
  6567. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6568. 'display))
  6569. (substring x (match-end 3)))))))
  6570. x)))
  6571. (defsubst org-cmp-values (a b property)
  6572. "Compare the numeric value of text PROPERTY for string A and B."
  6573. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6574. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6575. (cond ((> pa pb) +1)
  6576. ((< pa pb) -1))))
  6577. (defsubst org-cmp-effort (a b)
  6578. "Compare the effort values of string A and B."
  6579. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6580. ;; `effort-minutes' property is not directly accessible from
  6581. ;; the strings, but is stored as a property in `txt'.
  6582. (ea (or (get-text-property
  6583. 0 'effort-minutes (get-text-property 0 'txt a))
  6584. def))
  6585. (eb (or (get-text-property
  6586. 0 'effort-minutes (get-text-property 0 'txt b))
  6587. def)))
  6588. (cond ((> ea eb) +1)
  6589. ((< ea eb) -1))))
  6590. (defsubst org-cmp-category (a b)
  6591. "Compare the string values of categories of strings A and B."
  6592. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6593. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6594. (cond ((string-lessp ca cb) -1)
  6595. ((string-lessp cb ca) +1))))
  6596. (defsubst org-cmp-todo-state (a b)
  6597. "Compare the todo states of strings A and B."
  6598. (let* ((ma (or (get-text-property 1 'org-marker a)
  6599. (get-text-property 1 'org-hd-marker a)))
  6600. (mb (or (get-text-property 1 'org-marker b)
  6601. (get-text-property 1 'org-hd-marker b)))
  6602. (fa (and ma (marker-buffer ma)))
  6603. (fb (and mb (marker-buffer mb)))
  6604. (todo-kwds
  6605. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6606. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6607. (ta (or (get-text-property 1 'todo-state a) ""))
  6608. (tb (or (get-text-property 1 'todo-state b) ""))
  6609. (la (- (length (member ta todo-kwds))))
  6610. (lb (- (length (member tb todo-kwds))))
  6611. (donepa (member ta org-done-keywords-for-agenda))
  6612. (donepb (member tb org-done-keywords-for-agenda)))
  6613. (cond ((and donepa (not donepb)) -1)
  6614. ((and (not donepa) donepb) +1)
  6615. ((< la lb) -1)
  6616. ((< lb la) +1))))
  6617. (defsubst org-cmp-alpha (a b)
  6618. "Compare the headlines, alphabetically."
  6619. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6620. (plb (text-property-any 0 (length b) 'org-heading t b))
  6621. (ta (and pla (substring a pla)))
  6622. (tb (and plb (substring b plb)))
  6623. (case-fold-search nil))
  6624. (when pla
  6625. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6626. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6627. (setq ta (substring ta (match-end 0))))
  6628. (setq ta (downcase ta)))
  6629. (when plb
  6630. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6631. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6632. (setq tb (substring tb (match-end 0))))
  6633. (setq tb (downcase tb)))
  6634. (cond ((not (or ta tb)) nil)
  6635. ((not ta) +1)
  6636. ((not tb) -1)
  6637. ((string-lessp ta tb) -1)
  6638. ((string-lessp tb ta) +1))))
  6639. (defsubst org-cmp-tag (a b)
  6640. "Compare the string values of the first tags of A and B."
  6641. (let ((ta (car (last (get-text-property 1 'tags a))))
  6642. (tb (car (last (get-text-property 1 'tags b)))))
  6643. (cond ((not (or ta tb)) nil)
  6644. ((not ta) +1)
  6645. ((not tb) -1)
  6646. ((string-lessp ta tb) -1)
  6647. ((string-lessp tb ta) +1))))
  6648. (defsubst org-cmp-time (a b)
  6649. "Compare the time-of-day values of strings A and B."
  6650. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6651. (ta (or (get-text-property 1 'time-of-day a) def))
  6652. (tb (or (get-text-property 1 'time-of-day b) def)))
  6653. (cond ((< ta tb) -1)
  6654. ((< tb ta) +1))))
  6655. (defsubst org-cmp-ts (a b type)
  6656. "Compare the timestamps values of entries A and B.
  6657. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6658. \"timestamp_ia\", compare within each of these type. When TYPE
  6659. is the empty string, compare all timestamps without respect of
  6660. their type."
  6661. (let* ((def (and (not org-sort-agenda-notime-is-late) -1))
  6662. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6663. (get-text-property 1 'ts-date a))
  6664. def))
  6665. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6666. (get-text-property 1 'ts-date b))
  6667. def)))
  6668. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6669. ((if tb (and ta (< tb ta)) ta) +1))))
  6670. (defsubst org-cmp-habit-p (a b)
  6671. "Compare the todo states of strings A and B."
  6672. (let ((ha (get-text-property 1 'org-habit-p a))
  6673. (hb (get-text-property 1 'org-habit-p b)))
  6674. (cond ((and ha (not hb)) -1)
  6675. ((and (not ha) hb) +1))))
  6676. (defun org-entries-lessp (a b)
  6677. "Predicate for sorting agenda entries."
  6678. ;; The following variables will be used when the form is evaluated.
  6679. ;; So even though the compiler complains, keep them.
  6680. (let* ((ss org-agenda-sorting-strategy-selected)
  6681. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6682. (org-cmp-ts a b "")))
  6683. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6684. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6685. (org-cmp-ts a b "scheduled")))
  6686. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6687. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6688. (org-cmp-ts a b "deadline")))
  6689. (deadline-down (if deadline-up (- deadline-up) nil))
  6690. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6691. (org-cmp-ts a b "timestamp_ia")))
  6692. (tsia-down (if tsia-up (- tsia-up) nil))
  6693. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6694. (org-cmp-ts a b "timestamp")))
  6695. (ts-down (if ts-up (- ts-up) nil))
  6696. (time-up (and (org-em 'time-up 'time-down ss)
  6697. (org-cmp-time a b)))
  6698. (time-down (if time-up (- time-up) nil))
  6699. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6700. (org-cmp-values a b 'org-stats)))
  6701. (stats-down (if stats-up (- stats-up) nil))
  6702. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6703. (org-cmp-values a b 'priority)))
  6704. (priority-down (if priority-up (- priority-up) nil))
  6705. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6706. (org-cmp-effort a b)))
  6707. (effort-down (if effort-up (- effort-up) nil))
  6708. (category-up (and (or (org-em 'category-up 'category-down ss)
  6709. (memq 'category-keep ss))
  6710. (org-cmp-category a b)))
  6711. (category-down (if category-up (- category-up) nil))
  6712. (category-keep (if category-up +1 nil))
  6713. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6714. (org-cmp-tag a b)))
  6715. (tag-down (if tag-up (- tag-up) nil))
  6716. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6717. (org-cmp-todo-state a b)))
  6718. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6719. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6720. (org-cmp-habit-p a b)))
  6721. (habit-down (if habit-up (- habit-up) nil))
  6722. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6723. (org-cmp-alpha a b)))
  6724. (alpha-down (if alpha-up (- alpha-up) nil))
  6725. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6726. user-defined-up user-defined-down)
  6727. (when (and need-user-cmp org-agenda-cmp-user-defined
  6728. (functionp org-agenda-cmp-user-defined))
  6729. (setq user-defined-up
  6730. (funcall org-agenda-cmp-user-defined a b)
  6731. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6732. (cdr (assoc
  6733. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6734. '((-1 . t) (1 . nil) (nil . nil))))))
  6735. ;;; Agenda restriction lock
  6736. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6737. "Overlay to mark the headline to which agenda commands are restricted.")
  6738. (overlay-put org-agenda-restriction-lock-overlay
  6739. 'face 'org-agenda-restriction-lock)
  6740. (overlay-put org-agenda-restriction-lock-overlay
  6741. 'help-echo "Agendas are currently limited to this subtree.")
  6742. (delete-overlay org-agenda-restriction-lock-overlay)
  6743. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6744. "Set the restriction lock to the agenda item at point from within the agenda.
  6745. When called with a `\\[universal-argument]' prefix, restrict to
  6746. the file which contains the item.
  6747. Argument ARG is the prefix argument."
  6748. (interactive "P")
  6749. (unless (derived-mode-p 'org-agenda-mode)
  6750. (user-error "Not in an Org agenda buffer"))
  6751. (let* ((marker (or (org-get-at-bol 'org-marker)
  6752. (org-agenda-error)))
  6753. (buffer (marker-buffer marker))
  6754. (pos (marker-position marker)))
  6755. (with-current-buffer buffer
  6756. (goto-char pos)
  6757. (org-agenda-set-restriction-lock arg))))
  6758. ;;;###autoload
  6759. (defun org-agenda-set-restriction-lock (&optional type)
  6760. "Set restriction lock for agenda to current subtree or file.
  6761. When in a restricted subtree, remove it.
  6762. The restriction will span over the entire file if TYPE is `file',
  6763. or if type is '(4), or if the cursor is before the first headline
  6764. in the file. Otherwise, only apply the restriction to the current
  6765. subtree."
  6766. (interactive "P")
  6767. (if (and org-agenda-overriding-restriction
  6768. (member org-agenda-restriction-lock-overlay
  6769. (overlays-at (point)))
  6770. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6771. (point)))
  6772. (org-agenda-remove-restriction-lock 'noupdate)
  6773. (org-agenda-remove-restriction-lock 'noupdate)
  6774. (and (equal type '(4)) (setq type 'file))
  6775. (setq type (cond
  6776. (type type)
  6777. ((org-at-heading-p) 'subtree)
  6778. ((condition-case nil (org-back-to-heading t) (error nil))
  6779. 'subtree)
  6780. (t 'file)))
  6781. (if (eq type 'subtree)
  6782. (progn
  6783. (setq org-agenda-restrict (current-buffer))
  6784. (setq org-agenda-overriding-restriction 'subtree)
  6785. (put 'org-agenda-files 'org-restrict
  6786. (list (buffer-file-name (buffer-base-buffer))))
  6787. (org-back-to-heading t)
  6788. (move-overlay org-agenda-restriction-lock-overlay
  6789. (point)
  6790. (if org-agenda-restriction-lock-highlight-subtree
  6791. (save-excursion (org-end-of-subtree t t) (point))
  6792. (point-at-eol)))
  6793. (move-marker org-agenda-restrict-begin (point))
  6794. (move-marker org-agenda-restrict-end
  6795. (save-excursion (org-end-of-subtree t t)))
  6796. (message "Locking agenda restriction to subtree"))
  6797. (put 'org-agenda-files 'org-restrict
  6798. (list (buffer-file-name (buffer-base-buffer))))
  6799. (setq org-agenda-restrict nil)
  6800. (setq org-agenda-overriding-restriction 'file)
  6801. (move-marker org-agenda-restrict-begin nil)
  6802. (move-marker org-agenda-restrict-end nil)
  6803. (message "Locking agenda restriction to file"))
  6804. (setq current-prefix-arg nil))
  6805. (org-agenda-maybe-redo))
  6806. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6807. "Remove agenda restriction lock."
  6808. (interactive "P")
  6809. (if (not org-agenda-restrict)
  6810. (message "No agenda restriction to remove.")
  6811. (delete-overlay org-agenda-restriction-lock-overlay)
  6812. (delete-overlay org-speedbar-restriction-lock-overlay)
  6813. (setq org-agenda-overriding-restriction nil)
  6814. (setq org-agenda-restrict nil)
  6815. (put 'org-agenda-files 'org-restrict nil)
  6816. (move-marker org-agenda-restrict-begin nil)
  6817. (move-marker org-agenda-restrict-end nil)
  6818. (setq current-prefix-arg nil)
  6819. (message "Agenda restriction lock removed")
  6820. (or noupdate (org-agenda-maybe-redo))))
  6821. (defun org-agenda-maybe-redo ()
  6822. "If there is any window showing the agenda view, update it."
  6823. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6824. org-agenda-buffer-name)
  6825. t))
  6826. (w0 (selected-window)))
  6827. (when w
  6828. (select-window w)
  6829. (org-agenda-redo)
  6830. (select-window w0)
  6831. (if org-agenda-overriding-restriction
  6832. (message "Agenda view shifted to new %s restriction"
  6833. org-agenda-overriding-restriction)
  6834. (message "Agenda restriction lock removed")))))
  6835. ;;; Agenda commands
  6836. (defun org-agenda-check-type (error &rest types)
  6837. "Check if agenda buffer or component is of allowed type.
  6838. If ERROR is non-nil, throw an error, otherwise just return nil.
  6839. Allowed types are `agenda' `todo' `tags' `search'."
  6840. (cond ((not org-agenda-type)
  6841. (error "No Org agenda currently displayed"))
  6842. ((memq org-agenda-type types) t)
  6843. (error
  6844. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6845. (t nil)))
  6846. (defun org-agenda-Quit ()
  6847. "Exit the agenda, killing the agenda buffer.
  6848. Like `org-agenda-quit', but kill the buffer even when
  6849. `org-agenda-sticky' is non-nil."
  6850. (interactive)
  6851. (org-agenda--quit))
  6852. (defun org-agenda-quit ()
  6853. "Exit the agenda.
  6854. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6855. instead of killing it.
  6856. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6857. the pre-agenda window configuration.
  6858. When column view is active, exit column view instead of the
  6859. agenda."
  6860. (interactive)
  6861. (org-agenda--quit org-agenda-sticky))
  6862. (defun org-agenda--quit (&optional bury)
  6863. (if org-agenda-columns-active
  6864. (org-columns-quit)
  6865. (let ((wconf org-agenda-pre-window-conf)
  6866. (buf (current-buffer))
  6867. (org-agenda-last-indirect-window
  6868. (and (eq org-indirect-buffer-display 'other-window)
  6869. org-agenda-last-indirect-buffer
  6870. (get-buffer-window org-agenda-last-indirect-buffer))))
  6871. (cond
  6872. ((eq org-agenda-window-setup 'other-frame)
  6873. (delete-frame))
  6874. ((and org-agenda-restore-windows-after-quit
  6875. wconf)
  6876. ;; Maybe restore the pre-agenda window configuration. Reset
  6877. ;; `org-agenda-pre-window-conf' before running
  6878. ;; `set-window-configuration', which loses the current buffer.
  6879. (setq org-agenda-pre-window-conf nil)
  6880. (set-window-configuration wconf))
  6881. (t
  6882. (when org-agenda-last-indirect-window
  6883. (delete-window org-agenda-last-indirect-window))
  6884. (and (not (eq org-agenda-window-setup 'current-window))
  6885. (not (one-window-p))
  6886. (delete-window))))
  6887. (if bury
  6888. ;; Set the agenda buffer as the current buffer instead of
  6889. ;; passing it as an argument to `bury-buffer' so that
  6890. ;; `bury-buffer' removes it from the window.
  6891. (with-current-buffer buf
  6892. (bury-buffer))
  6893. (kill-buffer buf)
  6894. (setq org-agenda-archives-mode nil
  6895. org-agenda-buffer nil)))))
  6896. (defun org-agenda-exit ()
  6897. "Exit the agenda, killing Org buffers loaded by the agenda.
  6898. Like `org-agenda-Quit', but kill any buffers that were created by
  6899. the agenda. Org buffers visited directly by the user will not be
  6900. touched. Also, exit the agenda even if it is in column view."
  6901. (interactive)
  6902. (when org-agenda-columns-active
  6903. (org-columns-quit))
  6904. (org-release-buffers org-agenda-new-buffers)
  6905. (setq org-agenda-new-buffers nil)
  6906. (org-agenda-Quit))
  6907. (defun org-agenda-kill-all-agenda-buffers ()
  6908. "Kill all buffers in `org-agenda-mode'.
  6909. This is used when toggling sticky agendas."
  6910. (interactive)
  6911. (let (blist)
  6912. (dolist (buf (buffer-list))
  6913. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6914. (push buf blist)))
  6915. (mapc 'kill-buffer blist)))
  6916. (defun org-agenda-execute (arg)
  6917. "Execute another agenda command, keeping same window.
  6918. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6919. in the agenda."
  6920. (interactive "P")
  6921. (let ((org-agenda-window-setup 'current-window))
  6922. (org-agenda arg)))
  6923. (defun org-agenda-redo (&optional all)
  6924. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6925. (interactive "P")
  6926. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6927. (cpa (unless (eq all t) current-prefix-arg))
  6928. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6929. (org-agenda-sticky nil)
  6930. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6931. org-agenda-buffer-name))
  6932. (org-agenda-keep-modes t)
  6933. (tag-filter org-agenda-tag-filter)
  6934. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6935. (top-hl-filter org-agenda-top-headline-filter)
  6936. (cat-filter org-agenda-category-filter)
  6937. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6938. (re-filter org-agenda-regexp-filter)
  6939. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6940. (effort-filter org-agenda-effort-filter)
  6941. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6942. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6943. (cols org-agenda-columns-active)
  6944. (line (org-current-line))
  6945. (window-line (- line (org-current-line (window-start))))
  6946. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6947. (redo-cmd (get-text-property p 'org-redo-cmd))
  6948. (last-args (get-text-property p 'org-last-args))
  6949. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6950. (org-agenda-overriding-cmd-arguments
  6951. (unless (eq all t)
  6952. (cond ((listp last-args)
  6953. (cons (or cpa (car last-args)) (cdr last-args)))
  6954. ((stringp last-args)
  6955. last-args))))
  6956. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6957. (put 'org-agenda-tag-filter :preset-filter nil)
  6958. (put 'org-agenda-category-filter :preset-filter nil)
  6959. (put 'org-agenda-regexp-filter :preset-filter nil)
  6960. (put 'org-agenda-effort-filter :preset-filter nil)
  6961. (and cols (org-columns-quit))
  6962. (message "Rebuilding agenda buffer...")
  6963. (if series-redo-cmd
  6964. (eval series-redo-cmd)
  6965. (org-let lprops redo-cmd))
  6966. (setq org-agenda-undo-list nil
  6967. org-agenda-pending-undo-list nil
  6968. org-agenda-tag-filter tag-filter
  6969. org-agenda-category-filter cat-filter
  6970. org-agenda-regexp-filter re-filter
  6971. org-agenda-effort-filter effort-filter
  6972. org-agenda-top-headline-filter top-hl-filter)
  6973. (message "Rebuilding agenda buffer...done")
  6974. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6975. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6976. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6977. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6978. (let ((tag (or tag-filter tag-preset))
  6979. (cat (or cat-filter cat-preset))
  6980. (effort (or effort-filter effort-preset))
  6981. (re (or re-filter re-preset)))
  6982. (when tag (org-agenda-filter-apply tag 'tag t))
  6983. (when cat (org-agenda-filter-apply cat 'category))
  6984. (when effort (org-agenda-filter-apply effort 'effort))
  6985. (when re (org-agenda-filter-apply re 'regexp)))
  6986. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6987. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6988. (org-goto-line line)
  6989. (recenter window-line)))
  6990. (defun org-agenda-redo-all (&optional exhaustive)
  6991. "Rebuild all agenda views in the current buffer.
  6992. With a prefix argument, do so in all agenda buffers."
  6993. (interactive "P")
  6994. (if exhaustive
  6995. (dolist (buffer (buffer-list))
  6996. (with-current-buffer buffer
  6997. (when (derived-mode-p 'org-agenda-mode)
  6998. (org-agenda-redo t))))
  6999. (org-agenda-redo t)))
  7000. (defvar org-global-tags-completion-table nil)
  7001. (defvar org-agenda-filter-form nil)
  7002. (defvar org-agenda-filtered-by-category nil)
  7003. (defsubst org-agenda-get-category ()
  7004. "Return the category of the agenda line."
  7005. (org-get-at-bol 'org-category))
  7006. (defun org-agenda-filter-by-category (strip)
  7007. "Filter lines in the agenda buffer that have a specific category.
  7008. The category is that of the current line.
  7009. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7010. When there is already a category filter in place, this command removes the filter."
  7011. (interactive "P")
  7012. (if (and org-agenda-filtered-by-category
  7013. org-agenda-category-filter)
  7014. (org-agenda-filter-show-all-cat)
  7015. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7016. (cond
  7017. ((and cat strip)
  7018. (org-agenda-filter-apply
  7019. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7020. (cat
  7021. (org-agenda-filter-apply
  7022. (setq org-agenda-category-filter
  7023. (list (concat "+" cat))) 'category))
  7024. (t (error "No category at point"))))))
  7025. (defun org-find-top-headline (&optional pos)
  7026. "Find the topmost parent headline and return it.
  7027. POS when non-nil is the marker or buffer position to start the
  7028. search from."
  7029. (save-excursion
  7030. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7031. (when pos (goto-char pos))
  7032. ;; Skip up to the topmost parent.
  7033. (while (org-up-heading-safe))
  7034. (ignore-errors (nth 4 (org-heading-components))))))
  7035. (defvar org-agenda-filtered-by-top-headline nil)
  7036. (defun org-agenda-filter-by-top-headline (strip)
  7037. "Keep only those lines that are descendants from the same top headline.
  7038. The top headline is that of the current line. With prefix arg STRIP, hide
  7039. all lines of the category at point."
  7040. (interactive "P")
  7041. (if org-agenda-filtered-by-top-headline
  7042. (progn
  7043. (setq org-agenda-filtered-by-top-headline nil
  7044. org-agenda-top-headline-filter nil)
  7045. (org-agenda-filter-show-all-top-filter))
  7046. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7047. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7048. (error "No top-level headline at point")))))
  7049. (defvar org-agenda-regexp-filter nil)
  7050. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7051. "Filter agenda entries by a regular expressions.
  7052. You will be prompted for the regular expression, and the agenda
  7053. view will only show entries that are matched by that expression.
  7054. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7055. When there is already a regexp filter active, this command removed the
  7056. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7057. an already existing regexp filter."
  7058. (interactive "P")
  7059. (let* ((strip (equal strip-or-accumulate '(4)))
  7060. (accumulate (equal strip-or-accumulate '(16))))
  7061. (cond
  7062. ((and org-agenda-regexp-filter (not accumulate))
  7063. (org-agenda-filter-show-all-re)
  7064. (message "Regexp filter removed"))
  7065. (t (let ((flt (concat (if strip "-" "+")
  7066. (read-from-minibuffer
  7067. (if strip
  7068. "Hide entries matching regexp: "
  7069. "Narrow to entries matching regexp: ")))))
  7070. (push flt org-agenda-regexp-filter)
  7071. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7072. (defvar org-agenda-effort-filter nil)
  7073. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7074. "Filter agenda entries by effort.
  7075. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7076. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7077. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7078. This last option is in practice not very useful, but it is available for
  7079. consistency with the other filter commands."
  7080. (interactive "P")
  7081. (let* ((efforts (split-string
  7082. (or (cdr (assoc (concat org-effort-property "_ALL")
  7083. org-global-properties))
  7084. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7085. ;; XXX: the following handles only up to 10 different
  7086. ;; effort values.
  7087. (allowed-keys (if (null efforts) nil
  7088. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7089. (number-sequence 1 (length efforts)))))
  7090. (keep (equal strip-or-accumulate '(16)))
  7091. (negative (equal strip-or-accumulate '(4)))
  7092. (current org-agenda-effort-filter)
  7093. (op nil))
  7094. (while (not (memq op '(?< ?> ?= ?_)))
  7095. (setq op (read-char-exclusive
  7096. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7097. ;; Select appropriate duration. Ignore non-digit characters.
  7098. (if (eq op ?_)
  7099. (progn
  7100. (org-agenda-filter-show-all-effort)
  7101. (message "Effort filter removed"))
  7102. (let ((prompt
  7103. (apply #'format
  7104. (concat "Effort %c "
  7105. (mapconcat (lambda (s) (concat "[%d]" s))
  7106. efforts
  7107. " "))
  7108. op allowed-keys))
  7109. (eff -1))
  7110. (while (not (memq eff allowed-keys))
  7111. (message prompt)
  7112. (setq eff (- (read-char-exclusive) 48)))
  7113. (org-agenda-filter-show-all-effort)
  7114. (setq org-agenda-effort-filter
  7115. (append
  7116. (list (concat (if negative "-" "+")
  7117. (char-to-string op)
  7118. ;; Numbering is 1 2 3 ... 9 0, but we want
  7119. ;; 0 1 2 ... 8 9.
  7120. (nth (mod (1- eff) 10) efforts)))
  7121. (if keep current nil)))
  7122. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7123. (defun org-agenda-filter (&optional strip-or-accumulate)
  7124. "Prompt for a general filter string and apply it to the agenda.
  7125. The string may contain filter elements like
  7126. +category
  7127. +tag
  7128. +<effort > and = are also allowed as effort operators
  7129. +/regexp/
  7130. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7131. `+' is optional if it is not required to separate two string parts.
  7132. Multiple filter elements can be concatenated without spaces, for example
  7133. +work-John<0:10-/plot/
  7134. selects entries with category `work' and effort estimates below 10 minutes,
  7135. and deselects entries with tag `John' or matching the regexp `plot'.
  7136. During entry of the filter, completion for tags, categories and effort
  7137. values is offered. Since the syntax for categories and tags is identical
  7138. there should be no overlap between categories and tags. If there is, tags
  7139. get priority.
  7140. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7141. entire filter, which can be useful in connection with the prompt history.
  7142. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7143. existing ones. A shortcut for this is to add an additional `+' at the
  7144. beginning of the string, like `+-John'.
  7145. With a triple prefix argument, execute the computed filtering defined in
  7146. the variable `org-agenda-auto-exclude-function'."
  7147. (interactive "P")
  7148. (if (equal strip-or-accumulate '(64))
  7149. ;; Execute the auto-exclude action
  7150. (if (not org-agenda-auto-exclude-function)
  7151. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7152. (org-agenda-filter-show-all-tag)
  7153. (setq org-agenda-tag-filter nil)
  7154. (dolist (tag (org-agenda-get-represented-tags))
  7155. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7156. (when modifier
  7157. (push modifier org-agenda-tag-filter))))
  7158. (unless (null org-agenda-tag-filter)
  7159. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7160. ;; Prompt for a filter and act
  7161. (let* ((tag-list (org-agenda-get-represented-tags))
  7162. (category-list (org-agenda-get-represented-categories))
  7163. (negate (equal strip-or-accumulate '(4)))
  7164. (f-string (completing-read
  7165. (concat
  7166. (if negate "Negative filter" "Filter")
  7167. " [+cat-tag<0:10-/regexp/]: ")
  7168. 'org-agenda-filter-completion-function))
  7169. (keep (or (if (string-match "^\\+[+-]" f-string)
  7170. (progn (setq f-string (substring f-string 1)) t))
  7171. (equal strip-or-accumulate '(16))))
  7172. (fc (if keep org-agenda-category-filter))
  7173. (ft (if keep org-agenda-tag-filter))
  7174. (fe (if keep org-agenda-effort-filter))
  7175. (fr (if keep org-agenda-regexp-filter))
  7176. pm s)
  7177. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7178. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7179. (when negate
  7180. (setq pm (if (equal pm "+") "-" "+")))
  7181. (cond
  7182. ((match-beginning 3)
  7183. ;; category or tag
  7184. (setq s (match-string 3 f-string))
  7185. (cond
  7186. ((member s tag-list)
  7187. (add-to-list 'ft (concat pm s) 'append 'equal))
  7188. ((member s category-list)
  7189. (add-to-list 'fc (concat pm s) 'append 'equal))
  7190. (t (message
  7191. "`%s%s' filter ignored because tag/category is not represented"
  7192. pm s))))
  7193. ((match-beginning 4)
  7194. ;; effort
  7195. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7196. ((match-beginning 5)
  7197. ;; regexp
  7198. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7199. (setq f-string (substring f-string (match-end 0))))
  7200. (org-agenda-filter-remove-all)
  7201. (and fc (org-agenda-filter-apply
  7202. (setq org-agenda-category-filter fc) 'category))
  7203. (and ft (org-agenda-filter-apply
  7204. (setq org-agenda-tag-filter ft) 'tag))
  7205. (and fe (org-agenda-filter-apply
  7206. (setq org-agenda-effort-filter fe) 'effort))
  7207. (and fr (org-agenda-filter-apply
  7208. (setq org-agenda-regexp-filter fr) 'regexp)))))
  7209. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7210. "Complete a complex filter string.
  7211. FLAG specifies the type of completion operation to perform. This
  7212. function is passed as a collection function to `completing-read',
  7213. which see."
  7214. (let ((completion-ignore-case t) ;tags are case-sensitive
  7215. (confirm (lambda (x) (stringp x)))
  7216. (prefix "")
  7217. (operator "")
  7218. table)
  7219. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7220. (setq prefix (match-string 1 string)
  7221. operator (match-string 2 string)
  7222. string (match-string 3 string)))
  7223. (cond
  7224. ((member operator '("+" "-" "" nil))
  7225. (setq table (append (org-agenda-get-represented-categories)
  7226. (org-agenda-get-represented-tags))))
  7227. ((member operator '("<" ">" "="))
  7228. (setq table (split-string
  7229. (or (cdr (assoc (concat org-effort-property "_ALL")
  7230. org-global-properties))
  7231. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7232. " +")))
  7233. (t (setq table nil)))
  7234. (pcase flag
  7235. (`t (all-completions string table confirm))
  7236. (`lambda (assoc string table)) ;exact match?
  7237. (`nil
  7238. (pcase (try-completion string table confirm)
  7239. ((and completion (pred stringp))
  7240. (concat prefix completion))
  7241. (completion completion)))
  7242. (_ nil))))
  7243. (defun org-agenda-filter-remove-all ()
  7244. "Remove all filters from the current agenda buffer."
  7245. (interactive)
  7246. (when org-agenda-tag-filter
  7247. (org-agenda-filter-show-all-tag))
  7248. (when org-agenda-category-filter
  7249. (org-agenda-filter-show-all-cat))
  7250. (when org-agenda-regexp-filter
  7251. (org-agenda-filter-show-all-re))
  7252. (when org-agenda-top-headline-filter
  7253. (org-agenda-filter-show-all-top-filter))
  7254. (when org-agenda-effort-filter
  7255. (org-agenda-filter-show-all-effort))
  7256. (org-agenda-finalize))
  7257. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7258. "Keep only those lines in the agenda buffer that have a specific tag.
  7259. The tag is selected with its fast selection letter, as configured.
  7260. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7261. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7262. instead of replacing it.
  7263. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7264. i.e. don't
  7265. filter on all its group members.
  7266. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7267. should be used to exclude the search - the interactive user can
  7268. also press `-' or `+' to switch between filtering and excluding."
  7269. (interactive "P")
  7270. (let* ((alist org-tag-alist-for-agenda)
  7271. (seen-chars nil)
  7272. (tag-chars (mapconcat
  7273. (lambda (x) (if (and (not (symbolp (car x)))
  7274. (cdr x)
  7275. (not (member (cdr x) seen-chars)))
  7276. (progn
  7277. (push (cdr x) seen-chars)
  7278. (char-to-string (cdr x)))
  7279. ""))
  7280. org-tag-alist-for-agenda ""))
  7281. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7282. (string-to-list tag-chars)))
  7283. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7284. (accumulate (equal strip-or-accumulate '(16)))
  7285. (expand (not (equal strip-or-accumulate '(64))))
  7286. (inhibit-read-only t)
  7287. (current org-agenda-tag-filter)
  7288. a n tag)
  7289. (unless char
  7290. (while (not (memq char valid-char-list))
  7291. (org-unlogged-message
  7292. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7293. (if exclude "Exclude[+]" "Filter[-]")
  7294. (if expand "" " (no grouptag expand)")
  7295. tag-chars
  7296. (if org-agenda-auto-exclude-function "[RET] " ""))
  7297. (setq char (read-char-exclusive))
  7298. ;; Excluding or filtering down
  7299. (cond ((eq char ?-) (setq exclude t))
  7300. ((eq char ?+) (setq exclude nil)))))
  7301. (when (eq char ?\t)
  7302. (unless (local-variable-p 'org-global-tags-completion-table)
  7303. (setq-local org-global-tags-completion-table
  7304. (org-global-tags-completion-table)))
  7305. (let ((completion-ignore-case t))
  7306. (setq tag (completing-read
  7307. "Tag: " org-global-tags-completion-table nil t))))
  7308. (cond
  7309. ((eq char ?\r)
  7310. (org-agenda-filter-show-all-tag)
  7311. (when org-agenda-auto-exclude-function
  7312. (setq org-agenda-tag-filter nil)
  7313. (dolist (tag (org-agenda-get-represented-tags))
  7314. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7315. (when modifier
  7316. (push modifier org-agenda-tag-filter))))
  7317. (unless (null org-agenda-tag-filter)
  7318. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7319. ((eq char ?\\)
  7320. (org-agenda-filter-show-all-tag)
  7321. (when (get 'org-agenda-tag-filter :preset-filter)
  7322. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7323. ((eq char ?.)
  7324. (setq org-agenda-tag-filter
  7325. (mapcar (lambda(tag) (concat "+" tag))
  7326. (org-get-at-bol 'tags)))
  7327. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7328. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7329. ((or (eq char ?\s)
  7330. (setq a (rassoc char alist))
  7331. (and tag (setq a (cons tag nil))))
  7332. (org-agenda-filter-show-all-tag)
  7333. (setq tag (car a))
  7334. (setq org-agenda-tag-filter
  7335. (cons (concat (if exclude "-" "+") tag)
  7336. (if accumulate current nil)))
  7337. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7338. (t (error "Invalid tag selection character %c" char)))))
  7339. (defun org-agenda-get-represented-categories ()
  7340. "Return a list of all categories used in this agenda buffer."
  7341. (or org-agenda-represented-categories
  7342. (when (derived-mode-p 'org-agenda-mode)
  7343. (let ((pos (point-min)) categories)
  7344. (while (and (< pos (point-max))
  7345. (setq pos (next-single-property-change
  7346. pos 'org-category nil (point-max))))
  7347. (push (get-text-property pos 'org-category) categories))
  7348. (setq org-agenda-represented-categories
  7349. (nreverse (org-uniquify (delq nil categories))))))))
  7350. (defun org-agenda-get-represented-tags ()
  7351. "Return a list of all tags used in this agenda buffer.
  7352. These will be lower-case, for filtering."
  7353. (or org-agenda-represented-tags
  7354. (when (derived-mode-p 'org-agenda-mode)
  7355. (let ((pos (point-min)) tags-lists tt)
  7356. (while (and (< pos (point-max))
  7357. (setq pos (next-single-property-change
  7358. pos 'tags nil (point-max))))
  7359. (setq tt (get-text-property pos 'tags))
  7360. (if tt (push tt tags-lists)))
  7361. (setq org-agenda-represented-tags
  7362. (nreverse (org-uniquify
  7363. (delq nil (apply 'append tags-lists)))))))))
  7364. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7365. "Create the form that tests a line for agenda filter. Optional
  7366. argument EXPAND can be used for the TYPE tag and will expand the
  7367. tags in the FILTER if any of the tags in FILTER are grouptags."
  7368. (let (f f1)
  7369. (cond
  7370. ;; Tag filter
  7371. ((eq type 'tag)
  7372. (setq filter
  7373. (delete-dups
  7374. (append (get 'org-agenda-tag-filter :preset-filter)
  7375. filter)))
  7376. (dolist (x filter)
  7377. (let ((op (string-to-char x)))
  7378. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7379. (setq x (list x)))
  7380. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7381. (push f1 f))))
  7382. ;; Category filter
  7383. ((eq type 'category)
  7384. (setq filter
  7385. (delete-dups
  7386. (append (get 'org-agenda-category-filter :preset-filter)
  7387. filter)))
  7388. (dolist (x filter)
  7389. (if (equal "-" (substring x 0 1))
  7390. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7391. (setq f1 (list 'equal (substring x 1) 'cat)))
  7392. (push f1 f)))
  7393. ;; Regexp filter
  7394. ((eq type 'regexp)
  7395. (setq filter
  7396. (delete-dups
  7397. (append (get 'org-agenda-regexp-filter :preset-filter)
  7398. filter)))
  7399. (dolist (x filter)
  7400. (if (equal "-" (substring x 0 1))
  7401. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7402. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7403. (push f1 f)))
  7404. ;; Effort filter
  7405. ((eq type 'effort)
  7406. (setq filter
  7407. (delete-dups
  7408. (append (get 'org-agenda-effort-filter :preset-filter)
  7409. filter)))
  7410. (dolist (x filter)
  7411. (push (org-agenda-filter-effort-form x) f))))
  7412. (cons (if (eq type 'category) 'or 'and) (nreverse f))))
  7413. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7414. "Return a form associated to tag-expression TAGS.
  7415. Build a form testing a line for agenda filter for
  7416. tag-expressions. OP is an operator of type CHAR that allows the
  7417. function to set the right switches in the returned form."
  7418. (let (form)
  7419. ;; Any of the expressions can match if OP is +, all must match if
  7420. ;; the operator is -.
  7421. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7422. (let* ((tag (substring x 1))
  7423. (f (cond
  7424. ((string= "" tag) 'tags)
  7425. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7426. ;; TAG is a regexp.
  7427. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7428. (t (list 'member (downcase tag) 'tags)))))
  7429. (push (if (eq op ?-) (list 'not f) f) form)))))
  7430. (defun org-agenda-filter-effort-form (e)
  7431. "Return the form to compare the effort of the current line with what E says.
  7432. E looks like \"+<2:25\"."
  7433. (let (op)
  7434. (setq e (substring e 1))
  7435. (setq op (string-to-char e) e (substring e 1))
  7436. (setq op (cond ((equal op ?<) '<=)
  7437. ((equal op ?>) '>=)
  7438. ((equal op ??) op)
  7439. (t '=)))
  7440. (list 'org-agenda-compare-effort (list 'quote op)
  7441. (org-duration-to-minutes e))))
  7442. (defun org-agenda-compare-effort (op value)
  7443. "Compare the effort of the current line with VALUE, using OP.
  7444. If the line does not have an effort defined, return nil."
  7445. ;; `effort-minutes' property cannot be extracted directly from
  7446. ;; current line but is stored as a property in `txt'.
  7447. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7448. (funcall op
  7449. (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
  7450. value)))
  7451. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7452. "Expand group tags in FILTER for the agenda.
  7453. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7454. (if org-group-tags
  7455. (let ((case-fold-search t) rtn)
  7456. (mapc
  7457. (lambda (f)
  7458. (let (f0 dir)
  7459. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7460. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7461. (setq dir (if no-operator "" "+") f0 f))
  7462. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7463. (org-tags-expand f0 t t))
  7464. rtn))))
  7465. filter)
  7466. (reverse rtn))
  7467. filter))
  7468. (defun org-agenda-filter-apply (filter type &optional expand)
  7469. "Set FILTER as the new agenda filter and apply it. Optional
  7470. argument EXPAND can be used for the TYPE tag and will expand the
  7471. tags in the FILTER if any of the tags in FILTER are grouptags."
  7472. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7473. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7474. (let (tags cat txt)
  7475. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7476. filter type expand))
  7477. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7478. ;; category is used as the filter:
  7479. (setq org-agenda-filtered-by-category
  7480. (and (eq type 'category)
  7481. (not (equal (substring (car filter) 0 1) "-"))))
  7482. (org-agenda-set-mode-name)
  7483. (save-excursion
  7484. (goto-char (point-min))
  7485. (while (not (eobp))
  7486. (if (org-get-at-bol 'org-hd-marker)
  7487. (progn
  7488. (setq tags (org-get-at-bol 'tags)
  7489. cat (org-agenda-get-category)
  7490. txt (org-get-at-bol 'txt))
  7491. (unless (eval org-agenda-filter-form)
  7492. (org-agenda-filter-hide-line type))
  7493. (beginning-of-line 2))
  7494. (beginning-of-line 2))))
  7495. (when (get-char-property (point) 'invisible)
  7496. (ignore-errors (org-agenda-previous-line)))))
  7497. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7498. "Filter by top headline HL."
  7499. (org-agenda-set-mode-name)
  7500. (save-excursion
  7501. (goto-char (point-min))
  7502. (while (not (eobp))
  7503. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7504. (tophl (and pos (org-find-top-headline pos))))
  7505. (when (and tophl (funcall (if negative 'identity 'not)
  7506. (string= hl tophl)))
  7507. (org-agenda-filter-hide-line 'top-headline)))
  7508. (beginning-of-line 2)))
  7509. (when (get-char-property (point) 'invisible)
  7510. (org-agenda-previous-line))
  7511. (setq org-agenda-top-headline-filter hl
  7512. org-agenda-filtered-by-top-headline t))
  7513. (defun org-agenda-filter-hide-line (type)
  7514. "Hide lines with TYPE in the agenda buffer."
  7515. (let* (buffer-invisibility-spec
  7516. (b (max (point-min) (1- (point-at-bol))))
  7517. (e (point-at-eol)))
  7518. (let ((inhibit-read-only t))
  7519. (add-text-properties
  7520. b e `(invisible org-filtered org-filter-type ,type)))))
  7521. (defun org-agenda-remove-filter (type)
  7522. (interactive)
  7523. "Remove filter of type TYPE from the agenda buffer."
  7524. (save-excursion
  7525. (goto-char (point-min))
  7526. (let ((inhibit-read-only t) pos)
  7527. (while (setq pos (text-property-any (point) (point-max)
  7528. 'org-filter-type type))
  7529. (goto-char pos)
  7530. (remove-text-properties
  7531. (point) (next-single-property-change (point) 'org-filter-type)
  7532. `(invisible org-filtered org-filter-type ,type))))
  7533. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7534. (setq org-agenda-filter-form nil)
  7535. (org-agenda-set-mode-name)
  7536. (org-agenda-finalize)))
  7537. (defun org-agenda-filter-show-all-tag nil
  7538. (org-agenda-remove-filter 'tag))
  7539. (defun org-agenda-filter-show-all-re nil
  7540. (org-agenda-remove-filter 'regexp))
  7541. (defun org-agenda-filter-show-all-effort nil
  7542. (org-agenda-remove-filter 'effort))
  7543. (defun org-agenda-filter-show-all-cat nil
  7544. (org-agenda-remove-filter 'category))
  7545. (defun org-agenda-filter-show-all-top-filter nil
  7546. (org-agenda-remove-filter 'top-headline))
  7547. (defun org-agenda-manipulate-query-add ()
  7548. "Manipulate the query by adding a search term with positive selection.
  7549. Positive selection means the term must be matched for selection of an entry."
  7550. (interactive)
  7551. (org-agenda-manipulate-query ?\[))
  7552. (defun org-agenda-manipulate-query-subtract ()
  7553. "Manipulate the query by adding a search term with negative selection.
  7554. Negative selection means term must not be matched for selection of an entry."
  7555. (interactive)
  7556. (org-agenda-manipulate-query ?\]))
  7557. (defun org-agenda-manipulate-query-add-re ()
  7558. "Manipulate the query by adding a search regexp with positive selection.
  7559. Positive selection means the regexp must match for selection of an entry."
  7560. (interactive)
  7561. (org-agenda-manipulate-query ?\{))
  7562. (defun org-agenda-manipulate-query-subtract-re ()
  7563. "Manipulate the query by adding a search regexp with negative selection.
  7564. Negative selection means regexp must not match for selection of an entry."
  7565. (interactive)
  7566. (org-agenda-manipulate-query ?\}))
  7567. (defun org-agenda-manipulate-query (char)
  7568. (cond
  7569. ((eq org-agenda-type 'agenda)
  7570. (let ((org-agenda-include-inactive-timestamps t))
  7571. (org-agenda-redo))
  7572. (message "Display now includes inactive timestamps as well"))
  7573. ((eq org-agenda-type 'search)
  7574. (org-add-to-string
  7575. 'org-agenda-query-string
  7576. (if org-agenda-last-search-view-search-was-boolean
  7577. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7578. (?\{ . " +{}") (?\} . " -{}"))))
  7579. " "))
  7580. (setq org-agenda-redo-command
  7581. (list 'org-search-view
  7582. (car (get-text-property (min (1- (point-max)) (point))
  7583. 'org-last-args))
  7584. org-agenda-query-string
  7585. (+ (length org-agenda-query-string)
  7586. (if (member char '(?\{ ?\})) 0 1))))
  7587. (set-register org-agenda-query-register org-agenda-query-string)
  7588. (let ((org-agenda-overriding-arguments
  7589. (cdr org-agenda-redo-command)))
  7590. (org-agenda-redo)))
  7591. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7592. org-agenda-type))))
  7593. (defun org-add-to-string (var string)
  7594. (set var (concat (symbol-value var) string)))
  7595. (defun org-agenda-goto-date (span)
  7596. "Jump to DATE in agenda."
  7597. (interactive "P")
  7598. (let* ((org-read-date-prefer-future
  7599. (eval org-agenda-jump-prefer-future))
  7600. (date (org-read-date))
  7601. (day (time-to-days (org-time-string-to-time date)))
  7602. (org-agenda-sticky-orig org-agenda-sticky)
  7603. (org-agenda-buffer-tmp-name (buffer-name))
  7604. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7605. (0-arg (or current-prefix-arg (car args)))
  7606. (2-arg (nth 2 args))
  7607. (with-hour-p (nth 4 org-agenda-redo-command))
  7608. (newcmd (list 'org-agenda-list 0-arg date
  7609. (org-agenda-span-to-ndays
  7610. 2-arg (org-time-string-to-absolute date))
  7611. with-hour-p))
  7612. (newargs (cdr newcmd))
  7613. (inhibit-read-only t)
  7614. org-agenda-sticky)
  7615. (if (not (org-agenda-check-type t 'agenda))
  7616. (error "Not available in non-agenda views")
  7617. (add-text-properties (point-min) (point-max)
  7618. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7619. (org-agenda-redo)
  7620. (goto-char (point-min))
  7621. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7622. (save-excursion (move-beginning-of-line 2) (eobp))))
  7623. (move-beginning-of-line 2))
  7624. (setq org-agenda-sticky org-agenda-sticky-orig
  7625. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7626. (defun org-agenda-goto-today ()
  7627. "Go to today."
  7628. (interactive)
  7629. (org-agenda-check-type t 'agenda)
  7630. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7631. (curspan (nth 2 args))
  7632. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7633. (cond
  7634. (tdpos (goto-char tdpos))
  7635. ((eq org-agenda-type 'agenda)
  7636. (let* ((sd (org-agenda-compute-starting-span
  7637. (org-today) (or curspan org-agenda-span)))
  7638. (org-agenda-overriding-arguments args))
  7639. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7640. (org-agenda-redo)
  7641. (org-agenda-find-same-or-today-or-agenda)))
  7642. (t (error "Cannot find today")))))
  7643. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7644. (goto-char
  7645. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7646. (text-property-any (point-min) (point-max) 'org-today t)
  7647. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7648. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7649. (org-agenda-backward-block))
  7650. (point-min))))
  7651. (defun org-agenda-backward-block ()
  7652. "Move backward by one agenda block."
  7653. (interactive)
  7654. (org-agenda-forward-block 'backward))
  7655. (defun org-agenda-forward-block (&optional backward)
  7656. "Move forward by one agenda block.
  7657. When optional argument BACKWARD is set, go backward."
  7658. (interactive)
  7659. (cond ((not (derived-mode-p 'org-agenda-mode))
  7660. (user-error
  7661. "Cannot execute this command outside of org-agenda-mode buffers"))
  7662. ((looking-at (if backward "\\`" "\\'"))
  7663. (message "Already at the %s block" (if backward "first" "last")))
  7664. (t (let ((pos (prog1 (point)
  7665. (ignore-errors (if backward (backward-char 1)
  7666. (move-end-of-line 1)))))
  7667. (f (if backward
  7668. 'previous-single-property-change
  7669. 'next-single-property-change))
  7670. moved dest)
  7671. (while (and (setq dest (funcall
  7672. f (point) 'org-agenda-structural-header))
  7673. (not (get-text-property
  7674. (point) 'org-agenda-structural-header)))
  7675. (setq moved t)
  7676. (goto-char dest))
  7677. (if moved (move-beginning-of-line 1)
  7678. (goto-char (if backward (point-min) (point-max)))
  7679. (move-beginning-of-line 1)
  7680. (message "No %s block" (if backward "previous" "further")))))))
  7681. (defun org-agenda-later (arg)
  7682. "Go forward in time by the current span.
  7683. With prefix ARG, go forward that many times the current span."
  7684. (interactive "p")
  7685. (org-agenda-check-type t 'agenda)
  7686. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7687. (span (or (nth 2 args) org-agenda-current-span))
  7688. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7689. (greg (calendar-gregorian-from-absolute sd))
  7690. (cnt (org-get-at-bol 'org-day-cnt))
  7691. greg2)
  7692. (cond
  7693. ((numberp span)
  7694. (setq sd (+ (* span arg) sd)))
  7695. ((eq span 'day)
  7696. (setq sd (+ arg sd)))
  7697. ((eq span 'week)
  7698. (setq sd (+ (* 7 arg) sd)))
  7699. ((eq span 'fortnight)
  7700. (setq sd (+ (* 14 arg) sd)))
  7701. ((eq span 'month)
  7702. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7703. sd (calendar-absolute-from-gregorian greg2))
  7704. (setcar greg2 (1+ (car greg2))))
  7705. ((eq span 'year)
  7706. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7707. sd (calendar-absolute-from-gregorian greg2))
  7708. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7709. (t
  7710. (setq sd (+ (* span arg) sd))))
  7711. (let ((org-agenda-overriding-cmd
  7712. ;; `cmd' may have been set by `org-agenda-run-series' which
  7713. ;; uses `org-agenda-overriding-cmd' to decide whether
  7714. ;; overriding is allowed for `cmd'
  7715. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7716. (org-agenda-overriding-arguments
  7717. (list (car args) sd span)))
  7718. (org-agenda-redo)
  7719. (org-agenda-find-same-or-today-or-agenda cnt))))
  7720. (defun org-agenda-earlier (arg)
  7721. "Go backward in time by the current span.
  7722. With prefix ARG, go backward that many times the current span."
  7723. (interactive "p")
  7724. (org-agenda-later (- arg)))
  7725. (defun org-agenda-view-mode-dispatch ()
  7726. "Call one of the view mode commands."
  7727. (interactive)
  7728. (org-unlogged-message
  7729. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7730. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7731. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7732. (pcase (read-char-exclusive)
  7733. (?\ (call-interactively 'org-agenda-reset-view))
  7734. (?d (call-interactively 'org-agenda-day-view))
  7735. (?w (call-interactively 'org-agenda-week-view))
  7736. (?t (call-interactively 'org-agenda-fortnight-view))
  7737. (?m (call-interactively 'org-agenda-month-view))
  7738. (?y (call-interactively 'org-agenda-year-view))
  7739. (?l (call-interactively 'org-agenda-log-mode))
  7740. (?L (org-agenda-log-mode '(4)))
  7741. (?c (org-agenda-log-mode 'clockcheck))
  7742. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7743. (?a (call-interactively 'org-agenda-archives-mode))
  7744. (?A (org-agenda-archives-mode 'files))
  7745. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7746. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7747. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7748. (?D (call-interactively 'org-agenda-toggle-diary))
  7749. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7750. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7751. (org-agenda-check-type t 'agenda)
  7752. (org-agenda-redo))
  7753. (message "Display now includes inactive timestamps as well"))
  7754. (?q (message "Abort"))
  7755. (key (user-error "Invalid key: %s" key))))
  7756. (defun org-agenda-reset-view ()
  7757. "Switch to default view for agenda."
  7758. (interactive)
  7759. (org-agenda-change-time-span org-agenda-span))
  7760. (defun org-agenda-day-view (&optional day-of-month)
  7761. "Switch to daily view for agenda.
  7762. With argument DAY-OF-MONTH, switch to that day of the month."
  7763. (interactive "P")
  7764. (org-agenda-change-time-span 'day day-of-month))
  7765. (defun org-agenda-week-view (&optional iso-week)
  7766. "Switch to weekly view for agenda.
  7767. With argument ISO-WEEK, switch to the corresponding ISO week.
  7768. If ISO-WEEK has more then 2 digits, only the last two encode
  7769. the week. Any digits before this encode a year. So 200712
  7770. means week 12 of year 2007. Years ranging from 70 years ago
  7771. to 30 years in the future can also be written as 2-digit years."
  7772. (interactive "P")
  7773. (org-agenda-change-time-span 'week iso-week))
  7774. (defun org-agenda-fortnight-view (&optional iso-week)
  7775. "Switch to fortnightly view for agenda.
  7776. With argument ISO-WEEK, switch to the corresponding ISO week.
  7777. If ISO-WEEK has more then 2 digits, only the last two encode
  7778. the week. Any digits before this encode a year. So 200712
  7779. means week 12 of year 2007. Years ranging from 70 years ago
  7780. to 30 years in the future can also be written as 2-digit years."
  7781. (interactive "P")
  7782. (org-agenda-change-time-span 'fortnight iso-week))
  7783. (defun org-agenda-month-view (&optional month)
  7784. "Switch to monthly view for agenda.
  7785. With argument MONTH, switch to that month. If MONTH has more
  7786. then 2 digits, only the last two encode the month. Any digits
  7787. before this encode a year. So 200712 means December year 2007.
  7788. Years ranging from 70 years ago to 30 years in the future can
  7789. also be written as 2-digit years."
  7790. (interactive "P")
  7791. (org-agenda-change-time-span 'month month))
  7792. (defun org-agenda-year-view (&optional year)
  7793. "Switch to yearly view for agenda.
  7794. With argument YEAR, switch to that year. Years ranging from 70
  7795. years ago to 30 years in the future can also be written as
  7796. 2-digit years."
  7797. (interactive "P")
  7798. (when year
  7799. (setq year (org-small-year-to-year year)))
  7800. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7801. (org-agenda-change-time-span 'year year)
  7802. (error "Abort")))
  7803. (defun org-agenda-change-time-span (span &optional n)
  7804. "Change the agenda view to SPAN.
  7805. SPAN may be `day', `week', `fortnight', `month', `year'."
  7806. (org-agenda-check-type t 'agenda)
  7807. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7808. (curspan (nth 2 args)))
  7809. (when (and (not n) (equal curspan span))
  7810. (error "Viewing span is already \"%s\"" span))
  7811. (let* ((sd (or (org-get-at-bol 'day)
  7812. (nth 1 args)
  7813. org-starting-day))
  7814. (sd (org-agenda-compute-starting-span sd span n))
  7815. (org-agenda-overriding-cmd
  7816. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7817. (org-agenda-overriding-arguments
  7818. (list (car args) sd span)))
  7819. (org-agenda-redo)
  7820. (org-agenda-find-same-or-today-or-agenda))
  7821. (org-agenda-set-mode-name)
  7822. (message "Switched to %s view" span)))
  7823. (defun org-agenda-compute-starting-span (sd span &optional n)
  7824. "Compute starting date for agenda.
  7825. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7826. is a cons cell with the starting date and the number of days,
  7827. so that the date SD will be in that range."
  7828. (let* ((greg (calendar-gregorian-from-absolute sd))
  7829. (dg (nth 1 greg))
  7830. (mg (car greg))
  7831. (yg (nth 2 greg)))
  7832. (cond
  7833. ((eq span 'day)
  7834. (when n
  7835. (setq sd (+ (calendar-absolute-from-gregorian
  7836. (list mg 1 yg))
  7837. n -1))))
  7838. ((or (eq span 'week) (eq span 'fortnight))
  7839. (let* ((nt (calendar-day-of-week
  7840. (calendar-gregorian-from-absolute sd)))
  7841. (d (if org-agenda-start-on-weekday
  7842. (- nt org-agenda-start-on-weekday)
  7843. 0))
  7844. y1)
  7845. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7846. (when n
  7847. (require 'cal-iso)
  7848. (when (> n 99)
  7849. (setq y1 (org-small-year-to-year (/ n 100))
  7850. n (mod n 100)))
  7851. (setq sd
  7852. (calendar-iso-to-absolute
  7853. (list n 1
  7854. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7855. ((eq span 'month)
  7856. (let (y1)
  7857. (when (and n (> n 99))
  7858. (setq y1 (org-small-year-to-year (/ n 100))
  7859. n (mod n 100)))
  7860. (setq sd (calendar-absolute-from-gregorian
  7861. (list (or n mg) 1 (or y1 yg))))))
  7862. ((eq span 'year)
  7863. (setq sd (calendar-absolute-from-gregorian
  7864. (list 1 1 (or n yg))))))
  7865. sd))
  7866. (defun org-agenda-next-date-line (&optional arg)
  7867. "Jump to the next line indicating a date in agenda buffer."
  7868. (interactive "p")
  7869. (org-agenda-check-type t 'agenda)
  7870. (beginning-of-line 1)
  7871. ;; This does not work if user makes date format that starts with a blank
  7872. (when (looking-at-p "^\\S-") (forward-char 1))
  7873. (unless (re-search-forward "^\\S-" nil t arg)
  7874. (backward-char 1)
  7875. (error "No next date after this line in this buffer"))
  7876. (goto-char (match-beginning 0)))
  7877. (defun org-agenda-previous-date-line (&optional arg)
  7878. "Jump to the previous line indicating a date in agenda buffer."
  7879. (interactive "p")
  7880. (org-agenda-check-type t 'agenda)
  7881. (beginning-of-line 1)
  7882. (unless (re-search-backward "^\\S-" nil t arg)
  7883. (error "No previous date before this line in this buffer")))
  7884. ;; Initialize the highlight
  7885. (defvar org-hl (make-overlay 1 1))
  7886. (overlay-put org-hl 'face 'highlight)
  7887. (defun org-highlight (begin end &optional buffer)
  7888. "Highlight a region with overlay."
  7889. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7890. (defun org-unhighlight ()
  7891. "Detach overlay INDEX."
  7892. (delete-overlay org-hl))
  7893. (defun org-unhighlight-once ()
  7894. "Remove the highlight from its position, and this function from the hook."
  7895. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7896. (org-unhighlight))
  7897. (defvar org-agenda-pre-follow-window-conf nil)
  7898. (defun org-agenda-follow-mode ()
  7899. "Toggle follow mode in an agenda buffer."
  7900. (interactive)
  7901. (unless org-agenda-follow-mode
  7902. (setq org-agenda-pre-follow-window-conf
  7903. (current-window-configuration)))
  7904. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7905. (unless org-agenda-follow-mode
  7906. (set-window-configuration org-agenda-pre-follow-window-conf))
  7907. (org-agenda-set-mode-name)
  7908. (org-agenda-do-context-action)
  7909. (message "Follow mode is %s"
  7910. (if org-agenda-follow-mode "on" "off")))
  7911. (defun org-agenda-entry-text-mode (&optional arg)
  7912. "Toggle entry text mode in an agenda buffer."
  7913. (interactive "P")
  7914. (if (or org-agenda-tag-filter
  7915. org-agenda-category-filter
  7916. org-agenda-regexp-filter
  7917. org-agenda-top-headline-filter)
  7918. (user-error "Can't show entry text in filtered views")
  7919. (setq org-agenda-entry-text-mode (or (integerp arg)
  7920. (not org-agenda-entry-text-mode)))
  7921. (org-agenda-entry-text-hide)
  7922. (and org-agenda-entry-text-mode
  7923. (let ((org-agenda-entry-text-maxlines
  7924. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7925. (org-agenda-entry-text-show)))
  7926. (org-agenda-set-mode-name)
  7927. (message "Entry text mode is %s%s"
  7928. (if org-agenda-entry-text-mode "on" "off")
  7929. (if (not org-agenda-entry-text-mode) ""
  7930. (format " (maximum number of lines is %d)"
  7931. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7932. (defun org-agenda-clockreport-mode ()
  7933. "Toggle clocktable mode in an agenda buffer."
  7934. (interactive)
  7935. (org-agenda-check-type t 'agenda)
  7936. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7937. (org-agenda-set-mode-name)
  7938. (org-agenda-redo)
  7939. (message "Clocktable mode is %s"
  7940. (if org-agenda-clockreport-mode "on" "off")))
  7941. (defun org-agenda-log-mode (&optional special)
  7942. "Toggle log mode in an agenda buffer.
  7943. With argument SPECIAL, show all possible log items, not only the ones
  7944. configured in `org-agenda-log-mode-items'.
  7945. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7946. log items, nothing else."
  7947. (interactive "P")
  7948. (org-agenda-check-type t 'agenda)
  7949. (setq org-agenda-show-log
  7950. (cond
  7951. ((equal special '(16)) 'only)
  7952. ((eq special 'clockcheck)
  7953. (if (eq org-agenda-show-log 'clockcheck)
  7954. nil 'clockcheck))
  7955. (special '(closed clock state))
  7956. (t (not org-agenda-show-log))))
  7957. (org-agenda-set-mode-name)
  7958. (org-agenda-redo)
  7959. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7960. (defun org-agenda-archives-mode (&optional with-files)
  7961. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7962. When called with a prefix argument, include all archive files as well."
  7963. (interactive "P")
  7964. (setq org-agenda-archives-mode
  7965. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7966. (org-agenda-set-mode-name)
  7967. (org-agenda-redo)
  7968. (message
  7969. "%s"
  7970. (cond
  7971. ((eq org-agenda-archives-mode nil)
  7972. "No archives are included")
  7973. ((eq org-agenda-archives-mode 'trees)
  7974. (format "Trees with :%s: tag are included" org-archive-tag))
  7975. ((eq org-agenda-archives-mode t)
  7976. (format "Trees with :%s: tag and all active archive files are included"
  7977. org-archive-tag)))))
  7978. (defun org-agenda-toggle-diary ()
  7979. "Toggle diary inclusion in an agenda buffer."
  7980. (interactive)
  7981. (org-agenda-check-type t 'agenda)
  7982. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7983. (org-agenda-redo)
  7984. (org-agenda-set-mode-name)
  7985. (message "Diary inclusion turned %s"
  7986. (if org-agenda-include-diary "on" "off")))
  7987. (defun org-agenda-toggle-deadlines ()
  7988. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7989. (interactive)
  7990. (org-agenda-check-type t 'agenda)
  7991. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7992. (org-agenda-redo)
  7993. (org-agenda-set-mode-name)
  7994. (message "Deadlines inclusion turned %s"
  7995. (if org-agenda-include-deadlines "on" "off")))
  7996. (defun org-agenda-toggle-time-grid ()
  7997. "Toggle time grid in an agenda buffer."
  7998. (interactive)
  7999. (org-agenda-check-type t 'agenda)
  8000. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8001. (org-agenda-redo)
  8002. (org-agenda-set-mode-name)
  8003. (message "Time-grid turned %s"
  8004. (if org-agenda-use-time-grid "on" "off")))
  8005. (defun org-agenda-set-mode-name ()
  8006. "Set the mode name to indicate all the small mode settings."
  8007. (setq mode-name
  8008. (list "Org-Agenda"
  8009. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8010. " "
  8011. '(:eval (org-agenda-span-name org-agenda-current-span))
  8012. (if org-agenda-follow-mode " Follow" "")
  8013. (if org-agenda-entry-text-mode " ETxt" "")
  8014. (if org-agenda-include-diary " Diary" "")
  8015. (if org-agenda-include-deadlines " Ddl" "")
  8016. (if org-agenda-use-time-grid " Grid" "")
  8017. (if (and (boundp 'org-habit-show-habits)
  8018. org-habit-show-habits) " Habit" "")
  8019. (cond
  8020. ((consp org-agenda-show-log) " LogAll")
  8021. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8022. (org-agenda-show-log " Log")
  8023. (t ""))
  8024. (if (org-agenda-filter-any) " " "")
  8025. (if (or org-agenda-category-filter
  8026. (get 'org-agenda-category-filter :preset-filter))
  8027. '(:eval (propertize
  8028. (concat "["
  8029. (mapconcat
  8030. 'identity
  8031. (append
  8032. (get 'org-agenda-category-filter :preset-filter)
  8033. org-agenda-category-filter)
  8034. "")
  8035. "]")
  8036. 'face 'org-agenda-filter-category
  8037. 'help-echo "Category used in filtering")) "")
  8038. (if (or org-agenda-tag-filter
  8039. (get 'org-agenda-tag-filter :preset-filter))
  8040. '(:eval (propertize
  8041. (concat (mapconcat
  8042. 'identity
  8043. (append
  8044. (get 'org-agenda-tag-filter :preset-filter)
  8045. org-agenda-tag-filter)
  8046. ""))
  8047. 'face 'org-agenda-filter-tags
  8048. 'help-echo "Tags used in filtering")) "")
  8049. (if (or org-agenda-effort-filter
  8050. (get 'org-agenda-effort-filter :preset-filter))
  8051. '(:eval (propertize
  8052. (concat (mapconcat
  8053. 'identity
  8054. (append
  8055. (get 'org-agenda-effort-filter :preset-filter)
  8056. org-agenda-effort-filter)
  8057. ""))
  8058. 'face 'org-agenda-filter-effort
  8059. 'help-echo "Effort conditions used in filtering")) "")
  8060. (if (or org-agenda-regexp-filter
  8061. (get 'org-agenda-regexp-filter :preset-filter))
  8062. '(:eval (propertize
  8063. (concat (mapconcat
  8064. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8065. (append
  8066. (get 'org-agenda-regexp-filter :preset-filter)
  8067. org-agenda-regexp-filter)
  8068. ""))
  8069. 'face 'org-agenda-filter-regexp
  8070. 'help-echo "Regexp used in filtering")) "")
  8071. (if org-agenda-archives-mode
  8072. (if (eq org-agenda-archives-mode t)
  8073. " Archives"
  8074. (format " :%s:" org-archive-tag))
  8075. "")
  8076. (if org-agenda-clockreport-mode " Clock" "")))
  8077. (force-mode-line-update))
  8078. (defun org-agenda-update-agenda-type ()
  8079. "Update the agenda type after each command."
  8080. (setq org-agenda-type
  8081. (or (get-text-property (point) 'org-agenda-type)
  8082. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8083. (defun org-agenda-next-line ()
  8084. "Move cursor to the next line, and show if follow mode is active."
  8085. (interactive)
  8086. (call-interactively 'next-line)
  8087. (org-agenda-do-context-action))
  8088. (defun org-agenda-previous-line ()
  8089. "Move cursor to the previous line, and show if follow-mode is active."
  8090. (interactive)
  8091. (call-interactively 'previous-line)
  8092. (org-agenda-do-context-action))
  8093. (defun org-agenda-next-item (n)
  8094. "Move cursor to next agenda item."
  8095. (interactive "p")
  8096. (let ((col (current-column)))
  8097. (dotimes (c n)
  8098. (when (next-single-property-change (point-at-eol) 'org-marker)
  8099. (move-end-of-line 1)
  8100. (goto-char (next-single-property-change (point) 'org-marker))))
  8101. (org-move-to-column col))
  8102. (org-agenda-do-context-action))
  8103. (defun org-agenda-previous-item (n)
  8104. "Move cursor to next agenda item."
  8105. (interactive "p")
  8106. (dotimes (c n)
  8107. (let ((col (current-column))
  8108. (goto (save-excursion
  8109. (move-end-of-line 0)
  8110. (previous-single-property-change (point) 'org-marker))))
  8111. (when goto (goto-char goto))
  8112. (org-move-to-column col)))
  8113. (org-agenda-do-context-action))
  8114. (defun org-agenda-do-context-action ()
  8115. "Show outline path and, maybe, follow mode window."
  8116. (let ((m (org-get-at-bol 'org-marker)))
  8117. (when (and (markerp m) (marker-buffer m))
  8118. (and org-agenda-follow-mode
  8119. (if org-agenda-follow-indirect
  8120. (org-agenda-tree-to-indirect-buffer nil)
  8121. (org-agenda-show)))
  8122. (and org-agenda-show-outline-path
  8123. (org-with-point-at m (org-display-outline-path t))))))
  8124. (defun org-agenda-show-tags ()
  8125. "Show the tags applicable to the current item."
  8126. (interactive)
  8127. (let* ((tags (org-get-at-bol 'tags)))
  8128. (if tags
  8129. (message "Tags are :%s:"
  8130. (org-no-properties (mapconcat 'identity tags ":")))
  8131. (message "No tags associated with this line"))))
  8132. (defun org-agenda-goto (&optional highlight)
  8133. "Go to the entry at point in the corresponding Org file."
  8134. (interactive)
  8135. (let* ((marker (or (org-get-at-bol 'org-marker)
  8136. (org-agenda-error)))
  8137. (buffer (marker-buffer marker))
  8138. (pos (marker-position marker)))
  8139. (switch-to-buffer-other-window buffer)
  8140. (widen)
  8141. (push-mark)
  8142. (goto-char pos)
  8143. (when (derived-mode-p 'org-mode)
  8144. (org-show-context 'agenda)
  8145. (recenter (/ (window-height) 2))
  8146. (org-back-to-heading t)
  8147. (let ((case-fold-search nil))
  8148. (when (re-search-forward org-complex-heading-regexp nil t)
  8149. (goto-char (match-beginning 4)))))
  8150. (run-hooks 'org-agenda-after-show-hook)
  8151. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8152. (defvar org-agenda-after-show-hook nil
  8153. "Normal hook run after an item has been shown from the agenda.
  8154. Point is in the buffer where the item originated.")
  8155. (defun org-agenda-kill ()
  8156. "Kill the entry or subtree belonging to the current agenda entry."
  8157. (interactive)
  8158. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  8159. (let* ((bufname-orig (buffer-name))
  8160. (marker (or (org-get-at-bol 'org-marker)
  8161. (org-agenda-error)))
  8162. (buffer (marker-buffer marker))
  8163. (pos (marker-position marker))
  8164. (type (org-get-at-bol 'type))
  8165. dbeg dend (n 0))
  8166. (org-with-remote-undo buffer
  8167. (with-current-buffer buffer
  8168. (save-excursion
  8169. (goto-char pos)
  8170. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8171. (setq dbeg (progn (org-back-to-heading t) (point))
  8172. dend (org-end-of-subtree t t))
  8173. (setq dbeg (point-at-bol)
  8174. dend (min (point-max) (1+ (point-at-eol)))))
  8175. (goto-char dbeg)
  8176. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8177. (when (or (eq t org-agenda-confirm-kill)
  8178. (and (numberp org-agenda-confirm-kill)
  8179. (> n org-agenda-confirm-kill)))
  8180. (let ((win-conf (current-window-configuration)))
  8181. (unwind-protect
  8182. (and
  8183. (prog2
  8184. (org-agenda-tree-to-indirect-buffer nil)
  8185. (not (y-or-n-p
  8186. (format "Delete entry with %d lines in buffer \"%s\"? "
  8187. n (buffer-name buffer))))
  8188. (kill-buffer org-last-indirect-buffer))
  8189. (error "Abort"))
  8190. (set-window-configuration win-conf))))
  8191. (let ((org-agenda-buffer-name bufname-orig))
  8192. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8193. (with-current-buffer buffer (delete-region dbeg dend))
  8194. (message "Agenda item and source killed"))))
  8195. (defvar org-archive-default-command) ; defined in org-archive.el
  8196. (defun org-agenda-archive-default ()
  8197. "Archive the entry or subtree belonging to the current agenda entry."
  8198. (interactive)
  8199. (require 'org-archive)
  8200. (org-agenda-archive-with org-archive-default-command))
  8201. (defun org-agenda-archive-default-with-confirmation ()
  8202. "Archive the entry or subtree belonging to the current agenda entry."
  8203. (interactive)
  8204. (require 'org-archive)
  8205. (org-agenda-archive-with org-archive-default-command 'confirm))
  8206. (defun org-agenda-archive ()
  8207. "Archive the entry or subtree belonging to the current agenda entry."
  8208. (interactive)
  8209. (org-agenda-archive-with 'org-archive-subtree))
  8210. (defun org-agenda-archive-to-archive-sibling ()
  8211. "Move the entry to the archive sibling."
  8212. (interactive)
  8213. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  8214. (defun org-agenda-archive-with (cmd &optional confirm)
  8215. "Move the entry to the archive sibling."
  8216. (interactive)
  8217. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  8218. (let* ((bufname-orig (buffer-name))
  8219. (marker (or (org-get-at-bol 'org-marker)
  8220. (org-agenda-error)))
  8221. (buffer (marker-buffer marker))
  8222. (pos (marker-position marker)))
  8223. (org-with-remote-undo buffer
  8224. (with-current-buffer buffer
  8225. (if (derived-mode-p 'org-mode)
  8226. (if (and confirm
  8227. (not (y-or-n-p "Archive this subtree or entry? ")))
  8228. (error "Abort")
  8229. (save-window-excursion
  8230. (goto-char pos)
  8231. (let ((org-agenda-buffer-name bufname-orig))
  8232. (org-remove-subtree-entries-from-agenda))
  8233. (org-back-to-heading t)
  8234. (funcall cmd)))
  8235. (error "Archiving works only in Org files"))))))
  8236. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8237. "Remove all lines in the agenda that correspond to a given subtree.
  8238. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8239. If this information is not given, the function uses the tree at point."
  8240. (let ((buf (or buf (current-buffer))) m p)
  8241. (save-excursion
  8242. (unless (and beg end)
  8243. (org-back-to-heading t)
  8244. (setq beg (point))
  8245. (org-end-of-subtree t)
  8246. (setq end (point)))
  8247. (set-buffer (get-buffer org-agenda-buffer-name))
  8248. (save-excursion
  8249. (goto-char (point-max))
  8250. (beginning-of-line 1)
  8251. (while (not (bobp))
  8252. (when (and (setq m (org-get-at-bol 'org-marker))
  8253. (equal buf (marker-buffer m))
  8254. (setq p (marker-position m))
  8255. (>= p beg)
  8256. (< p end))
  8257. (let ((inhibit-read-only t))
  8258. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8259. (beginning-of-line 0))))))
  8260. (defun org-agenda-refile (&optional goto rfloc no-update)
  8261. "Refile the item at point.
  8262. When called with `\\[universal-argument] \\[universal-argument]', \
  8263. go to the location of the last
  8264. refiled item.
  8265. When called with `\\[universal-argument] \\[universal-argument] \
  8266. \\[universal-argument]' prefix or when GOTO is 0, clear
  8267. the refile cache.
  8268. RFLOC can be a refile location obtained in a different way.
  8269. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8270. (interactive "P")
  8271. (cond
  8272. ((member goto '(0 (64)))
  8273. (org-refile-cache-clear))
  8274. ((equal goto '(16))
  8275. (org-refile-goto-last-stored))
  8276. (t
  8277. (let* ((buffer-orig (buffer-name))
  8278. (marker (or (org-get-at-bol 'org-hd-marker)
  8279. (org-agenda-error)))
  8280. (buffer (marker-buffer marker))
  8281. (pos (marker-position marker))
  8282. (rfloc (or rfloc
  8283. (org-refile-get-location
  8284. (if goto "Goto" "Refile to") buffer
  8285. org-refile-allow-creating-parent-nodes))))
  8286. (with-current-buffer buffer
  8287. (org-with-wide-buffer
  8288. (goto-char marker)
  8289. (let ((org-agenda-buffer-name buffer-orig))
  8290. (org-remove-subtree-entries-from-agenda))
  8291. (org-refile goto buffer rfloc))))
  8292. (unless no-update (org-agenda-redo)))))
  8293. (defun org-agenda-open-link (&optional arg)
  8294. "Open the link(s) in the current entry, if any.
  8295. This looks for a link in the displayed line in the agenda.
  8296. It also looks at the text of the entry itself."
  8297. (interactive "P")
  8298. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8299. (org-get-at-bol 'org-marker)))
  8300. (buffer (and marker (marker-buffer marker)))
  8301. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8302. (lkall (and buffer (org-offer-links-in-entry
  8303. buffer marker arg prefix)))
  8304. (lk0 (car lkall))
  8305. (lk (if (stringp lk0) (list lk0) lk0))
  8306. (lkend (cdr lkall))
  8307. trg)
  8308. (cond
  8309. ((and buffer lk)
  8310. (mapcar (lambda(l)
  8311. (with-current-buffer buffer
  8312. (setq trg (and (string-match org-link-bracket-re l)
  8313. (match-string 1 l)))
  8314. (if (or (not trg) (string-match org-link-any-re trg))
  8315. ;; Don't use `org-with-wide-buffer' here as
  8316. ;; opening the link may result in moving the point
  8317. (save-restriction
  8318. (widen)
  8319. (goto-char marker)
  8320. (when (search-forward l nil lkend)
  8321. (goto-char (match-beginning 0))
  8322. (org-open-at-point)))
  8323. ;; This is an internal link, widen the buffer
  8324. (switch-to-buffer-other-window buffer)
  8325. (widen)
  8326. (goto-char marker)
  8327. (when (search-forward l nil lkend)
  8328. (goto-char (match-beginning 0))
  8329. (org-open-at-point)))))
  8330. lk))
  8331. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8332. (save-excursion
  8333. (beginning-of-line 1)
  8334. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8335. (org-link-open-from-string (match-string 1)))
  8336. (t (message "No link to open here")))))
  8337. (defun org-agenda-copy-local-variable (var)
  8338. "Get a variable from a referenced buffer and install it here."
  8339. (let ((m (org-get-at-bol 'org-marker)))
  8340. (when (and m (buffer-live-p (marker-buffer m)))
  8341. (set (make-local-variable var)
  8342. (with-current-buffer (marker-buffer m)
  8343. (symbol-value var))))))
  8344. (defun org-agenda-switch-to (&optional delete-other-windows)
  8345. "Go to the Org mode file which contains the item at point.
  8346. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8347. displayed Org file fills the frame."
  8348. (interactive)
  8349. (if (and org-return-follows-link
  8350. (not (org-get-at-bol 'org-marker))
  8351. (org-in-regexp org-link-bracket-re))
  8352. (org-link-open-from-string (match-string 0))
  8353. (let* ((marker (or (org-get-at-bol 'org-marker)
  8354. (org-agenda-error)))
  8355. (buffer (marker-buffer marker))
  8356. (pos (marker-position marker)))
  8357. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8358. (pop-to-buffer-same-window buffer)
  8359. (when delete-other-windows (delete-other-windows))
  8360. (widen)
  8361. (goto-char pos)
  8362. (when (derived-mode-p 'org-mode)
  8363. (org-show-context 'agenda)
  8364. (run-hooks 'org-agenda-after-show-hook)))))
  8365. (defun org-agenda-goto-mouse (ev)
  8366. "Go to the Org file which contains the item at the mouse click."
  8367. (interactive "e")
  8368. (mouse-set-point ev)
  8369. (org-agenda-goto))
  8370. (defun org-agenda-show (&optional full-entry)
  8371. "Display the Org file which contains the item at point.
  8372. With prefix argument FULL-ENTRY, make the entire entry visible
  8373. if it was hidden in the outline."
  8374. (interactive "P")
  8375. (let ((win (selected-window)))
  8376. (org-agenda-goto t)
  8377. (when full-entry (org-show-entry))
  8378. (select-window win)))
  8379. (defvar org-agenda-show-window nil)
  8380. (defun org-agenda-show-and-scroll-up (&optional arg)
  8381. "Display the Org file which contains the item at point.
  8382. When called repeatedly, scroll the window that is displaying the buffer.
  8383. With a `\\[universal-argument]' prefix argument, display the item, but \
  8384. fold drawers."
  8385. (interactive "P")
  8386. (let ((win (selected-window)))
  8387. (if (and (window-live-p org-agenda-show-window)
  8388. (eq this-command last-command))
  8389. (progn
  8390. (select-window org-agenda-show-window)
  8391. (ignore-errors (scroll-up)))
  8392. (org-agenda-goto t)
  8393. (org-show-entry)
  8394. (if arg (org-cycle-hide-drawers 'children)
  8395. (org-with-wide-buffer
  8396. (narrow-to-region (org-entry-beginning-position)
  8397. (org-entry-end-position))
  8398. (org-show-all '(drawers))))
  8399. (setq org-agenda-show-window (selected-window)))
  8400. (select-window win)))
  8401. (defun org-agenda-show-scroll-down ()
  8402. "Scroll down the window showing the agenda."
  8403. (interactive)
  8404. (let ((win (selected-window)))
  8405. (when (window-live-p org-agenda-show-window)
  8406. (select-window org-agenda-show-window)
  8407. (ignore-errors (scroll-down))
  8408. (select-window win))))
  8409. (defun org-agenda-show-1 (&optional more)
  8410. "Display the Org file which contains the item at point.
  8411. The prefix arg selects the amount of information to display:
  8412. 0 hide the subtree
  8413. 1 just show the entry according to defaults.
  8414. 2 show the children view
  8415. 3 show the subtree view
  8416. 4 show the entire subtree and any LOGBOOK drawers
  8417. 5 show the entire subtree and any drawers
  8418. With prefix argument FULL-ENTRY, make the entire entry visible
  8419. if it was hidden in the outline."
  8420. (interactive "p")
  8421. (let ((win (selected-window)))
  8422. (org-agenda-goto t)
  8423. (org-back-to-heading)
  8424. (set-window-start (selected-window) (point-at-bol))
  8425. (cond
  8426. ((= more 0)
  8427. (org-flag-subtree t)
  8428. (save-excursion
  8429. (org-back-to-heading)
  8430. (run-hook-with-args 'org-cycle-hook 'folded))
  8431. (message "Remote: FOLDED"))
  8432. ((and (called-interactively-p 'any) (= more 1))
  8433. (message "Remote: show with default settings"))
  8434. ((= more 2)
  8435. (outline-show-entry)
  8436. (org-show-children)
  8437. (save-excursion
  8438. (org-back-to-heading)
  8439. (run-hook-with-args 'org-cycle-hook 'children))
  8440. (message "Remote: CHILDREN"))
  8441. ((= more 3)
  8442. (outline-show-subtree)
  8443. (save-excursion
  8444. (org-back-to-heading)
  8445. (run-hook-with-args 'org-cycle-hook 'subtree))
  8446. (message "Remote: SUBTREE"))
  8447. ((= more 4)
  8448. (outline-show-subtree)
  8449. (save-excursion
  8450. (org-back-to-heading)
  8451. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8452. (message "Remote: SUBTREE AND LOGBOOK"))
  8453. ((> more 4)
  8454. (outline-show-subtree)
  8455. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8456. (select-window win)))
  8457. (defvar org-agenda-cycle-counter nil)
  8458. (defun org-agenda-cycle-show (&optional n)
  8459. "Show the current entry in another window, with default settings.
  8460. Default settings are taken from `org-show-context-detail'. When
  8461. use repeatedly in immediate succession, the remote entry will
  8462. cycle through visibility
  8463. children -> subtree -> folded
  8464. When called with a numeric prefix arg, that arg will be passed through to
  8465. `org-agenda-show-1'. For the interpretation of that argument, see the
  8466. docstring of `org-agenda-show-1'."
  8467. (interactive "P")
  8468. (if (integerp n)
  8469. (setq org-agenda-cycle-counter n)
  8470. (if (not (eq last-command this-command))
  8471. (setq org-agenda-cycle-counter 1)
  8472. (if (equal org-agenda-cycle-counter 0)
  8473. (setq org-agenda-cycle-counter 2)
  8474. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8475. (when (> org-agenda-cycle-counter 3)
  8476. (setq org-agenda-cycle-counter 0)))))
  8477. (org-agenda-show-1 org-agenda-cycle-counter))
  8478. (defun org-agenda-recenter (arg)
  8479. "Display the Org file which contains the item at point and recenter."
  8480. (interactive "P")
  8481. (let ((win (selected-window)))
  8482. (org-agenda-goto t)
  8483. (recenter arg)
  8484. (select-window win)))
  8485. (defun org-agenda-show-mouse (ev)
  8486. "Display the Org file which contains the item at the mouse click."
  8487. (interactive "e")
  8488. (mouse-set-point ev)
  8489. (org-agenda-show))
  8490. (defun org-agenda-check-no-diary ()
  8491. "Check if the entry is a diary link and abort if yes."
  8492. (when (org-get-at-bol 'org-agenda-diary-link)
  8493. (org-agenda-error)))
  8494. (defun org-agenda-error ()
  8495. "Throw an error when a command is not allowed in the agenda."
  8496. (user-error "Command not allowed in this line"))
  8497. (defun org-agenda-tree-to-indirect-buffer (arg)
  8498. "Show the subtree corresponding to the current entry in an indirect buffer.
  8499. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8500. With a numerical prefix ARG, go up to this level and then take that tree.
  8501. With a negative numeric ARG, go up by this number of levels.
  8502. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8503. i.e. don't use
  8504. the dedicated frame."
  8505. (interactive "P")
  8506. (if current-prefix-arg
  8507. (org-agenda-do-tree-to-indirect-buffer arg)
  8508. (let ((agenda-buffer (buffer-name))
  8509. (agenda-window (selected-window))
  8510. (indirect-window
  8511. (and org-last-indirect-buffer
  8512. (get-buffer-window org-last-indirect-buffer))))
  8513. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8514. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8515. (eq org-indirect-buffer-display 'dedicated-frame))
  8516. (unwind-protect
  8517. (unless (and indirect-window (window-live-p indirect-window))
  8518. (setq indirect-window (split-window agenda-window)))
  8519. (and indirect-window (select-window indirect-window))
  8520. (switch-to-buffer org-last-indirect-buffer :norecord)
  8521. (fit-window-to-buffer indirect-window)))
  8522. (select-window (get-buffer-window agenda-buffer))
  8523. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8524. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8525. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8526. (org-agenda-check-no-diary)
  8527. (let* ((marker (or (org-get-at-bol 'org-marker)
  8528. (org-agenda-error)))
  8529. (buffer (marker-buffer marker))
  8530. (pos (marker-position marker)))
  8531. (with-current-buffer buffer
  8532. (save-excursion
  8533. (goto-char pos)
  8534. (org-tree-to-indirect-buffer arg)))))
  8535. (defvar org-last-heading-marker (make-marker)
  8536. "Marker pointing to the headline that last changed its TODO state
  8537. by a remote command from the agenda.")
  8538. (defun org-agenda-todo-nextset ()
  8539. "Switch TODO entry to next sequence."
  8540. (interactive)
  8541. (org-agenda-todo 'nextset))
  8542. (defun org-agenda-todo-previousset ()
  8543. "Switch TODO entry to previous sequence."
  8544. (interactive)
  8545. (org-agenda-todo 'previousset))
  8546. (defun org-agenda-todo (&optional arg)
  8547. "Cycle TODO state of line at point, also in Org file.
  8548. This changes the line at point, all other lines in the agenda referring to
  8549. the same tree node, and the headline of the tree node in the Org file."
  8550. (interactive "P")
  8551. (org-agenda-check-no-diary)
  8552. (let* ((col (current-column))
  8553. (marker (or (org-get-at-bol 'org-marker)
  8554. (org-agenda-error)))
  8555. (buffer (marker-buffer marker))
  8556. (pos (marker-position marker))
  8557. (hdmarker (org-get-at-bol 'org-hd-marker))
  8558. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8559. (inhibit-read-only t)
  8560. org-loop-over-headlines-in-active-region
  8561. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8562. (org-with-remote-undo buffer
  8563. (with-current-buffer buffer
  8564. (widen)
  8565. (goto-char pos)
  8566. (org-show-context 'agenda)
  8567. (let ((current-prefix-arg arg))
  8568. (call-interactively 'org-todo))
  8569. (and (bolp) (forward-char 1))
  8570. (setq newhead (org-get-heading))
  8571. (when (and (bound-and-true-p
  8572. org-agenda-headline-snapshot-before-repeat)
  8573. (not (equal org-agenda-headline-snapshot-before-repeat
  8574. newhead))
  8575. todayp)
  8576. (setq newhead org-agenda-headline-snapshot-before-repeat
  8577. just-one t))
  8578. (save-excursion
  8579. (org-back-to-heading)
  8580. (move-marker org-last-heading-marker (point))))
  8581. (beginning-of-line 1)
  8582. (save-window-excursion
  8583. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8584. (when (bound-and-true-p org-clock-out-when-done)
  8585. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8586. newhead)
  8587. (org-agenda-unmark-clocking-task))
  8588. (org-move-to-column col)
  8589. (org-agenda-mark-clocking-task))))
  8590. (defun org-agenda-add-note (&optional arg)
  8591. "Add a time-stamped note to the entry at point."
  8592. (interactive "P")
  8593. (org-agenda-check-no-diary)
  8594. (let* ((marker (or (org-get-at-bol 'org-marker)
  8595. (org-agenda-error)))
  8596. (buffer (marker-buffer marker))
  8597. (pos (marker-position marker))
  8598. (hdmarker (org-get-at-bol 'org-hd-marker))
  8599. (inhibit-read-only t))
  8600. (with-current-buffer buffer
  8601. (widen)
  8602. (goto-char pos)
  8603. (org-show-context 'agenda)
  8604. (org-add-note))))
  8605. (defun org-agenda-change-all-lines (newhead hdmarker
  8606. &optional fixface just-this)
  8607. "Change all lines in the agenda buffer which match HDMARKER.
  8608. The new content of the line will be NEWHEAD (as modified by
  8609. `org-agenda-format-item'). HDMARKER is checked with
  8610. `equal' against all `org-hd-marker' text properties in the file.
  8611. If FIXFACE is non-nil, the face of each item is modified according to
  8612. the new TODO state.
  8613. If JUST-THIS is non-nil, change just the current line, not all.
  8614. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8615. (let* ((inhibit-read-only t)
  8616. (line (org-current-line))
  8617. (org-agenda-buffer (current-buffer))
  8618. (thetags (with-current-buffer (marker-buffer hdmarker)
  8619. (org-get-tags hdmarker)))
  8620. props m pl undone-face done-face finish new dotime level cat tags)
  8621. (save-excursion
  8622. (goto-char (point-max))
  8623. (beginning-of-line 1)
  8624. (while (not finish)
  8625. (setq finish (bobp))
  8626. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8627. (or (not just-this) (= (org-current-line) line))
  8628. (equal m hdmarker))
  8629. (setq props (text-properties-at (point))
  8630. dotime (org-get-at-bol 'dotime)
  8631. cat (org-agenda-get-category)
  8632. level (org-get-at-bol 'level)
  8633. tags thetags
  8634. new
  8635. (let ((org-prefix-format-compiled
  8636. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8637. org-prefix-format-compiled))
  8638. (extra (org-get-at-bol 'extra)))
  8639. (with-current-buffer (marker-buffer hdmarker)
  8640. (org-with-wide-buffer
  8641. (org-agenda-format-item extra newhead level cat tags dotime))))
  8642. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8643. undone-face (org-get-at-bol 'undone-face)
  8644. done-face (org-get-at-bol 'done-face))
  8645. (beginning-of-line 1)
  8646. (cond
  8647. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8648. ((looking-at ".*")
  8649. ;; When replacing the whole line, preserve bulk mark
  8650. ;; overlay, if any.
  8651. (let ((mark (catch :overlay
  8652. (dolist (o (overlays-in (point) (+ 2 (point))))
  8653. (when (eq (overlay-get o 'type)
  8654. 'org-marked-entry-overlay)
  8655. (throw :overlay o))))))
  8656. (replace-match new t t)
  8657. (beginning-of-line)
  8658. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8659. (add-text-properties (point-at-bol) (point-at-eol) props)
  8660. (when fixface
  8661. (add-text-properties
  8662. (point-at-bol) (point-at-eol)
  8663. (list 'face
  8664. (if org-last-todo-state-is-todo
  8665. undone-face done-face))))
  8666. (org-agenda-highlight-todo 'line)
  8667. (beginning-of-line 1))
  8668. (t (error "Line update did not work")))
  8669. (save-restriction
  8670. (narrow-to-region (point-at-bol) (point-at-eol))
  8671. (org-agenda-finalize)))
  8672. (beginning-of-line 0)))))
  8673. (defun org-agenda-align-tags (&optional line)
  8674. "Align all tags in agenda items to `org-agenda-tags-column'.
  8675. When optional argument LINE is non-nil, align tags only on the
  8676. current line."
  8677. (let ((inhibit-read-only t)
  8678. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8679. (- (window-text-width))
  8680. org-agenda-tags-column))
  8681. (end (and line (line-end-position)))
  8682. l c)
  8683. (save-excursion
  8684. (goto-char (if line (line-beginning-position) (point-min)))
  8685. (while (re-search-forward org-tag-group-re end t)
  8686. (add-text-properties
  8687. (match-beginning 1) (match-end 1)
  8688. (list 'face (delq nil (let ((prop (get-text-property
  8689. (match-beginning 1) 'face)))
  8690. (or (listp prop) (setq prop (list prop)))
  8691. (if (memq 'org-tag prop)
  8692. prop
  8693. (cons 'org-tag prop))))))
  8694. (setq l (string-width (match-string 1))
  8695. c (if (< org-agenda-tags-column 0)
  8696. (- (abs org-agenda-tags-column) l)
  8697. org-agenda-tags-column))
  8698. (goto-char (match-beginning 1))
  8699. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8700. (point))
  8701. (insert (org-add-props
  8702. (make-string (max 1 (- c (current-column))) ?\s)
  8703. (plist-put (copy-sequence (text-properties-at (point)))
  8704. 'face nil))))
  8705. (goto-char (point-min))
  8706. (org-font-lock-add-tag-faces (point-max)))))
  8707. (defun org-agenda-priority-up ()
  8708. "Increase the priority of line at point, also in Org file."
  8709. (interactive)
  8710. (org-agenda-priority 'up))
  8711. (defun org-agenda-priority-down ()
  8712. "Decrease the priority of line at point, also in Org file."
  8713. (interactive)
  8714. (org-agenda-priority 'down))
  8715. (defun org-agenda-priority (&optional force-direction)
  8716. "Set the priority of line at point, also in Org file.
  8717. This changes the line at point, all other lines in the agenda referring to
  8718. the same tree node, and the headline of the tree node in the Org file.
  8719. Called with a universal prefix arg, show the priority instead of setting it."
  8720. (interactive "P")
  8721. (if (equal force-direction '(4))
  8722. (org-show-priority)
  8723. (unless org-enable-priority-commands
  8724. (error "Priority commands are disabled"))
  8725. (org-agenda-check-no-diary)
  8726. (let* ((col (current-column))
  8727. (marker (or (org-get-at-bol 'org-marker)
  8728. (org-agenda-error)))
  8729. (hdmarker (org-get-at-bol 'org-hd-marker))
  8730. (buffer (marker-buffer hdmarker))
  8731. (pos (marker-position hdmarker))
  8732. (inhibit-read-only t)
  8733. newhead)
  8734. (org-with-remote-undo buffer
  8735. (with-current-buffer buffer
  8736. (widen)
  8737. (goto-char pos)
  8738. (org-show-context 'agenda)
  8739. (org-priority force-direction)
  8740. (end-of-line 1)
  8741. (setq newhead (org-get-heading)))
  8742. (org-agenda-change-all-lines newhead hdmarker)
  8743. (org-move-to-column col)))))
  8744. ;; FIXME: should fix the tags property of the agenda line.
  8745. (defun org-agenda-set-tags (&optional tag onoff)
  8746. "Set tags for the current headline."
  8747. (interactive)
  8748. (org-agenda-check-no-diary)
  8749. (if (and (org-region-active-p) (called-interactively-p 'any))
  8750. (call-interactively 'org-change-tag-in-region)
  8751. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8752. (org-agenda-error)))
  8753. (buffer (marker-buffer hdmarker))
  8754. (pos (marker-position hdmarker))
  8755. (inhibit-read-only t)
  8756. newhead)
  8757. (org-with-remote-undo buffer
  8758. (with-current-buffer buffer
  8759. (widen)
  8760. (goto-char pos)
  8761. (org-show-context 'agenda)
  8762. (if tag
  8763. (org-toggle-tag tag onoff)
  8764. (call-interactively #'org-set-tags-command))
  8765. (end-of-line 1)
  8766. (setq newhead (org-get-heading)))
  8767. (org-agenda-change-all-lines newhead hdmarker)
  8768. (beginning-of-line 1)))))
  8769. (defun org-agenda-set-property ()
  8770. "Set a property for the current headline."
  8771. (interactive)
  8772. (org-agenda-check-no-diary)
  8773. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8774. (org-agenda-error)))
  8775. (buffer (marker-buffer hdmarker))
  8776. (pos (marker-position hdmarker))
  8777. (inhibit-read-only t)
  8778. newhead)
  8779. (org-with-remote-undo buffer
  8780. (with-current-buffer buffer
  8781. (widen)
  8782. (goto-char pos)
  8783. (org-show-context 'agenda)
  8784. (call-interactively 'org-set-property)))))
  8785. (defun org-agenda-set-effort ()
  8786. "Set the effort property for the current headline."
  8787. (interactive)
  8788. (org-agenda-check-no-diary)
  8789. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8790. (org-agenda-error)))
  8791. (buffer (marker-buffer hdmarker))
  8792. (pos (marker-position hdmarker))
  8793. (inhibit-read-only t)
  8794. newhead)
  8795. (org-with-remote-undo buffer
  8796. (with-current-buffer buffer
  8797. (widen)
  8798. (goto-char pos)
  8799. (org-show-context 'agenda)
  8800. (call-interactively 'org-set-effort)
  8801. (end-of-line 1)
  8802. (setq newhead (org-get-heading)))
  8803. (org-agenda-change-all-lines newhead hdmarker))))
  8804. (defun org-agenda-toggle-archive-tag ()
  8805. "Toggle the archive tag for the current entry."
  8806. (interactive)
  8807. (org-agenda-check-no-diary)
  8808. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8809. (org-agenda-error)))
  8810. (buffer (marker-buffer hdmarker))
  8811. (pos (marker-position hdmarker))
  8812. (inhibit-read-only t)
  8813. newhead)
  8814. (org-with-remote-undo buffer
  8815. (with-current-buffer buffer
  8816. (widen)
  8817. (goto-char pos)
  8818. (org-show-context 'agenda)
  8819. (call-interactively 'org-toggle-archive-tag)
  8820. (end-of-line 1)
  8821. (setq newhead (org-get-heading)))
  8822. (org-agenda-change-all-lines newhead hdmarker)
  8823. (beginning-of-line 1))))
  8824. (defun org-agenda-do-date-later (arg)
  8825. (interactive "P")
  8826. (cond
  8827. ((or (equal arg '(16))
  8828. (memq last-command
  8829. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8830. (setq this-command 'org-agenda-date-later-minutes)
  8831. (org-agenda-date-later-minutes 1))
  8832. ((or (equal arg '(4))
  8833. (memq last-command
  8834. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8835. (setq this-command 'org-agenda-date-later-hours)
  8836. (org-agenda-date-later-hours 1))
  8837. (t
  8838. (org-agenda-date-later (prefix-numeric-value arg)))))
  8839. (defun org-agenda-do-date-earlier (arg)
  8840. (interactive "P")
  8841. (cond
  8842. ((or (equal arg '(16))
  8843. (memq last-command
  8844. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8845. (setq this-command 'org-agenda-date-earlier-minutes)
  8846. (org-agenda-date-earlier-minutes 1))
  8847. ((or (equal arg '(4))
  8848. (memq last-command
  8849. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8850. (setq this-command 'org-agenda-date-earlier-hours)
  8851. (org-agenda-date-earlier-hours 1))
  8852. (t
  8853. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8854. (defun org-agenda-date-later (arg &optional what)
  8855. "Change the date of this item to ARG day(s) later."
  8856. (interactive "p")
  8857. (org-agenda-check-type t 'agenda)
  8858. (org-agenda-check-no-diary)
  8859. (let* ((marker (or (org-get-at-bol 'org-marker)
  8860. (org-agenda-error)))
  8861. (buffer (marker-buffer marker))
  8862. (pos (marker-position marker))
  8863. cdate today)
  8864. (org-with-remote-undo buffer
  8865. (with-current-buffer buffer
  8866. (widen)
  8867. (goto-char pos)
  8868. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8869. (when (and org-agenda-move-date-from-past-immediately-to-today
  8870. (equal arg 1)
  8871. (or (not what) (eq what 'day))
  8872. (not (save-match-data (org-at-date-range-p))))
  8873. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8874. cdate (calendar-absolute-from-gregorian
  8875. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8876. today (org-today))
  8877. (when (> today cdate)
  8878. ;; immediately shift to today
  8879. (setq arg (- today cdate))))
  8880. (org-timestamp-change arg (or what 'day))
  8881. (when (and (org-at-date-range-p)
  8882. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8883. (let ((end org-last-changed-timestamp))
  8884. (org-timestamp-change arg (or what 'day))
  8885. (setq org-last-changed-timestamp
  8886. (concat org-last-changed-timestamp "--" end)))))
  8887. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8888. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8889. (defun org-agenda-date-earlier (arg &optional what)
  8890. "Change the date of this item to ARG day(s) earlier."
  8891. (interactive "p")
  8892. (org-agenda-date-later (- arg) what))
  8893. (defun org-agenda-date-later-minutes (arg)
  8894. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8895. (interactive "p")
  8896. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8897. (org-agenda-date-later arg 'minute))
  8898. (defun org-agenda-date-earlier-minutes (arg)
  8899. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8900. (interactive "p")
  8901. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8902. (org-agenda-date-earlier arg 'minute))
  8903. (defun org-agenda-date-later-hours (arg)
  8904. "Change the time of this item, in hour steps."
  8905. (interactive "p")
  8906. (org-agenda-date-later arg 'hour))
  8907. (defun org-agenda-date-earlier-hours (arg)
  8908. "Change the time of this item, in hour steps."
  8909. (interactive "p")
  8910. (org-agenda-date-earlier arg 'hour))
  8911. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8912. "Show new date stamp via text properties."
  8913. ;; We use text properties to make this undoable
  8914. (let ((inhibit-read-only t))
  8915. (setq stamp (concat prefix " => " stamp " "))
  8916. (save-excursion
  8917. (goto-char (point-max))
  8918. (while (not (bobp))
  8919. (when (equal marker (org-get-at-bol 'org-marker))
  8920. (remove-text-properties (line-beginning-position)
  8921. (line-end-position)
  8922. '(display nil))
  8923. (org-move-to-column
  8924. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  8925. (add-text-properties
  8926. (1- (point)) (point-at-eol)
  8927. (list 'display (org-add-props stamp nil
  8928. 'face '(secondary-selection default))))
  8929. (beginning-of-line 1))
  8930. (beginning-of-line 0)))))
  8931. (defun org-agenda-date-prompt (arg)
  8932. "Change the date of this item. Date is prompted for, with default today.
  8933. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8934. be used to request time specification in the time stamp."
  8935. (interactive "P")
  8936. (org-agenda-check-type t 'agenda)
  8937. (org-agenda-check-no-diary)
  8938. (let* ((marker (or (org-get-at-bol 'org-marker)
  8939. (org-agenda-error)))
  8940. (buffer (marker-buffer marker))
  8941. (pos (marker-position marker)))
  8942. (org-with-remote-undo buffer
  8943. (with-current-buffer buffer
  8944. (widen)
  8945. (goto-char pos)
  8946. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8947. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8948. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8949. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8950. (defun org-agenda-schedule (arg &optional time)
  8951. "Schedule the item at point.
  8952. ARG is passed through to `org-schedule'."
  8953. (interactive "P")
  8954. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8955. (org-agenda-check-no-diary)
  8956. (let* ((marker (or (org-get-at-bol 'org-marker)
  8957. (org-agenda-error)))
  8958. (type (marker-insertion-type marker))
  8959. (buffer (marker-buffer marker))
  8960. (pos (marker-position marker))
  8961. ts)
  8962. (set-marker-insertion-type marker t)
  8963. (org-with-remote-undo buffer
  8964. (with-current-buffer buffer
  8965. (widen)
  8966. (goto-char pos)
  8967. (setq ts (org-schedule arg time)))
  8968. (org-agenda-show-new-time marker ts " S"))
  8969. (message "%s" ts)))
  8970. (defun org-agenda-deadline (arg &optional time)
  8971. "Schedule the item at point.
  8972. ARG is passed through to `org-deadline'."
  8973. (interactive "P")
  8974. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8975. (org-agenda-check-no-diary)
  8976. (let* ((marker (or (org-get-at-bol 'org-marker)
  8977. (org-agenda-error)))
  8978. (buffer (marker-buffer marker))
  8979. (pos (marker-position marker))
  8980. ts)
  8981. (org-with-remote-undo buffer
  8982. (with-current-buffer buffer
  8983. (widen)
  8984. (goto-char pos)
  8985. (setq ts (org-deadline arg time)))
  8986. (org-agenda-show-new-time marker ts " D"))
  8987. (message "%s" ts)))
  8988. (defun org-agenda-clock-in (&optional arg)
  8989. "Start the clock on the currently selected item."
  8990. (interactive "P")
  8991. (org-agenda-check-no-diary)
  8992. (if (equal arg '(4))
  8993. (org-clock-in arg)
  8994. (let* ((marker (or (org-get-at-bol 'org-marker)
  8995. (org-agenda-error)))
  8996. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8997. (pos (marker-position marker))
  8998. (col (current-column))
  8999. newhead)
  9000. (org-with-remote-undo (marker-buffer marker)
  9001. (with-current-buffer (marker-buffer marker)
  9002. (widen)
  9003. (goto-char pos)
  9004. (org-show-context 'agenda)
  9005. (org-clock-in arg)
  9006. (setq newhead (org-get-heading)))
  9007. (org-agenda-change-all-lines newhead hdmarker))
  9008. (org-move-to-column col))))
  9009. (defun org-agenda-clock-out ()
  9010. "Stop the currently running clock."
  9011. (interactive)
  9012. (unless (marker-buffer org-clock-marker)
  9013. (error "No running clock"))
  9014. (let ((marker (make-marker)) (col (current-column)) newhead)
  9015. (org-with-remote-undo (marker-buffer org-clock-marker)
  9016. (with-current-buffer (marker-buffer org-clock-marker)
  9017. (org-with-wide-buffer
  9018. (goto-char org-clock-marker)
  9019. (org-back-to-heading t)
  9020. (move-marker marker (point))
  9021. (org-clock-out)
  9022. (setq newhead (org-get-heading)))))
  9023. (org-agenda-change-all-lines newhead marker)
  9024. (move-marker marker nil)
  9025. (org-move-to-column col)
  9026. (org-agenda-unmark-clocking-task)))
  9027. (defun org-agenda-clock-cancel (&optional arg)
  9028. "Cancel the currently running clock."
  9029. (interactive "P")
  9030. (unless (marker-buffer org-clock-marker)
  9031. (user-error "No running clock"))
  9032. (org-with-remote-undo (marker-buffer org-clock-marker)
  9033. (org-clock-cancel)))
  9034. (defun org-agenda-clock-goto ()
  9035. "Jump to the currently clocked in task within the agenda.
  9036. If the currently clocked in task is not listed in the agenda
  9037. buffer, display it in another window."
  9038. (interactive)
  9039. (let (pos)
  9040. (mapc (lambda (o)
  9041. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9042. (setq pos (overlay-start o))))
  9043. (overlays-in (point-min) (point-max)))
  9044. (cond (pos (goto-char pos))
  9045. ;; If the currently clocked entry is not in the agenda
  9046. ;; buffer, we visit it in another window:
  9047. ((bound-and-true-p org-clock-current-task)
  9048. (org-switch-to-buffer-other-window (org-clock-goto)))
  9049. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9050. (defun org-agenda-diary-entry-in-org-file ()
  9051. "Make a diary entry in the file `org-agenda-diary-file'."
  9052. (let (d1 d2 char (text "") dp1 dp2)
  9053. (if (equal (buffer-name) "*Calendar*")
  9054. (setq d1 (calendar-cursor-to-date t)
  9055. d2 (car calendar-mark-ring))
  9056. (setq dp1 (get-text-property (point-at-bol) 'day))
  9057. (unless dp1 (user-error "No date defined in current line"))
  9058. (setq d1 (calendar-gregorian-from-absolute dp1)
  9059. d2 (and (ignore-errors (mark))
  9060. (save-excursion
  9061. (goto-char (mark))
  9062. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9063. (calendar-gregorian-from-absolute dp2))))
  9064. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9065. (setq char (read-char-exclusive))
  9066. (cond
  9067. ((equal char ?d)
  9068. (setq text (read-string "Day entry: "))
  9069. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9070. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9071. ((equal char ?a)
  9072. (setq d1 (list (car d1) (nth 1 d1)
  9073. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9074. (nth 2 d1))))
  9075. (setq text (read-string "Anniversary (use %d to show years): "))
  9076. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9077. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9078. ((equal char ?b)
  9079. (setq text (read-string "Block entry: "))
  9080. (unless (and d1 d2 (not (equal d1 d2)))
  9081. (user-error "No block of days selected"))
  9082. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9083. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9084. ((equal char ?j)
  9085. (org-switch-to-buffer-other-window
  9086. (find-file-noselect org-agenda-diary-file))
  9087. (require 'org-datetree)
  9088. (org-datetree-find-date-create d1)
  9089. (org-reveal t))
  9090. (t (user-error "Invalid selection character `%c'" char)))))
  9091. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9092. "Where in `org-agenda-diary-file' should new entries be added?
  9093. Valid values:
  9094. date-tree in the date tree, as first child of the date
  9095. date-tree-last in the date tree, as last child of the date
  9096. top-level as top-level entries at the end of the file."
  9097. :group 'org-agenda
  9098. :type '(choice
  9099. (const :tag "first in a date tree" date-tree)
  9100. (const :tag "last in a date tree" date-tree-last)
  9101. (const :tag "as top level at end of file" top-level)))
  9102. (defcustom org-agenda-insert-diary-extract-time nil
  9103. "Non-nil means extract any time specification from the diary entry."
  9104. :group 'org-agenda
  9105. :version "24.1"
  9106. :type 'boolean)
  9107. (defcustom org-agenda-bulk-mark-char ">"
  9108. "A single-character string to be used as the bulk mark."
  9109. :group 'org-agenda
  9110. :version "24.1"
  9111. :type 'string)
  9112. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9113. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9114. If TEXT is not empty, it will become the headline of the new entry, and
  9115. the resulting entry will not be shown. When TEXT is empty, switch to
  9116. `org-agenda-diary-file' and let the user finish the entry there."
  9117. (let ((cw (current-window-configuration)))
  9118. (org-switch-to-buffer-other-window
  9119. (find-file-noselect org-agenda-diary-file))
  9120. (widen)
  9121. (goto-char (point-min))
  9122. (cl-case type
  9123. (anniversary
  9124. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9125. (progn
  9126. (or (org-at-heading-p t)
  9127. (progn
  9128. (outline-next-heading)
  9129. (insert "* Anniversaries\n\n")
  9130. (beginning-of-line -1)))))
  9131. (outline-next-heading)
  9132. (org-back-over-empty-lines)
  9133. (backward-char 1)
  9134. (insert "\n")
  9135. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9136. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9137. (day
  9138. (let ((org-prefix-has-time t)
  9139. (org-agenda-time-leading-zero t)
  9140. fmt time time2)
  9141. (when org-agenda-insert-diary-extract-time
  9142. ;; Use org-agenda-format-item to parse text for a time-range and
  9143. ;; remove it. FIXME: This is a hack, we should refactor
  9144. ;; that function to make time extraction available separately
  9145. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9146. time (get-text-property 0 'time fmt)
  9147. time2 (if (> (length time) 0)
  9148. ;; split-string removes trailing ...... if
  9149. ;; no end time given. First space
  9150. ;; separates time from date.
  9151. (concat " " (car (split-string time "\\.")))
  9152. nil)
  9153. text (get-text-property 0 'txt fmt)))
  9154. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9155. (org-agenda-insert-diary-as-top-level text)
  9156. (require 'org-datetree)
  9157. (org-datetree-find-date-create d1)
  9158. (org-agenda-insert-diary-make-new-entry text))
  9159. (org-insert-time-stamp (org-time-from-absolute
  9160. (calendar-absolute-from-gregorian d1))
  9161. nil nil nil nil time2))
  9162. (end-of-line 0))
  9163. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9164. ;; otherwise the indentation gets confused by the
  9165. ;; special meaning of 'block
  9166. (when (> (calendar-absolute-from-gregorian d1)
  9167. (calendar-absolute-from-gregorian d2))
  9168. (setq d1 (prog1 d2 (setq d2 d1))))
  9169. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9170. (org-agenda-insert-diary-as-top-level text)
  9171. (require 'org-datetree)
  9172. (org-datetree-find-date-create d1)
  9173. (org-agenda-insert-diary-make-new-entry text))
  9174. (org-insert-time-stamp (org-time-from-absolute
  9175. (calendar-absolute-from-gregorian d1)))
  9176. (insert "--")
  9177. (org-insert-time-stamp (org-time-from-absolute
  9178. (calendar-absolute-from-gregorian d2)))
  9179. (end-of-line 0)))
  9180. (if (string-match "\\S-" text)
  9181. (progn
  9182. (set-window-configuration cw)
  9183. (message "%s entry added to %s"
  9184. (capitalize (symbol-name type))
  9185. (abbreviate-file-name org-agenda-diary-file)))
  9186. (org-reveal t)
  9187. (message "Please finish entry here"))))
  9188. (defun org-agenda-insert-diary-as-top-level (text)
  9189. "Make new entry as a top-level entry at the end of the file.
  9190. Add TEXT as headline, and position the cursor in the second line so that
  9191. a timestamp can be added there."
  9192. (widen)
  9193. (goto-char (point-max))
  9194. (unless (bolp) (insert "\n"))
  9195. (org-insert-heading nil t t)
  9196. (insert text)
  9197. (org-end-of-meta-data)
  9198. (unless (bolp) (insert "\n"))
  9199. (when org-adapt-indentation (indent-to-column 2)))
  9200. (defun org-agenda-insert-diary-make-new-entry (text)
  9201. "Make a new entry with TEXT as a child of the current subtree.
  9202. Position the point in the heading's first body line so that
  9203. a timestamp can be added there."
  9204. (cond
  9205. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9206. (end-of-line)
  9207. (org-insert-heading '(4) t)
  9208. (org-do-demote))
  9209. (t
  9210. (outline-next-heading)
  9211. (org-back-over-empty-lines)
  9212. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9213. (org-insert-heading nil t)
  9214. (org-do-demote)))
  9215. (let ((col (current-column)))
  9216. (insert text)
  9217. (org-end-of-meta-data)
  9218. ;; Ensure point is left on a blank line, at proper indentation.
  9219. (unless (bolp) (insert "\n"))
  9220. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9221. (when org-adapt-indentation (indent-to-column col)))
  9222. (org-show-set-visibility 'lineage))
  9223. (defun org-agenda-diary-entry ()
  9224. "Make a diary entry, like the `i' command from the calendar.
  9225. All the standard commands work: block, weekly etc.
  9226. When `org-agenda-diary-file' points to a file,
  9227. `org-agenda-diary-entry-in-org-file' is called instead to create
  9228. entries in that Org file."
  9229. (interactive)
  9230. (if (not (eq org-agenda-diary-file 'diary-file))
  9231. (org-agenda-diary-entry-in-org-file)
  9232. (require 'diary-lib)
  9233. (let* ((char (read-char-exclusive
  9234. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9235. [a]nniversary [b]lock [c]yclic"))
  9236. (cmd (cdr (assoc char
  9237. '((?d . diary-insert-entry)
  9238. (?w . diary-insert-weekly-entry)
  9239. (?m . diary-insert-monthly-entry)
  9240. (?y . diary-insert-yearly-entry)
  9241. (?a . diary-insert-anniversary-entry)
  9242. (?b . diary-insert-block-entry)
  9243. (?c . diary-insert-cyclic-entry)))))
  9244. (oldf (symbol-function 'calendar-cursor-to-date))
  9245. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9246. (point (point))
  9247. (mark (or (mark t) (point))))
  9248. (unless cmd
  9249. (user-error "No command associated with <%c>" char))
  9250. (unless (and (get-text-property point 'day)
  9251. (or (not (equal ?b char))
  9252. (get-text-property mark 'day)))
  9253. (user-error "Don't know which date to use for diary entry"))
  9254. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9255. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9256. (let ((calendar-mark-ring
  9257. (list (calendar-gregorian-from-absolute
  9258. (or (get-text-property mark 'day)
  9259. (get-text-property point 'day))))))
  9260. (unwind-protect
  9261. (progn
  9262. (fset 'calendar-cursor-to-date
  9263. (lambda (&optional error dummy)
  9264. (calendar-gregorian-from-absolute
  9265. (get-text-property point 'day))))
  9266. (call-interactively cmd))
  9267. (fset 'calendar-cursor-to-date oldf))))))
  9268. (defun org-agenda-execute-calendar-command (cmd)
  9269. "Execute a calendar command from the agenda with date from cursor."
  9270. (org-agenda-check-type t 'agenda)
  9271. (require 'diary-lib)
  9272. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9273. (user-error "Don't know which date to use for the calendar command"))
  9274. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9275. (point (point))
  9276. (date (calendar-gregorian-from-absolute
  9277. (get-text-property point 'day)))
  9278. ;; the following 2 vars are needed in the calendar
  9279. (displayed-month (car date))
  9280. (displayed-year (nth 2 date)))
  9281. (unwind-protect
  9282. (progn
  9283. (fset 'calendar-cursor-to-date
  9284. (lambda (&optional error dummy)
  9285. (calendar-gregorian-from-absolute
  9286. (get-text-property point 'day))))
  9287. (call-interactively cmd))
  9288. (fset 'calendar-cursor-to-date oldf))))
  9289. (defun org-agenda-phases-of-moon ()
  9290. "Display the phases of the moon for the 3 months around the cursor date."
  9291. (interactive)
  9292. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9293. (defun org-agenda-holidays ()
  9294. "Display the holidays for the 3 months around the cursor date."
  9295. (interactive)
  9296. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9297. (defvar calendar-longitude) ; defined in calendar.el
  9298. (defvar calendar-latitude) ; defined in calendar.el
  9299. (defvar calendar-location-name) ; defined in calendar.el
  9300. (defun org-agenda-sunrise-sunset (arg)
  9301. "Display sunrise and sunset for the cursor date.
  9302. Latitude and longitude can be specified with the variables
  9303. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9304. argument, latitude and longitude will be prompted for."
  9305. (interactive "P")
  9306. (require 'solar)
  9307. (let ((calendar-longitude (if arg nil calendar-longitude))
  9308. (calendar-latitude (if arg nil calendar-latitude))
  9309. (calendar-location-name
  9310. (if arg "the given coordinates" calendar-location-name)))
  9311. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9312. (defun org-agenda-goto-calendar ()
  9313. "Open the Emacs calendar with the date at the cursor."
  9314. (interactive)
  9315. (org-agenda-check-type t 'agenda)
  9316. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9317. (user-error "Don't know which date to open in calendar")))
  9318. (date (calendar-gregorian-from-absolute day))
  9319. (calendar-move-hook nil)
  9320. (calendar-view-holidays-initially-flag nil)
  9321. (calendar-view-diary-initially-flag nil))
  9322. (calendar)
  9323. (calendar-goto-date date)))
  9324. ;;;###autoload
  9325. (defun org-calendar-goto-agenda ()
  9326. "Compute the Org agenda for the calendar date displayed at the cursor.
  9327. This is a command that has to be installed in `calendar-mode-map'."
  9328. (interactive)
  9329. ;; Temporarily disable sticky agenda since user clearly wants to
  9330. ;; refresh view anyway.
  9331. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9332. (org-agenda-sticky nil))
  9333. (org-agenda-list nil (calendar-absolute-from-gregorian
  9334. (calendar-cursor-to-date))
  9335. nil)))
  9336. (defun org-agenda-convert-date ()
  9337. (interactive)
  9338. (org-agenda-check-type t 'agenda)
  9339. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9340. date s)
  9341. (unless day
  9342. (user-error "Don't know which date to convert"))
  9343. (setq date (calendar-gregorian-from-absolute day))
  9344. (setq s (concat
  9345. "Gregorian: " (calendar-date-string date) "\n"
  9346. "ISO: " (calendar-iso-date-string date) "\n"
  9347. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9348. "Julian: " (calendar-julian-date-string date) "\n"
  9349. "Astron. JD: " (calendar-astro-date-string date)
  9350. " (Julian date number at noon UTC)\n"
  9351. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9352. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9353. "French: " (calendar-french-date-string date) "\n"
  9354. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9355. "Mayan: " (calendar-mayan-date-string date) "\n"
  9356. "Coptic: " (calendar-coptic-date-string date) "\n"
  9357. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9358. "Persian: " (calendar-persian-date-string date) "\n"
  9359. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9360. (with-output-to-temp-buffer "*Dates*"
  9361. (princ s))
  9362. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9363. ;;; Bulk commands
  9364. (defun org-agenda-bulk-marked-p ()
  9365. "Non-nil when current entry is marked for bulk action."
  9366. (eq (get-char-property (point-at-bol) 'type)
  9367. 'org-marked-entry-overlay))
  9368. (defun org-agenda-bulk-mark (&optional arg)
  9369. "Mark entries for future bulk action.
  9370. When ARG is nil or one and region is not active then mark the
  9371. entry at point.
  9372. When ARG is nil or one and region is active then mark the entries
  9373. in the region.
  9374. When ARG is greater than one mark ARG lines."
  9375. (interactive "p")
  9376. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9377. (setq arg (count-lines (region-beginning) (region-end)))
  9378. (goto-char (region-beginning))
  9379. (deactivate-mark))
  9380. (dotimes (i (or arg 1))
  9381. (unless (org-get-at-bol 'org-agenda-diary-link)
  9382. (let* ((m (org-get-at-bol 'org-hd-marker))
  9383. ov)
  9384. (unless (org-agenda-bulk-marked-p)
  9385. (unless m (user-error "Nothing to mark at point"))
  9386. (push m org-agenda-bulk-marked-entries)
  9387. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9388. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9389. (org-get-todo-face "TODO")
  9390. 'evaporate)
  9391. (overlay-put ov 'type 'org-marked-entry-overlay))
  9392. (end-of-line 1)
  9393. (or (ignore-errors
  9394. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9395. (beginning-of-line 2))
  9396. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9397. (beginning-of-line 2)))))
  9398. (message "%d entries marked for bulk action"
  9399. (length org-agenda-bulk-marked-entries)))
  9400. (defun org-agenda-bulk-mark-all ()
  9401. "Mark all entries for future agenda bulk action."
  9402. (interactive)
  9403. (org-agenda-bulk-mark-regexp "."))
  9404. (defun org-agenda-bulk-mark-regexp (regexp)
  9405. "Mark entries matching REGEXP for future agenda bulk action."
  9406. (interactive "sMark entries matching regexp: ")
  9407. (let ((entries-marked 0) txt-at-point)
  9408. (save-excursion
  9409. (goto-char (point-min))
  9410. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9411. (while (and (re-search-forward regexp nil t)
  9412. (setq txt-at-point (get-text-property (point) 'txt)))
  9413. (if (get-char-property (point) 'invisible)
  9414. (beginning-of-line 2)
  9415. (when (string-match regexp txt-at-point)
  9416. (setq entries-marked (1+ entries-marked))
  9417. (call-interactively 'org-agenda-bulk-mark)))))
  9418. (unless entries-marked
  9419. (message "No entry matching this regexp."))))
  9420. (defun org-agenda-bulk-unmark (&optional arg)
  9421. "Unmark the entry at point for future bulk action."
  9422. (interactive "P")
  9423. (if arg
  9424. (org-agenda-bulk-unmark-all)
  9425. (cond ((org-agenda-bulk-marked-p)
  9426. (org-agenda-bulk-remove-overlays
  9427. (point-at-bol) (+ 2 (point-at-bol)))
  9428. (setq org-agenda-bulk-marked-entries
  9429. (delete (org-get-at-bol 'org-hd-marker)
  9430. org-agenda-bulk-marked-entries))
  9431. (end-of-line 1)
  9432. (or (ignore-errors
  9433. (goto-char (next-single-property-change (point) 'txt)))
  9434. (beginning-of-line 2))
  9435. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9436. (beginning-of-line 2))
  9437. (message "%d entries left marked for bulk action"
  9438. (length org-agenda-bulk-marked-entries)))
  9439. (t (message "No entry to unmark here")))))
  9440. (defun org-agenda-bulk-toggle-all ()
  9441. "Toggle all marks for bulk action."
  9442. (interactive)
  9443. (save-excursion
  9444. (goto-char (point-min))
  9445. (while (ignore-errors
  9446. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9447. (org-agenda-bulk-toggle))))
  9448. (defun org-agenda-bulk-toggle ()
  9449. "Toggle the mark at point for bulk action."
  9450. (interactive)
  9451. (if (org-agenda-bulk-marked-p)
  9452. (org-agenda-bulk-unmark)
  9453. (org-agenda-bulk-mark)))
  9454. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9455. "Remove the mark overlays between BEG and END in the agenda buffer.
  9456. BEG and END default to the buffer limits.
  9457. This only removes the overlays, it does not remove the markers
  9458. from the list in `org-agenda-bulk-marked-entries'."
  9459. (interactive)
  9460. (mapc (lambda (ov)
  9461. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9462. (delete-overlay ov)))
  9463. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9464. (defun org-agenda-bulk-unmark-all ()
  9465. "Remove all marks in the agenda buffer.
  9466. This will remove the markers and the overlays."
  9467. (interactive)
  9468. (if (null org-agenda-bulk-marked-entries)
  9469. (message "No entry to unmark")
  9470. (setq org-agenda-bulk-marked-entries nil)
  9471. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9472. (defcustom org-agenda-persistent-marks nil
  9473. "Non-nil means marked items will stay marked after a bulk action.
  9474. You can toggle this interactively by typing `p' when prompted for a
  9475. bulk action."
  9476. :group 'org-agenda
  9477. :version "24.1"
  9478. :type 'boolean)
  9479. (defun org-agenda-bulk-action (&optional arg)
  9480. "Execute an remote-editing action on all marked entries.
  9481. The prefix arg is passed through to the command if possible."
  9482. (interactive "P")
  9483. ;; When there is no mark, act on the agenda entry at point.
  9484. (if (not org-agenda-bulk-marked-entries)
  9485. (save-excursion (org-agenda-bulk-mark)))
  9486. (dolist (m org-agenda-bulk-marked-entries)
  9487. (unless (and (markerp m)
  9488. (marker-buffer m)
  9489. (buffer-live-p (marker-buffer m))
  9490. (marker-position m))
  9491. (user-error "Marker %s for bulk command is invalid" m)))
  9492. ;; Prompt for the bulk command.
  9493. (org-unlogged-message
  9494. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9495. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9496. "[S]catter [f]unction "
  9497. (and org-agenda-bulk-custom-functions
  9498. (format " Custom: [%s]"
  9499. (mapconcat (lambda (f) (char-to-string (car f)))
  9500. org-agenda-bulk-custom-functions
  9501. "")))))
  9502. (catch 'exit
  9503. (let* ((org-log-refile (if org-log-refile 'time nil))
  9504. (entries (reverse org-agenda-bulk-marked-entries))
  9505. (org-overriding-default-time
  9506. (and (get-text-property (point) 'org-agenda-date-header)
  9507. (org-get-cursor-date)))
  9508. redo-at-end
  9509. cmd)
  9510. (pcase (read-char-exclusive)
  9511. (?p
  9512. (let ((org-agenda-persistent-marks
  9513. (not org-agenda-persistent-marks)))
  9514. (org-agenda-bulk-action)
  9515. (throw 'exit nil)))
  9516. (?$
  9517. (setq cmd #'org-agenda-archive))
  9518. (?A
  9519. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9520. ((or ?r ?w)
  9521. (let ((refile-location
  9522. (org-refile-get-location
  9523. "Refile to"
  9524. (marker-buffer (car entries))
  9525. org-refile-allow-creating-parent-nodes)))
  9526. (when (nth 3 refile-location)
  9527. (setcar (nthcdr 3 refile-location)
  9528. (move-marker
  9529. (make-marker)
  9530. (nth 3 refile-location)
  9531. (or (get-file-buffer (nth 1 refile-location))
  9532. (find-buffer-visiting (nth 1 refile-location))
  9533. (error "This should not happen")))))
  9534. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9535. (setq redo-at-end t)))
  9536. (?t
  9537. (let ((state (completing-read
  9538. "Todo state: "
  9539. (with-current-buffer (marker-buffer (car entries))
  9540. (mapcar #'list org-todo-keywords-1)))))
  9541. (setq cmd `(lambda ()
  9542. (let ((org-inhibit-blocking t)
  9543. (org-inhibit-logging 'note))
  9544. (org-agenda-todo ,state))))))
  9545. ((and (or ?- ?+) action)
  9546. (let ((tag (completing-read
  9547. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9548. (with-current-buffer (marker-buffer (car entries))
  9549. (delq nil
  9550. (mapcar (lambda (x) (and (stringp (car x)) x))
  9551. org-current-tag-alist))))))
  9552. (setq cmd
  9553. `(lambda ()
  9554. (org-agenda-set-tags ,tag
  9555. ,(if (eq action ?+) ''on ''off))))))
  9556. ((and (or ?s ?d) c)
  9557. (let* ((schedule? (eq c ?s))
  9558. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9559. (time
  9560. (and (not arg)
  9561. (let ((new (org-read-date
  9562. nil nil nil prompt org-overriding-default-time)))
  9563. ;; A "double plus" answer applies to every
  9564. ;; scheduled time. Do not turn it into
  9565. ;; a fixed date yet.
  9566. (if (string-match-p "\\`[ \t]*\\+\\+"
  9567. org-read-date-final-answer)
  9568. org-read-date-final-answer
  9569. new)))))
  9570. ;; Make sure to not prompt for a note when bulk
  9571. ;; rescheduling/resetting deadline as Org cannot cope with
  9572. ;; simultaneous notes. Besides, it could be annoying
  9573. ;; depending on the number of marked items.
  9574. (setq cmd
  9575. (if schedule?
  9576. `(lambda ()
  9577. (let ((org-log-reschedule
  9578. (and org-log-reschedule 'time)))
  9579. (org-agenda-schedule arg ,time)))
  9580. `(lambda ()
  9581. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9582. (org-agenda-deadline arg ,time)))))))
  9583. (?S
  9584. (unless (org-agenda-check-type nil 'agenda 'todo)
  9585. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9586. (let ((days (read-number
  9587. (format "Scatter tasks across how many %sdays: "
  9588. (if arg "week" ""))
  9589. 7)))
  9590. (setq cmd
  9591. `(lambda ()
  9592. (let ((distance (1+ (random ,days))))
  9593. (when arg
  9594. (let ((dist distance)
  9595. (day-of-week
  9596. (calendar-day-of-week
  9597. (calendar-gregorian-from-absolute (org-today)))))
  9598. (dotimes (i (1+ dist))
  9599. (while (member day-of-week org-agenda-weekend-days)
  9600. (cl-incf distance)
  9601. (cl-incf day-of-week)
  9602. (when (= day-of-week 7)
  9603. (setq day-of-week 0)))
  9604. (cl-incf day-of-week)
  9605. (when (= day-of-week 7)
  9606. (setq day-of-week 0)))))
  9607. ;; Silently fail when try to replan a sexp entry.
  9608. (ignore-errors
  9609. (let* ((date (calendar-gregorian-from-absolute
  9610. (+ (org-today) distance)))
  9611. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9612. (nth 2 date))))
  9613. (org-agenda-schedule nil time))))))))
  9614. (?f
  9615. (setq cmd
  9616. (intern
  9617. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9618. (action
  9619. (pcase (assoc action org-agenda-bulk-custom-functions)
  9620. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9621. (_ (user-error "Invalid bulk action: %c" action)))))
  9622. ;; Sort the markers, to make sure that parents are handled
  9623. ;; before children.
  9624. (setq entries (sort entries
  9625. (lambda (a b)
  9626. (cond
  9627. ((eq (marker-buffer a) (marker-buffer b))
  9628. (< (marker-position a) (marker-position b)))
  9629. (t
  9630. (string< (buffer-name (marker-buffer a))
  9631. (buffer-name (marker-buffer b))))))))
  9632. ;; Now loop over all markers and apply CMD.
  9633. (let ((processed 0)
  9634. (skipped 0))
  9635. (dolist (e entries)
  9636. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9637. (if (not pos)
  9638. (progn (message "Skipping removed entry at %s" e)
  9639. (cl-incf skipped))
  9640. (goto-char pos)
  9641. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9642. ;; `post-command-hook' is not run yet. We make sure any
  9643. ;; pending log note is processed.
  9644. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9645. (memq 'org-add-log-note post-command-hook))
  9646. (org-add-log-note))
  9647. (cl-incf processed))))
  9648. (when redo-at-end (org-agenda-redo))
  9649. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9650. (message "Acted on %d entries%s%s"
  9651. processed
  9652. (if (= skipped 0)
  9653. ""
  9654. (format ", skipped %d (disappeared before their turn)"
  9655. skipped))
  9656. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9657. (defun org-agenda-capture (&optional with-time)
  9658. "Call `org-capture' with the date at point.
  9659. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9660. current HH:MM time."
  9661. (interactive "P")
  9662. (if (not (eq major-mode 'org-agenda-mode))
  9663. (user-error "You cannot do this outside of agenda buffers")
  9664. (let ((org-overriding-default-time
  9665. (org-get-cursor-date (equal with-time 1))))
  9666. (call-interactively 'org-capture))))
  9667. ;;; Dragging agenda lines forward/backward
  9668. (defun org-agenda-reapply-filters ()
  9669. "Re-apply all agenda filters."
  9670. (mapcar
  9671. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9672. `((,org-agenda-tag-filter tag)
  9673. (,org-agenda-category-filter category)
  9674. (,org-agenda-regexp-filter regexp)
  9675. (,org-agenda-effort-filter effort)
  9676. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9677. (,(get 'org-agenda-category-filter :preset-filter) category)
  9678. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9679. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9680. (defun org-agenda-drag-line-forward (arg &optional backward)
  9681. "Drag an agenda line forward by ARG lines.
  9682. When the optional argument `backward' is non-nil, move backward."
  9683. (interactive "p")
  9684. (let ((inhibit-read-only t) lst line)
  9685. (if (or (not (get-text-property (point) 'txt))
  9686. (save-excursion
  9687. (dotimes (n arg)
  9688. (move-beginning-of-line (if backward 0 2))
  9689. (push (not (get-text-property (point) 'txt)) lst))
  9690. (delq nil lst)))
  9691. (message "Cannot move line forward")
  9692. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9693. (move-beginning-of-line 1)
  9694. (setq line (buffer-substring (point) end))
  9695. (delete-region (point) end)
  9696. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9697. (insert line)
  9698. (org-agenda-reapply-filters)
  9699. (org-agenda-mark-clocking-task)
  9700. (move-beginning-of-line 0)))))
  9701. (defun org-agenda-drag-line-backward (arg)
  9702. "Drag an agenda line backward by ARG lines."
  9703. (interactive "p")
  9704. (org-agenda-drag-line-forward arg t))
  9705. ;;; Flagging notes
  9706. (defun org-agenda-show-the-flagging-note ()
  9707. "Display the flagging note in the other window.
  9708. When called a second time in direct sequence, offer to remove the FLAGGING
  9709. tag and (if present) the flagging note."
  9710. (interactive)
  9711. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9712. (win (selected-window))
  9713. note heading newhead)
  9714. (unless hdmarker
  9715. (user-error "No linked entry at point"))
  9716. (if (and (eq this-command last-command)
  9717. (y-or-n-p "Unflag and remove any flagging note? "))
  9718. (progn
  9719. (org-agenda-remove-flag hdmarker)
  9720. (let ((win (get-buffer-window "*Flagging Note*")))
  9721. (and win (delete-window win)))
  9722. (message "Entry unflagged"))
  9723. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9724. (unless note
  9725. (user-error "No flagging note"))
  9726. (org-kill-new note)
  9727. (org-switch-to-buffer-other-window "*Flagging Note*")
  9728. (erase-buffer)
  9729. (insert note)
  9730. (goto-char (point-min))
  9731. (while (re-search-forward "\\\\n" nil t)
  9732. (replace-match "\n" t t))
  9733. (goto-char (point-min))
  9734. (select-window win)
  9735. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9736. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9737. tag and note")))))
  9738. (defun org-agenda-remove-flag (marker)
  9739. "Remove the FLAGGED tag and any flagging note in the entry."
  9740. (let (newhead)
  9741. (org-with-point-at marker
  9742. (org-toggle-tag "FLAGGED" 'off)
  9743. (org-entry-delete nil "THEFLAGGINGNOTE")
  9744. (setq newhead (org-get-heading)))
  9745. (org-agenda-change-all-lines newhead marker)
  9746. (message "Entry unflagged")))
  9747. (defun org-agenda-get-any-marker (&optional pos)
  9748. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9749. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9750. ;;; Appointment reminders
  9751. (defvar appt-time-msg-list) ; defined in appt.el
  9752. ;;;###autoload
  9753. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9754. "Activate appointments found in `org-agenda-files'.
  9755. With a `\\[universal-argument]' prefix, refresh the list of \
  9756. appointments.
  9757. If FILTER is t, interactively prompt the user for a regular
  9758. expression, and filter out entries that don't match it.
  9759. If FILTER is a string, use this string as a regular expression
  9760. for filtering entries out.
  9761. If FILTER is a function, filter out entries against which
  9762. calling the function returns nil. This function takes one
  9763. argument: an entry from `org-agenda-get-day-entries'.
  9764. FILTER can also be an alist with the car of each cell being
  9765. either `headline' or `category'. For example:
  9766. \\='((headline \"IMPORTANT\")
  9767. (category \"Work\"))
  9768. will only add headlines containing IMPORTANT or headlines
  9769. belonging to the \"Work\" category.
  9770. ARGS are symbols indicating what kind of entries to consider.
  9771. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9772. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9773. and :timestamp entries. See the docstring of `org-diary' for
  9774. details and examples.
  9775. If an entry has a APPT_WARNTIME property, its value will be used
  9776. to override `appt-message-warning-time'."
  9777. (interactive "P")
  9778. (when refresh (setq appt-time-msg-list nil))
  9779. (when (eq filter t)
  9780. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9781. (let* ((cnt 0) ; count added events
  9782. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9783. (org-agenda-new-buffers nil)
  9784. (org-deadline-warning-days 0)
  9785. ;; Do not use `org-today' here because appt only takes
  9786. ;; time and without date as argument, so it may pass wrong
  9787. ;; information otherwise
  9788. (today (org-date-to-gregorian
  9789. (time-to-days nil)))
  9790. (org-agenda-restrict nil)
  9791. (files (org-agenda-files 'unrestricted)) entries file
  9792. (org-agenda-buffer nil))
  9793. ;; Get all entries which may contain an appt
  9794. (org-agenda-prepare-buffers files)
  9795. (while (setq file (pop files))
  9796. (setq entries
  9797. (delq nil
  9798. (append entries
  9799. (apply 'org-agenda-get-day-entries
  9800. file today scope)))))
  9801. ;; Map through entries and find if we should filter them out
  9802. (mapc
  9803. (lambda (x)
  9804. (let* ((evt (org-trim
  9805. (replace-regexp-in-string
  9806. org-link-bracket-re "\\2"
  9807. (or (get-text-property 1 'txt x) ""))))
  9808. (cat (get-text-property (1- (length x)) 'org-category x))
  9809. (tod (get-text-property 1 'time-of-day x))
  9810. (ok (or (null filter)
  9811. (and (stringp filter) (string-match filter evt))
  9812. (and (functionp filter) (funcall filter x))
  9813. (and (listp filter)
  9814. (let ((cat-filter (cadr (assq 'category filter)))
  9815. (evt-filter (cadr (assq 'headline filter))))
  9816. (or (and (stringp cat-filter)
  9817. (string-match cat-filter cat))
  9818. (and (stringp evt-filter)
  9819. (string-match evt-filter evt)))))))
  9820. (wrn (get-text-property 1 'warntime x)))
  9821. ;; FIXME: Shall we remove text-properties for the appt text?
  9822. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9823. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9824. (setq tod (concat "00" (number-to-string tod)))
  9825. (setq tod (when (string-match
  9826. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9827. (concat (match-string 1 tod) ":"
  9828. (match-string 2 tod))))
  9829. (when (appt-add tod evt wrn)
  9830. (setq cnt (1+ cnt))))))
  9831. entries)
  9832. (org-release-buffers org-agenda-new-buffers)
  9833. (if (eq cnt 0)
  9834. (message "No event to add")
  9835. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9836. (defun org-agenda-today-p (date)
  9837. "Non-nil when DATE means today.
  9838. DATE is either a list of the form (month day year) or a number of
  9839. days as returned by `calendar-absolute-from-gregorian' or
  9840. `org-today'. This function considers `org-extend-today-until'
  9841. when defining today."
  9842. (eq (org-today)
  9843. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9844. (defun org-agenda-todo-yesterday (&optional arg)
  9845. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9846. (interactive "P")
  9847. (let* ((org-use-effective-time t)
  9848. (hour (nth 2 (decode-time (org-current-time))))
  9849. (org-extend-today-until (1+ hour)))
  9850. (org-agenda-todo arg)))
  9851. (provide 'org-agenda)
  9852. ;;; org-agenda.el ends here