org-agenda.el 393 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'org)
  42. (require 'org-macs)
  43. (eval-when-compile
  44. (require 'cl))
  45. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-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-pop-to-buffer-same-window "org-compat"
  75. (&optional buffer-or-name norecord label))
  76. (declare-function org-agenda-columns "org-colview" ())
  77. (declare-function org-add-archive-files "org-archive" (files))
  78. (declare-function org-capture "org-capture" (&optional goto keys))
  79. (defvar calendar-mode-map) ; defined in calendar.el
  80. (defvar org-clock-current-task nil) ; defined in org-clock.el
  81. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  82. (defvar org-habit-show-habits) ; defined in org-habit.el
  83. (defvar org-habit-show-habits-only-for-today)
  84. (defvar org-habit-show-all-today)
  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. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  90. (org-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. (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  234. (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  235. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  236. "List of types searched for when creating the daily/weekly agenda.
  237. This variable is a list of symbols that controls the types of
  238. items that appear in the daily/weekly agenda. Allowed symbols in this
  239. list are are
  240. :timestamp List items containing a date stamp or date range matching
  241. the selected date. This includes sexp entries in angular
  242. brackets.
  243. :sexp List entries resulting from plain diary-like sexps.
  244. :deadline List deadline due on that date. When the date is today,
  245. also list any deadlines past due, or due within
  246. `org-deadline-warning-days'. `:deadline' must appear before
  247. `:scheduled' if the setting of
  248. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  249. any effect.
  250. :deadline* Same as above, but only include the deadline if it has an
  251. hour specification as [h]h:mm.
  252. :scheduled List all items which are scheduled for the given date.
  253. The diary for *today* also contains items which were
  254. scheduled earlier and are not yet marked DONE.
  255. :scheduled* Same as above, but only include the scheduled item if it
  256. has an hour specification as [h]h:mm.
  257. By default, all four non-starred types are turned on.
  258. When :scheduled* or :deadline* are included, :schedule or :deadline
  259. will be ignored.
  260. Never set this variable globally using `setq', because then it
  261. will apply to all future agenda commands. Instead, bind it with
  262. `let' to scope it dynamically into the agenda-constructing
  263. command. A good way to set it is through options in
  264. `org-agenda-custom-commands'. For a more flexible (though
  265. somewhat less efficient) way of determining what is included in
  266. the daily/weekly agenda, see `org-agenda-skip-function'.")
  267. (defconst org-agenda-custom-commands-local-options
  268. `(repeat :tag "Local settings for this command. Remember to quote values"
  269. (choice :tag "Setting"
  270. (list :tag "Heading for this block"
  271. (const org-agenda-overriding-header)
  272. (string :tag "Headline"))
  273. (list :tag "Files to be searched"
  274. (const org-agenda-files)
  275. (list
  276. (const :format "" quote)
  277. (repeat (file))))
  278. (list :tag "Sorting strategy"
  279. (const org-agenda-sorting-strategy)
  280. (list
  281. (const :format "" quote)
  282. (repeat
  283. ,org-sorting-choice)))
  284. (list :tag "Prefix format"
  285. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  286. (string))
  287. (list :tag "Number of days in agenda"
  288. (const org-agenda-span)
  289. (choice (const :tag "Day" day)
  290. (const :tag "Week" week)
  291. (const :tag "Fortnight" fortnight)
  292. (const :tag "Month" month)
  293. (const :tag "Year" year)
  294. (integer :tag "Custom")))
  295. (list :tag "Fixed starting date"
  296. (const org-agenda-start-day)
  297. (string :value "2007-11-01"))
  298. (list :tag "Start on day of week"
  299. (const org-agenda-start-on-weekday)
  300. (choice :value 1
  301. (const :tag "Today" nil)
  302. (integer :tag "Weekday No.")))
  303. (list :tag "Include data from diary"
  304. (const org-agenda-include-diary)
  305. (boolean))
  306. (list :tag "Deadline Warning days"
  307. (const org-deadline-warning-days)
  308. (integer :value 1))
  309. (list :tag "Category filter preset"
  310. (const org-agenda-category-filter-preset)
  311. (list
  312. (const :format "" quote)
  313. (repeat
  314. (string :tag "+category or -category"))))
  315. (list :tag "Tags filter preset"
  316. (const org-agenda-tag-filter-preset)
  317. (list
  318. (const :format "" quote)
  319. (repeat
  320. (string :tag "+tag or -tag"))))
  321. (list :tag "Effort filter preset"
  322. (const org-agenda-effort-filter-preset)
  323. (list
  324. (const :format "" quote)
  325. (repeat
  326. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  327. (list :tag "Regexp filter preset"
  328. (const org-agenda-regexp-filter-preset)
  329. (list
  330. (const :format "" quote)
  331. (repeat
  332. (string :tag "+regexp or -regexp"))))
  333. (list :tag "Set daily/weekly entry types"
  334. (const org-agenda-entry-types)
  335. (list
  336. (const :format "" quote)
  337. (set :greedy t :value ,org-agenda-entry-types
  338. (const :deadline)
  339. (const :scheduled)
  340. (const :deadline*)
  341. (const :scheduled*)
  342. (const :timestamp)
  343. (const :sexp))))
  344. (list :tag "Standard skipping condition"
  345. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  346. (const org-agenda-skip-function)
  347. (list
  348. (const :format "" quote)
  349. (list
  350. (choice
  351. :tag "Skipping range"
  352. (const :tag "Skip entry" org-agenda-skip-entry-if)
  353. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  354. (repeat :inline t :tag "Conditions for skipping"
  355. (choice
  356. :tag "Condition type"
  357. (list :tag "Regexp matches" :inline t
  358. (const :format "" 'regexp)
  359. (regexp))
  360. (list :tag "Regexp does not match" :inline t
  361. (const :format "" 'notregexp)
  362. (regexp))
  363. (list :tag "TODO state is" :inline t
  364. (const 'todo)
  365. (choice
  366. (const :tag "Any not-done state" 'todo)
  367. (const :tag "Any done state" 'done)
  368. (const :tag "Any state" 'any)
  369. (list :tag "Keyword list"
  370. (const :format "" quote)
  371. (repeat (string :tag "Keyword")))))
  372. (list :tag "TODO state is not" :inline t
  373. (const 'nottodo)
  374. (choice
  375. (const :tag "Any not-done state" 'todo)
  376. (const :tag "Any done state" 'done)
  377. (const :tag "Any state" 'any)
  378. (list :tag "Keyword list"
  379. (const :format "" quote)
  380. (repeat (string :tag "Keyword")))))
  381. (const :tag "scheduled" 'scheduled)
  382. (const :tag "not scheduled" 'notscheduled)
  383. (const :tag "deadline" 'deadline)
  384. (const :tag "no deadline" 'notdeadline)
  385. (const :tag "timestamp" 'timestamp)
  386. (const :tag "no timestamp" 'nottimestamp))))))
  387. (list :tag "Non-standard skipping condition"
  388. :value (org-agenda-skip-function)
  389. (const org-agenda-skip-function)
  390. (sexp :tag "Function or form (quoted!)"))
  391. (list :tag "Any variable"
  392. (variable :tag "Variable")
  393. (sexp :tag "Value (sexp)"))))
  394. "Selection of examples for agenda command settings.
  395. This will be spliced into the custom type of
  396. `org-agenda-custom-commands'.")
  397. (defcustom org-agenda-custom-commands
  398. '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
  399. "Custom commands for the agenda.
  400. These commands will be offered on the splash screen displayed by the
  401. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  402. (key desc type match settings files)
  403. key The key (one or more characters as a string) to be associated
  404. with the command.
  405. desc A description of the command, when omitted or nil, a default
  406. description is built using MATCH.
  407. type The command type, any of the following symbols:
  408. agenda The daily/weekly agenda.
  409. todo Entries with a specific TODO keyword, in all agenda files.
  410. search Entries containing search words entry or headline.
  411. tags Tags/Property/TODO match in all agenda files.
  412. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  413. todo-tree Sparse tree of specific TODO keyword in *current* file.
  414. tags-tree Sparse tree with all tags matches in *current* file.
  415. occur-tree Occur sparse tree for *current* file.
  416. ... A user-defined function.
  417. match What to search for:
  418. - a single keyword for TODO keyword searches
  419. - a tags match expression for tags searches
  420. - a word search expression for text searches.
  421. - a regular expression for occur searches
  422. For all other commands, this should be the empty string.
  423. settings A list of option settings, similar to that in a let form, so like
  424. this: ((opt1 val1) (opt2 val2) ...). The values will be
  425. evaluated at the moment of execution, so quote them when needed.
  426. files A list of files file to write the produced agenda buffer to
  427. with the command `org-store-agenda-views'.
  428. If a file name ends in \".html\", an HTML version of the buffer
  429. is written out. If it ends in \".ps\", a postscript version is
  430. produced. Otherwise, only the plain text is written to the file.
  431. You can also define a set of commands, to create a composite agenda buffer.
  432. In this case, an entry looks like this:
  433. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  434. where
  435. desc A description string to be displayed in the dispatcher menu.
  436. cmd An agenda command, similar to the above. However, tree commands
  437. are not allowed, but instead you can get agenda and global todo list.
  438. So valid commands for a set are:
  439. (agenda \"\" settings)
  440. (alltodo \"\" settings)
  441. (stuck \"\" settings)
  442. (todo \"match\" settings files)
  443. (search \"match\" settings files)
  444. (tags \"match\" settings files)
  445. (tags-todo \"match\" settings files)
  446. Each command can carry a list of options, and another set of options can be
  447. given for the whole set of commands. Individual command options take
  448. precedence over the general options.
  449. When using several characters as key to a command, the first characters
  450. are prefix commands. For the dispatcher to display useful information, you
  451. should provide a description for the prefix, like
  452. (setq org-agenda-custom-commands
  453. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  454. (\"hl\" tags \"+HOME+Lisa\")
  455. (\"hp\" tags \"+HOME+Peter\")
  456. (\"hk\" tags \"+HOME+Kim\")))"
  457. :group 'org-agenda-custom-commands
  458. :type `(repeat
  459. (choice :value ("x" "Describe command here" tags "" nil)
  460. (list :tag "Single command"
  461. (string :tag "Access Key(s) ")
  462. (option (string :tag "Description"))
  463. (choice
  464. (const :tag "Agenda" agenda)
  465. (const :tag "TODO list" alltodo)
  466. (const :tag "Search words" search)
  467. (const :tag "Stuck projects" stuck)
  468. (const :tag "Tags/Property match (all agenda files)" tags)
  469. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  470. (const :tag "TODO keyword search (all agenda files)" todo)
  471. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  472. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  473. (const :tag "Occur tree (current buffer)" occur-tree)
  474. (sexp :tag "Other, user-defined function"))
  475. (string :tag "Match (only for some commands)")
  476. ,org-agenda-custom-commands-local-options
  477. (option (repeat :tag "Export" (file :tag "Export to"))))
  478. (list :tag "Command series, all agenda files"
  479. (string :tag "Access Key(s)")
  480. (string :tag "Description ")
  481. (repeat :tag "Component"
  482. (choice
  483. (list :tag "Agenda"
  484. (const :format "" agenda)
  485. (const :tag "" :format "" "")
  486. ,org-agenda-custom-commands-local-options)
  487. (list :tag "TODO list (all keywords)"
  488. (const :format "" alltodo)
  489. (const :tag "" :format "" "")
  490. ,org-agenda-custom-commands-local-options)
  491. (list :tag "Search words"
  492. (const :format "" search)
  493. (string :tag "Match")
  494. ,org-agenda-custom-commands-local-options)
  495. (list :tag "Stuck projects"
  496. (const :format "" stuck)
  497. (const :tag "" :format "" "")
  498. ,org-agenda-custom-commands-local-options)
  499. (list :tag "Tags search"
  500. (const :format "" tags)
  501. (string :tag "Match")
  502. ,org-agenda-custom-commands-local-options)
  503. (list :tag "Tags search, TODO entries only"
  504. (const :format "" tags-todo)
  505. (string :tag "Match")
  506. ,org-agenda-custom-commands-local-options)
  507. (list :tag "TODO keyword search"
  508. (const :format "" todo)
  509. (string :tag "Match")
  510. ,org-agenda-custom-commands-local-options)
  511. (list :tag "Other, user-defined function"
  512. (symbol :tag "function")
  513. (string :tag "Match")
  514. ,org-agenda-custom-commands-local-options)))
  515. (repeat :tag "Settings for entire command set"
  516. (list (variable :tag "Any variable")
  517. (sexp :tag "Value")))
  518. (option (repeat :tag "Export" (file :tag "Export to"))))
  519. (cons :tag "Prefix key documentation"
  520. (string :tag "Access Key(s)")
  521. (string :tag "Description ")))))
  522. (defcustom org-agenda-query-register ?o
  523. "The register holding the current query string.
  524. The purpose of this is that if you construct a query string interactively,
  525. you can then use it to define a custom command."
  526. :group 'org-agenda-custom-commands
  527. :type 'character)
  528. (defcustom org-stuck-projects
  529. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  530. "How to identify stuck projects.
  531. This is a list of four items:
  532. 1. A tags/todo/property matcher string that is used to identify a project.
  533. See the manual for a description of tag and property searches.
  534. The entire tree below a headline matched by this is considered one project.
  535. 2. A list of TODO keywords identifying non-stuck projects.
  536. If the project subtree contains any headline with one of these todo
  537. keywords, the project is considered to be not stuck. If you specify
  538. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  539. 3. A list of tags identifying non-stuck projects.
  540. If the project subtree contains any headline with one of these tags,
  541. the project is considered to be not stuck. If you specify \"*\" as
  542. a tag, any tag will mark the project unstuck. Note that this is about
  543. the explicit presence of a tag somewhere in the subtree, inherited
  544. tags do not count here. If inherited tags make a project not stuck,
  545. use \"-TAG\" in the tags part of the matcher under (1.) above.
  546. 4. An arbitrary regular expression matching non-stuck projects.
  547. If the project turns out to be not stuck, search continues also in the
  548. subtree to see if any of the subtasks have project status.
  549. See also the variable `org-tags-match-list-sublevels' which applies
  550. to projects matched by this search as well.
  551. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  552. or `C-c a #' to produce the list."
  553. :group 'org-agenda-custom-commands
  554. :type '(list
  555. (string :tag "Tags/TODO match to identify a project")
  556. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  557. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  558. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  559. (defgroup org-agenda-skip nil
  560. "Options concerning skipping parts of agenda files."
  561. :tag "Org Agenda Skip"
  562. :group 'org-agenda)
  563. (defcustom org-agenda-skip-function-global nil
  564. "Function to be called at each match during agenda construction.
  565. If this function returns nil, the current match should not be skipped.
  566. If the function decided to skip an agenda match, is must return the
  567. buffer position from which the search should be continued.
  568. This may also be a Lisp form, which will be evaluated.
  569. This variable will be applied to every agenda match, including
  570. tags/property searches and TODO lists. So try to make the test function
  571. do its checking as efficiently as possible. To implement a skipping
  572. condition just for specific agenda commands, use the variable
  573. `org-agenda-skip-function' which can be set in the options section
  574. of custom agenda commands."
  575. :group 'org-agenda-skip
  576. :type 'sexp)
  577. (defgroup org-agenda-daily/weekly nil
  578. "Options concerning the daily/weekly agenda."
  579. :tag "Org Agenda Daily/Weekly"
  580. :group 'org-agenda)
  581. (defgroup org-agenda-todo-list nil
  582. "Options concerning the global todo list agenda view."
  583. :tag "Org Agenda Todo List"
  584. :group 'org-agenda)
  585. (defgroup org-agenda-match-view nil
  586. "Options concerning the general tags/property/todo match agenda view."
  587. :tag "Org Agenda Match View"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-search-view nil
  590. "Options concerning the search agenda view."
  591. :tag "Org Agenda Search View"
  592. :group 'org-agenda)
  593. (defvar org-agenda-archives-mode nil
  594. "Non-nil means the agenda will include archived items.
  595. If this is the symbol `trees', trees in the selected agenda scope
  596. that are marked with the ARCHIVE tag will be included anyway. When this is
  597. t, also all archive files associated with the current selection of agenda
  598. files will be included.")
  599. (defcustom org-agenda-restriction-lock-highlight-subtree t
  600. "Non-nil means highlight the whole subtree when restriction is active.
  601. Otherwise only highlight the headline. Highlighting the whole subtree is
  602. useful to ensure no edits happen beyond the restricted region."
  603. :group 'org-agenda
  604. :type 'boolean)
  605. (defcustom org-agenda-skip-comment-trees t
  606. "Non-nil means skip trees that start with the COMMENT keyword.
  607. When nil, these trees are also scanned by agenda commands."
  608. :group 'org-agenda-skip
  609. :type 'boolean)
  610. (defcustom org-agenda-todo-list-sublevels t
  611. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  612. When nil, the sublevels of a TODO entry are not checked, resulting in
  613. potentially much shorter TODO lists."
  614. :group 'org-agenda-skip
  615. :group 'org-agenda-todo-list
  616. :type 'boolean)
  617. (defcustom org-agenda-todo-ignore-with-date nil
  618. "Non-nil means don't show entries with a date in the global todo list.
  619. You can use this if you prefer to mark mere appointments with a TODO keyword,
  620. but don't want them to show up in the TODO list.
  621. When this is set, it also covers deadlines and scheduled items, the settings
  622. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  623. will be ignored.
  624. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  625. :group 'org-agenda-skip
  626. :group 'org-agenda-todo-list
  627. :type 'boolean)
  628. (defcustom org-agenda-todo-ignore-timestamp nil
  629. "Non-nil means don't show entries with a timestamp.
  630. This applies when creating the global todo list.
  631. Valid values are:
  632. past Don't show entries for today or in the past.
  633. future Don't show entries with a timestamp in the future.
  634. The idea behind this is that if it has a future
  635. timestamp, you don't want to think about it until the
  636. date.
  637. all Don't show any entries with a timestamp in the global todo list.
  638. The idea behind this is that by setting a timestamp, you
  639. have already \"taken care\" of this item.
  640. This variable can also have an integer as a value. If positive (N),
  641. todos with a timestamp N or more days in the future will be ignored. If
  642. negative (-N), todos with a timestamp N or more days in the past will be
  643. ignored. If 0, todos with a timestamp either today or in the future will
  644. be ignored. For example, a value of -1 will exclude todos with a
  645. timestamp in the past (yesterday or earlier), while a value of 7 will
  646. exclude todos with a timestamp a week or more in the future.
  647. See also `org-agenda-todo-ignore-with-date'.
  648. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  649. to make his option also apply to the tags-todo list."
  650. :group 'org-agenda-skip
  651. :group 'org-agenda-todo-list
  652. :version "24.1"
  653. :type '(choice
  654. (const :tag "Ignore future timestamp todos" future)
  655. (const :tag "Ignore past or present timestamp todos" past)
  656. (const :tag "Ignore all timestamp todos" all)
  657. (const :tag "Show timestamp todos" nil)
  658. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  659. (defcustom org-agenda-todo-ignore-scheduled nil
  660. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  661. This applies when creating the global todo list.
  662. Valid values are:
  663. past Don't show entries scheduled today or in the past.
  664. future Don't show entries scheduled in the future.
  665. The idea behind this is that by scheduling it, you don't want to
  666. think about it until the scheduled date.
  667. all Don't show any scheduled entries in the global todo list.
  668. The idea behind this is that by scheduling it, you have already
  669. \"taken care\" of this item.
  670. t Same as `all', for backward compatibility.
  671. This variable can also have an integer as a value. See
  672. `org-agenda-todo-ignore-timestamp' for more details.
  673. See also `org-agenda-todo-ignore-with-date'.
  674. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  675. to make his option also apply to the tags-todo list."
  676. :group 'org-agenda-skip
  677. :group 'org-agenda-todo-list
  678. :type '(choice
  679. (const :tag "Ignore future-scheduled todos" future)
  680. (const :tag "Ignore past- or present-scheduled todos" past)
  681. (const :tag "Ignore all scheduled todos" all)
  682. (const :tag "Ignore all scheduled todos (compatibility)" t)
  683. (const :tag "Show scheduled todos" nil)
  684. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  685. (defcustom org-agenda-todo-ignore-deadlines nil
  686. "Non-nil means ignore some deadline TODO items when making TODO list.
  687. There are different motivations for using different values, please think
  688. carefully when configuring this variable.
  689. This applies when creating the global todo list.
  690. Valid values are:
  691. near Don't show near deadline entries. A deadline is near when it is
  692. closer than `org-deadline-warning-days' days. The idea behind this
  693. is that such items will appear in the agenda anyway.
  694. far Don't show TODO entries where a deadline has been defined, but
  695. the deadline is not near. This is useful if you don't want to
  696. use the todo list to figure out what to do now.
  697. past Don't show entries with a deadline timestamp for today or in the past.
  698. future Don't show entries with a deadline timestamp in the future, not even
  699. when they become `near' ones. Use it with caution.
  700. all Ignore all TODO entries that do have a deadline.
  701. t Same as `near', for backward compatibility.
  702. This variable can also have an integer as a value. See
  703. `org-agenda-todo-ignore-timestamp' for more details.
  704. See also `org-agenda-todo-ignore-with-date'.
  705. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  706. to make his option also apply to the tags-todo list."
  707. :group 'org-agenda-skip
  708. :group 'org-agenda-todo-list
  709. :type '(choice
  710. (const :tag "Ignore near deadlines" near)
  711. (const :tag "Ignore near deadlines (compatibility)" t)
  712. (const :tag "Ignore far deadlines" far)
  713. (const :tag "Ignore all TODOs with a deadlines" all)
  714. (const :tag "Show all TODOs, even if they have a deadline" nil)
  715. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  716. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  717. "Time unit to use when possibly ignoring an agenda item.
  718. See the docstring of various `org-agenda-todo-ignore-*' options.
  719. The default is to compare time stamps using days. An item is thus
  720. considered to be in the future if it is at least one day after today.
  721. Non-nil means to compare time stamps using seconds. An item is then
  722. considered future if it has a time value later than current time."
  723. :group 'org-agenda-skip
  724. :group 'org-agenda-todo-list
  725. :version "24.4"
  726. :package-version '(Org . "8.0")
  727. :type '(choice
  728. (const :tag "Compare time with days" nil)
  729. (const :tag "Compare time with seconds" t)))
  730. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  731. "Non-nil means honor todo-list ignores options also in tags-todo search.
  732. The variables
  733. `org-agenda-todo-ignore-with-date',
  734. `org-agenda-todo-ignore-timestamp',
  735. `org-agenda-todo-ignore-scheduled',
  736. `org-agenda-todo-ignore-deadlines'
  737. make the global TODO list skip entries that have time stamps of certain
  738. kinds. If this option is set, the same options will also apply for the
  739. tags-todo search, which is the general tags/property matcher
  740. restricted to unfinished TODO entries only."
  741. :group 'org-agenda-skip
  742. :group 'org-agenda-todo-list
  743. :group 'org-agenda-match-view
  744. :type 'boolean)
  745. (defcustom org-agenda-skip-scheduled-if-done nil
  746. "Non-nil means don't show scheduled items in agenda when they are done.
  747. This is relevant for the daily/weekly agenda, not for the TODO list. And
  748. it applies only to the actual date of the scheduling. Warnings about
  749. an item with a past scheduling dates are always turned off when the item
  750. is DONE."
  751. :group 'org-agenda-skip
  752. :group 'org-agenda-daily/weekly
  753. :type 'boolean)
  754. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  755. "Non-nil means skip scheduling line if same entry shows because of deadline.
  756. In the agenda of today, an entry can show up multiple times
  757. because it is both scheduled and has a nearby deadline, and maybe
  758. a plain time stamp as well.
  759. When this variable is nil, the entry will be shown several times.
  760. When set to t, then only the deadline is shown and the fact that
  761. the entry is scheduled today or was scheduled previously is not
  762. shown.
  763. When set to the symbol `not-today', skip scheduled previously,
  764. but not scheduled today.
  765. When set to the symbol `repeated-after-deadline', skip scheduled
  766. items if they are repeated beyond the current deadline."
  767. :group 'org-agenda-skip
  768. :group 'org-agenda-daily/weekly
  769. :type '(choice
  770. (const :tag "Never" nil)
  771. (const :tag "Always" t)
  772. (const :tag "Not when scheduled today" not-today)
  773. (const :tag "When repeated past deadline" repeated-after-deadline)))
  774. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  775. "Non-nil means skip timestamp line if same entry shows because of deadline.
  776. In the agenda of today, an entry can show up multiple times
  777. because it has both a plain timestamp and has a nearby deadline.
  778. When this variable is t, then only the deadline is shown and the
  779. fact that the entry has a timestamp for or including today is not
  780. shown. When this variable is nil, the entry will be shown
  781. several times."
  782. :group 'org-agenda-skip
  783. :group 'org-agenda-daily/weekly
  784. :version "24.1"
  785. :type '(choice
  786. (const :tag "Never" nil)
  787. (const :tag "Always" t)))
  788. (defcustom org-agenda-skip-deadline-if-done nil
  789. "Non-nil means don't show deadlines when the corresponding item is done.
  790. When nil, the deadline is still shown and should give you a happy feeling.
  791. This is relevant for the daily/weekly agenda. And it applied only to the
  792. actually date of the deadline. Warnings about approaching and past-due
  793. deadlines are always turned off when the item is DONE."
  794. :group 'org-agenda-skip
  795. :group 'org-agenda-daily/weekly
  796. :type 'boolean)
  797. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  798. "Non-nil means skip deadline prewarning when entry is also scheduled.
  799. This will apply on all days where a prewarning for the deadline would
  800. be shown, but not at the day when the entry is actually due. On that day,
  801. the deadline will be shown anyway.
  802. This variable may be set to nil, t, the symbol `pre-scheduled',
  803. or a number which will then give the number of days before the actual
  804. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  805. eliminates the deadline prewarning only prior to the scheduled date.
  806. This can be used in a workflow where the first showing of the deadline will
  807. trigger you to schedule it, and then you don't want to be reminded of it
  808. because you will take care of it on the day when scheduled."
  809. :group 'org-agenda-skip
  810. :group 'org-agenda-daily/weekly
  811. :version "24.1"
  812. :type '(choice
  813. (const :tag "Always show prewarning" nil)
  814. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  815. (const :tag "Remove prewarning if entry is scheduled" t)
  816. (integer :tag "Restart prewarning N days before deadline")))
  817. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  818. "Non-nil means skip scheduled delay when entry also has a deadline.
  819. This variable may be set to nil, t, the symbol `post-deadline',
  820. or a number which will then give the number of days after the actual
  821. scheduled date when the delay should expire. The symbol `post-deadline'
  822. eliminates the schedule delay when the date is posterior to the deadline."
  823. :group 'org-agenda-skip
  824. :group 'org-agenda-daily/weekly
  825. :version "24.4"
  826. :package-version '(Org . "8.0")
  827. :type '(choice
  828. (const :tag "Always honor delay" nil)
  829. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  830. (const :tag "Ignore delay if entry has a deadline" t)
  831. (integer :tag "Honor delay up until N days after the scheduled date")))
  832. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  833. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  834. When non-nil, after the search for timestamps has matched once in an
  835. entry, the rest of the entry will not be searched."
  836. :group 'org-agenda-skip
  837. :type 'boolean)
  838. (defcustom org-agenda-skip-timestamp-if-done nil
  839. "Non-nil means don't select item by timestamp or -range if it is DONE."
  840. :group 'org-agenda-skip
  841. :group 'org-agenda-daily/weekly
  842. :type 'boolean)
  843. (defcustom org-agenda-dim-blocked-tasks t
  844. "Non-nil means dim blocked tasks in the agenda display.
  845. This causes some overhead during agenda construction, but if you
  846. have turned on `org-enforce-todo-dependencies',
  847. `org-enforce-todo-checkbox-dependencies', or any other blocking
  848. mechanism, this will create useful feedback in the agenda.
  849. Instead of t, this variable can also have the value `invisible'.
  850. Then blocked tasks will be invisible and only become visible when
  851. they become unblocked. An exemption to this behavior is when a task is
  852. blocked because of unchecked checkboxes below it. Since checkboxes do
  853. not show up in the agenda views, making this task invisible you remove any
  854. trace from agenda views that there is something to do. Therefore, a task
  855. that is blocked because of checkboxes will never be made invisible, it
  856. will only be dimmed."
  857. :group 'org-agenda-daily/weekly
  858. :group 'org-agenda-todo-list
  859. :version "24.3"
  860. :type '(choice
  861. (const :tag "Do not dim" nil)
  862. (const :tag "Dim to a gray face" t)
  863. (const :tag "Make invisible" invisible)))
  864. (defcustom org-timeline-show-empty-dates 3
  865. "Non-nil means `org-timeline' also shows dates without an entry.
  866. When nil, only the days which actually have entries are shown.
  867. When t, all days between the first and the last date are shown.
  868. When an integer, show also empty dates, but if there is a gap of more than
  869. N days, just insert a special line indicating the size of the gap."
  870. :group 'org-agenda-skip
  871. :type '(choice
  872. (const :tag "None" nil)
  873. (const :tag "All" t)
  874. (integer :tag "at most")))
  875. (defgroup org-agenda-startup nil
  876. "Options concerning initial settings in the Agenda in Org Mode."
  877. :tag "Org Agenda Startup"
  878. :group 'org-agenda)
  879. (defcustom org-agenda-menu-show-matcher t
  880. "Non-nil means show the match string in the agenda dispatcher menu.
  881. When nil, the matcher string is not shown, but is put into the help-echo
  882. property so than moving the mouse over the command shows it.
  883. Setting it to nil is good if matcher strings are very long and/or if
  884. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  885. :group 'org-agenda
  886. :version "24.1"
  887. :type 'boolean)
  888. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  889. (defcustom org-agenda-menu-two-columns nil
  890. "Non-nil means, use two columns to show custom commands in the dispatcher.
  891. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  892. to nil."
  893. :group 'org-agenda
  894. :version "24.1"
  895. :type 'boolean)
  896. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  897. (defcustom org-agenda-finalize-hook nil
  898. "Hook run just before displaying an agenda buffer.
  899. The buffer is still writable when the hook is called.
  900. You can modify some of the buffer substrings but you should be
  901. extra careful not to modify the text properties of the agenda
  902. headlines as the agenda display heavily relies on them."
  903. :group 'org-agenda-startup
  904. :type 'hook)
  905. (defcustom org-agenda-mouse-1-follows-link nil
  906. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  907. A longer mouse click will still set point. Does not work on XEmacs.
  908. Needs to be set before org.el is loaded."
  909. :group 'org-agenda-startup
  910. :type 'boolean)
  911. (defcustom org-agenda-start-with-follow-mode nil
  912. "The initial value of follow mode in a newly created agenda window."
  913. :group 'org-agenda-startup
  914. :type 'boolean)
  915. (defcustom org-agenda-follow-indirect nil
  916. "Non-nil means `org-agenda-follow-mode' displays only the
  917. current item's tree, in an indirect buffer."
  918. :group 'org-agenda
  919. :version "24.1"
  920. :type 'boolean)
  921. (defcustom org-agenda-show-outline-path t
  922. "Non-nil means show outline path in echo area after line motion."
  923. :group 'org-agenda-startup
  924. :type 'boolean)
  925. (defcustom org-agenda-start-with-entry-text-mode nil
  926. "The initial value of entry-text-mode in a newly created agenda window."
  927. :group 'org-agenda-startup
  928. :type 'boolean)
  929. (defcustom org-agenda-entry-text-maxlines 5
  930. "Number of text lines to be added when `E' is pressed in the agenda.
  931. Note that this variable only used during agenda display. Add add entry text
  932. when exporting the agenda, configure the variable
  933. `org-agenda-add-entry-ext-maxlines'."
  934. :group 'org-agenda
  935. :type 'integer)
  936. (defcustom org-agenda-entry-text-exclude-regexps nil
  937. "List of regular expressions to clean up entry text.
  938. The complete matches of all regular expressions in this list will be
  939. removed from entry text before it is shown in the agenda."
  940. :group 'org-agenda
  941. :type '(repeat (regexp)))
  942. (defcustom org-agenda-entry-text-leaders " > "
  943. "Text prepended to the entry text in agenda buffers."
  944. :version "24.4"
  945. :package-version '(Org . "8.0")
  946. :group 'org-agenda
  947. :type 'string)
  948. (defvar org-agenda-entry-text-cleanup-hook nil
  949. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  950. This cleanup is done in a temporary buffer, so the function may inspect and
  951. change the entire buffer.
  952. Some default stuff like drawers and scheduling/deadline dates will already
  953. have been removed when this is called, as will any matches for regular
  954. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  955. (defvar org-agenda-include-inactive-timestamps nil
  956. "Non-nil means include inactive time stamps in agenda and timeline.
  957. Dynamically scoped.")
  958. (defgroup org-agenda-windows nil
  959. "Options concerning the windows used by the Agenda in Org Mode."
  960. :tag "Org Agenda Windows"
  961. :group 'org-agenda)
  962. (defcustom org-agenda-window-setup 'reorganize-frame
  963. "How the agenda buffer should be displayed.
  964. Possible values for this option are:
  965. current-window Show agenda in the current window, keeping all other windows.
  966. other-window Use `switch-to-buffer-other-window' to display agenda.
  967. only-window Show agenda, deleting all other windows.
  968. reorganize-frame Show only two windows on the current frame, the current
  969. window and the agenda.
  970. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  971. Also, when exiting the agenda, kill that frame.
  972. See also the variable `org-agenda-restore-windows-after-quit'."
  973. :group 'org-agenda-windows
  974. :type '(choice
  975. (const current-window)
  976. (const other-frame)
  977. (const other-window)
  978. (const only-window)
  979. (const reorganize-frame)))
  980. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  981. "The min and max height of the agenda window as a fraction of frame height.
  982. The value of the variable is a cons cell with two numbers between 0 and 1.
  983. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  984. :group 'org-agenda-windows
  985. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  986. (defcustom org-agenda-restore-windows-after-quit nil
  987. "Non-nil means restore window configuration upon exiting agenda.
  988. Before the window configuration is changed for displaying the agenda,
  989. the current status is recorded. When the agenda is exited with
  990. `q' or `x' and this option is set, the old state is restored. If
  991. `org-agenda-window-setup' is `other-frame', the value of this
  992. option will be ignored."
  993. :group 'org-agenda-windows
  994. :type 'boolean)
  995. (defcustom org-agenda-ndays nil
  996. "Number of days to include in overview display.
  997. Should be 1 or 7.
  998. Obsolete, see `org-agenda-span'."
  999. :group 'org-agenda-daily/weekly
  1000. :type '(choice (const nil)
  1001. (integer)))
  1002. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  1003. (defcustom org-agenda-span 'week
  1004. "Number of days to include in overview display.
  1005. Can be day, week, month, year, or any number of days.
  1006. Custom commands can set this variable in the options section."
  1007. :group 'org-agenda-daily/weekly
  1008. :type '(choice (const :tag "Day" day)
  1009. (const :tag "Week" week)
  1010. (const :tag "Fortnight" fortnight)
  1011. (const :tag "Month" month)
  1012. (const :tag "Year" year)
  1013. (integer :tag "Custom")))
  1014. (defcustom org-agenda-start-on-weekday 1
  1015. "Non-nil means start the overview always on the specified weekday.
  1016. 0 denotes Sunday, 1 denotes Monday, etc.
  1017. When nil, always start on the current day.
  1018. Custom commands can set this variable in the options section."
  1019. :group 'org-agenda-daily/weekly
  1020. :type '(choice (const :tag "Today" nil)
  1021. (integer :tag "Weekday No.")))
  1022. (defcustom org-agenda-show-all-dates t
  1023. "Non-nil means `org-agenda' shows every day in the selected range.
  1024. When nil, only the days which actually have entries are shown."
  1025. :group 'org-agenda-daily/weekly
  1026. :type 'boolean)
  1027. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1028. "Format string for displaying dates in the agenda.
  1029. Used by the daily/weekly agenda and by the timeline. This should be
  1030. a format string understood by `format-time-string', or a function returning
  1031. the formatted date as a string. The function must take a single argument,
  1032. a calendar-style date list like (month day year)."
  1033. :group 'org-agenda-daily/weekly
  1034. :type '(choice
  1035. (string :tag "Format string")
  1036. (function :tag "Function")))
  1037. (defun org-agenda-format-date-aligned (date)
  1038. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1039. This function makes sure that dates are aligned for easy reading."
  1040. (require 'cal-iso)
  1041. (let* ((dayname (calendar-day-name date))
  1042. (day (cadr date))
  1043. (day-of-week (calendar-day-of-week date))
  1044. (month (car date))
  1045. (monthname (calendar-month-name month))
  1046. (year (nth 2 date))
  1047. (iso-week (org-days-to-iso-week
  1048. (calendar-absolute-from-gregorian date)))
  1049. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1050. (1- year))
  1051. ((and (= month 12) (<= iso-week 1))
  1052. (1+ year))
  1053. (t year)))
  1054. (weekstring (if (= day-of-week 1)
  1055. (format " W%02d" iso-week)
  1056. "")))
  1057. (format "%-10s %2d %s %4d%s"
  1058. dayname day monthname year weekstring)))
  1059. (defcustom org-agenda-time-leading-zero nil
  1060. "Non-nil means use leading zero for military times in agenda.
  1061. For example, 9:30am would become 09:30 rather than 9:30."
  1062. :group 'org-agenda-daily/weekly
  1063. :version "24.1"
  1064. :type 'boolean)
  1065. (defcustom org-agenda-timegrid-use-ampm nil
  1066. "When set, show AM/PM style timestamps on the timegrid."
  1067. :group 'org-agenda
  1068. :version "24.1"
  1069. :type 'boolean)
  1070. (defun org-agenda-time-of-day-to-ampm (time)
  1071. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  1072. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1073. (minute (substring time -2))
  1074. (ampm "am"))
  1075. (cond
  1076. ((equal hour-number 12)
  1077. (setq ampm "pm"))
  1078. ((> hour-number 12)
  1079. (setq ampm "pm")
  1080. (setq hour-number (- hour-number 12))))
  1081. (concat
  1082. (if org-agenda-time-leading-zero
  1083. (format "%02d" hour-number)
  1084. (format "%02s" (number-to-string hour-number)))
  1085. ":" minute ampm)))
  1086. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1087. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1088. (if org-agenda-timegrid-use-ampm
  1089. (org-agenda-time-of-day-to-ampm time)
  1090. time))
  1091. (defcustom org-agenda-weekend-days '(6 0)
  1092. "Which days are weekend?
  1093. These days get the special face `org-agenda-date-weekend' in the agenda
  1094. and timeline buffers."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. WHen nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-include-diary nil
  1114. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1115. Custom commands can set this variable in the options section."
  1116. :group 'org-agenda-daily/weekly
  1117. :type 'boolean)
  1118. (defcustom org-agenda-include-deadlines t
  1119. "If non-nil, include entries within their deadline warning period.
  1120. Custom commands can set this variable in the options section."
  1121. :group 'org-agenda-daily/weekly
  1122. :version "24.1"
  1123. :type 'boolean)
  1124. (defcustom org-agenda-repeating-timestamp-show-all t
  1125. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1126. When set to a list of strings, only show occurrences of repeating
  1127. stamps for these TODO keywords. When nil, only one occurrence is
  1128. shown, either today or the nearest into the future."
  1129. :group 'org-agenda-daily/weekly
  1130. :type '(choice
  1131. (const :tag "Show repeating stamps" t)
  1132. (repeat :tag "Show repeating stamps for these TODO keywords"
  1133. (string :tag "TODO Keyword"))
  1134. (const :tag "Don't show repeating stamps" nil)))
  1135. (defcustom org-scheduled-past-days 10000
  1136. "Number of days to continue listing scheduled items not marked DONE.
  1137. When an item is scheduled on a date, it shows up in the agenda on this
  1138. day and will be listed until it is marked done for the number of days
  1139. given here."
  1140. :group 'org-agenda-daily/weekly
  1141. :type 'integer)
  1142. (defcustom org-agenda-log-mode-items '(closed clock)
  1143. "List of items that should be shown in agenda log mode.
  1144. This list may contain the following symbols:
  1145. closed Show entries that have been closed on that day.
  1146. clock Show entries that have received clocked time on that day.
  1147. state Show all logged state changes.
  1148. Note that instead of changing this variable, you can also press `C-u l' in
  1149. the agenda to display all available LOG items temporarily."
  1150. :group 'org-agenda-daily/weekly
  1151. :type '(set :greedy t (const closed) (const clock) (const state)))
  1152. (defcustom org-agenda-clock-consistency-checks
  1153. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1154. :gap-ok-around ("4:00")
  1155. :default-face ((:background "DarkRed") (:foreground "white"))
  1156. :overlap-face nil :gap-face nil :no-end-time-face nil
  1157. :long-face nil :short-face nil)
  1158. "This is a property list, with the following keys:
  1159. :max-duration Mark clocking chunks that are longer than this time.
  1160. This is a time string like \"HH:MM\", or the number
  1161. of minutes as an integer.
  1162. :min-duration Mark clocking chunks that are shorter that this.
  1163. This is a time string like \"HH:MM\", or the number
  1164. of minutes as an integer.
  1165. :max-gap Mark gaps between clocking chunks that are longer than
  1166. this duration. A number of minutes, or a string
  1167. like \"HH:MM\".
  1168. :gap-ok-around List of times during the day which are usually not working
  1169. times. When a gap is detected, but the gap contains any
  1170. of these times, the gap is *not* reported. For example,
  1171. if this is (\"4:00\" \"13:00\") then gaps that contain
  1172. 4:00 in the morning (i.e. the night) and 13:00
  1173. (i.e. a typical lunch time) do not cause a warning.
  1174. You should have at least one time during the night in this
  1175. list, or otherwise the first task each morning will trigger
  1176. a warning because it follows a long gap.
  1177. Furthermore, the following properties can be used to define faces for
  1178. issue display.
  1179. :default-face the default face, if the specific face is undefined
  1180. :overlap-face face for overlapping clocks
  1181. :gap-face face for gaps between clocks
  1182. :no-end-time-face face for incomplete clocks
  1183. :long-face face for clock intervals that are too long
  1184. :short-face face for clock intervals that are too short"
  1185. :group 'org-agenda-daily/weekly
  1186. :group 'org-clock
  1187. :version "24.1"
  1188. :type 'plist)
  1189. (defcustom org-agenda-log-mode-add-notes t
  1190. "Non-nil means add first line of notes to log entries in agenda views.
  1191. If a log item like a state change or a clock entry is associated with
  1192. notes, the first line of these notes will be added to the entry in the
  1193. agenda display."
  1194. :group 'org-agenda-daily/weekly
  1195. :type 'boolean)
  1196. (defcustom org-agenda-start-with-log-mode nil
  1197. "The initial value of log-mode in a newly created agenda window.
  1198. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1199. explanations on the possible values."
  1200. :group 'org-agenda-startup
  1201. :group 'org-agenda-daily/weekly
  1202. :type '(choice (const :tag "Don't show log items" nil)
  1203. (const :tag "Show only log items" only)
  1204. (const :tag "Show all possible log items" clockcheck)
  1205. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1206. (choice (const :tag "Show closed log items" closed)
  1207. (const :tag "Show clocked log items" clock)
  1208. (const :tag "Show all logged state changes" state)))))
  1209. (defcustom org-agenda-start-with-clockreport-mode nil
  1210. "The initial value of clockreport-mode in a newly created agenda window."
  1211. :group 'org-agenda-startup
  1212. :group 'org-agenda-daily/weekly
  1213. :type 'boolean)
  1214. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1215. "Property list with parameters for the clocktable in clockreport mode.
  1216. This is the display mode that shows a clock table in the daily/weekly
  1217. agenda, the properties for this dynamic block can be set here.
  1218. The usual clocktable parameters are allowed here, but you cannot set
  1219. the properties :name, :tstart, :tend, :block, and :scope - these will
  1220. be overwritten to make sure the content accurately reflects the
  1221. current display in the agenda."
  1222. :group 'org-agenda-daily/weekly
  1223. :type 'plist)
  1224. (defcustom org-agenda-search-view-always-boolean nil
  1225. "Non-nil means the search string is interpreted as individual parts.
  1226. The search string for search view can either be interpreted as a phrase,
  1227. or as a list of snippets that define a boolean search for a number of
  1228. strings.
  1229. When this is non-nil, the string will be split on whitespace, and each
  1230. snippet will be searched individually, and all must match in order to
  1231. select an entry. A snippet is then a single string of non-white
  1232. characters, or a string in double quotes, or a regexp in {} braces.
  1233. If a snippet is preceded by \"-\", the snippet must *not* match.
  1234. \"+\" is syntactic sugar for positive selection. Each snippet may
  1235. be found as a full word or a partial word, but see the variable
  1236. `org-agenda-search-view-force-full-words'.
  1237. When this is nil, search will look for the entire search phrase as one,
  1238. with each space character matching any amount of whitespace, including
  1239. line breaks.
  1240. Even when this is nil, you can still switch to Boolean search dynamically
  1241. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1242. is a regexp marked with braces like \"{abc}\", this will also switch to
  1243. boolean search."
  1244. :group 'org-agenda-search-view
  1245. :version "24.1"
  1246. :type 'boolean)
  1247. (org-defvaralias 'org-agenda-search-view-search-words-only
  1248. 'org-agenda-search-view-always-boolean)
  1249. (defcustom org-agenda-search-view-force-full-words nil
  1250. "Non-nil means, search words must be matches as complete words.
  1251. When nil, they may also match part of a word."
  1252. :group 'org-agenda-search-view
  1253. :version "24.1"
  1254. :type 'boolean)
  1255. (defcustom org-agenda-search-view-max-outline-level 0
  1256. "Maximum outline level to display in search view.
  1257. E.g. when this is set to 1, the search view will only
  1258. show headlines of level 1. When set to 0, the default
  1259. value, don't limit agenda view by outline level."
  1260. :group 'org-agenda-search-view
  1261. :version "24.4"
  1262. :package-version '(Org . "8.3")
  1263. :type 'integer)
  1264. (defgroup org-agenda-time-grid nil
  1265. "Options concerning the time grid in the Org-mode Agenda."
  1266. :tag "Org Agenda Time Grid"
  1267. :group 'org-agenda)
  1268. (defcustom org-agenda-search-headline-for-time t
  1269. "Non-nil means search headline for a time-of-day.
  1270. If the headline contains a time-of-day in one format or another, it will
  1271. be used to sort the entry into the time sequence of items for a day.
  1272. Some people have time stamps in the headline that refer to the creation
  1273. time or so, and then this produces an unwanted side effect. If this is
  1274. the case for your, use this variable to turn off searching the headline
  1275. for a time."
  1276. :group 'org-agenda-time-grid
  1277. :type 'boolean)
  1278. (defcustom org-agenda-use-time-grid t
  1279. "Non-nil means show a time grid in the agenda schedule.
  1280. A time grid is a set of lines for specific times (like every two hours between
  1281. 8:00 and 20:00). The items scheduled for a day at specific times are
  1282. sorted in between these lines.
  1283. For details about when the grid will be shown, and what it will look like, see
  1284. the variable `org-agenda-time-grid'."
  1285. :group 'org-agenda-time-grid
  1286. :type 'boolean)
  1287. (defcustom org-agenda-time-grid
  1288. '((daily today require-timed)
  1289. "----------------"
  1290. (800 1000 1200 1400 1600 1800 2000))
  1291. "The settings for time grid for agenda display.
  1292. This is a list of three items. The first item is again a list. It contains
  1293. symbols specifying conditions when the grid should be displayed:
  1294. daily if the agenda shows a single day
  1295. weekly if the agenda shows an entire week
  1296. today show grid on current date, independent of daily/weekly display
  1297. require-timed show grid only if at least one item has a time specification
  1298. remove-match skip grid times already present in an entry
  1299. The second item is a string which will be placed behind the grid time.
  1300. The third item is a list of integers, indicating the times that should have
  1301. a grid line."
  1302. :group 'org-agenda-time-grid
  1303. :type
  1304. '(list
  1305. (set :greedy t :tag "Grid Display Options"
  1306. (const :tag "Show grid in single day agenda display" daily)
  1307. (const :tag "Show grid in weekly agenda display" weekly)
  1308. (const :tag "Always show grid for today" today)
  1309. (const :tag "Show grid only if any timed entries are present"
  1310. require-timed)
  1311. (const :tag "Skip grid times already present in an entry"
  1312. remove-match))
  1313. (string :tag "Grid String")
  1314. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1315. (defcustom org-agenda-show-current-time-in-grid t
  1316. "Non-nil means show the current time in the time grid."
  1317. :group 'org-agenda-time-grid
  1318. :version "24.1"
  1319. :type 'boolean)
  1320. (defcustom org-agenda-current-time-string
  1321. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1322. "The string for the current time marker in the agenda."
  1323. :group 'org-agenda-time-grid
  1324. :version "24.1"
  1325. :type 'string)
  1326. (defgroup org-agenda-sorting nil
  1327. "Options concerning sorting in the Org-mode Agenda."
  1328. :tag "Org Agenda Sorting"
  1329. :group 'org-agenda)
  1330. (defcustom org-agenda-sorting-strategy
  1331. '((agenda habit-down time-up priority-down category-keep)
  1332. (todo priority-down category-keep)
  1333. (tags priority-down category-keep)
  1334. (search category-keep))
  1335. "Sorting structure for the agenda items of a single day.
  1336. This is a list of symbols which will be used in sequence to determine
  1337. if an entry should be listed before another entry. The following
  1338. symbols are recognized:
  1339. time-up Put entries with time-of-day indications first, early first
  1340. time-down Put entries with time-of-day indications first, late first
  1341. timestamp-up Sort by any timestamp, early first
  1342. timestamp-down Sort by any timestamp, late first
  1343. scheduled-up Sort by scheduled timestamp, early first
  1344. scheduled-down Sort by scheduled timestamp, late first
  1345. deadline-up Sort by deadline timestamp, early first
  1346. deadline-down Sort by deadline timestamp, late first
  1347. ts-up Sort by active timestamp, early first
  1348. ts-down Sort by active timestamp, late first
  1349. tsia-up Sort by inactive timestamp, early first
  1350. tsia-down Sort by inactive timestamp, late first
  1351. category-keep Keep the default order of categories, corresponding to the
  1352. sequence in `org-agenda-files'.
  1353. category-up Sort alphabetically by category, A-Z.
  1354. category-down Sort alphabetically by category, Z-A.
  1355. tag-up Sort alphabetically by last tag, A-Z.
  1356. tag-down Sort alphabetically by last tag, Z-A.
  1357. priority-up Sort numerically by priority, high priority last.
  1358. priority-down Sort numerically by priority, high priority first.
  1359. todo-state-up Sort by todo state, tasks that are done last.
  1360. todo-state-down Sort by todo state, tasks that are done first.
  1361. effort-up Sort numerically by estimated effort, high effort last.
  1362. effort-down Sort numerically by estimated effort, high effort first.
  1363. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1364. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1365. habit-up Put entries that are habits first
  1366. habit-down Put entries that are habits last
  1367. alpha-up Sort headlines alphabetically
  1368. alpha-down Sort headlines alphabetically, reversed
  1369. The different possibilities will be tried in sequence, and testing stops
  1370. if one comparison returns a \"not-equal\". For example, the default
  1371. '(time-up category-keep priority-down)
  1372. means: Pull out all entries having a specified time of day and sort them,
  1373. in order to make a time schedule for the current day the first thing in the
  1374. agenda listing for the day. Of the entries without a time indication, keep
  1375. the grouped in categories, don't sort the categories, but keep them in
  1376. the sequence given in `org-agenda-files'. Within each category sort by
  1377. priority.
  1378. Leaving out `category-keep' would mean that items will be sorted across
  1379. categories by priority.
  1380. Instead of a single list, this can also be a set of list for specific
  1381. contents, with a context symbol in the car of the list, any of
  1382. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1383. Custom commands can bind this variable in the options section."
  1384. :group 'org-agenda-sorting
  1385. :type `(choice
  1386. (repeat :tag "General" ,org-sorting-choice)
  1387. (list :tag "Individually"
  1388. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1389. (repeat ,org-sorting-choice))
  1390. (cons (const :tag "Strategy for TODO lists" todo)
  1391. (repeat ,org-sorting-choice))
  1392. (cons (const :tag "Strategy for Tags matches" tags)
  1393. (repeat ,org-sorting-choice))
  1394. (cons (const :tag "Strategy for search matches" search)
  1395. (repeat ,org-sorting-choice)))))
  1396. (defcustom org-agenda-cmp-user-defined nil
  1397. "A function to define the comparison `user-defined'.
  1398. This function must receive two arguments, agenda entry a and b.
  1399. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1400. the user comparison, return nil.
  1401. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1402. part of an agenda sorting strategy."
  1403. :group 'org-agenda-sorting
  1404. :type 'symbol)
  1405. (defcustom org-sort-agenda-notime-is-late t
  1406. "Non-nil means items without time are considered late.
  1407. This is only relevant for sorting. When t, items which have no explicit
  1408. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1409. do have a time. When nil, the default time is before 0:00. You can use this
  1410. option to decide if the schedule for today should come before or after timeless
  1411. agenda entries."
  1412. :group 'org-agenda-sorting
  1413. :type 'boolean)
  1414. (defcustom org-sort-agenda-noeffort-is-high t
  1415. "Non-nil means items without effort estimate are sorted as high effort.
  1416. This also applies when filtering an agenda view with respect to the
  1417. < or > effort operator. Then, tasks with no effort defined will be treated
  1418. as tasks with high effort.
  1419. When nil, such items are sorted as 0 minutes effort."
  1420. :group 'org-agenda-sorting
  1421. :type 'boolean)
  1422. (defgroup org-agenda-line-format nil
  1423. "Options concerning the entry prefix in the Org-mode agenda display."
  1424. :tag "Org Agenda Line Format"
  1425. :group 'org-agenda)
  1426. (defcustom org-agenda-prefix-format
  1427. '((agenda . " %i %-12:c%?-12t% s")
  1428. (timeline . " % s")
  1429. (todo . " %i %-12:c")
  1430. (tags . " %i %-12:c")
  1431. (search . " %i %-12:c"))
  1432. "Format specifications for the prefix of items in the agenda views.
  1433. An alist with five entries, each for the different agenda types. The
  1434. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1435. The values are format strings.
  1436. This format works similar to a printf format, with the following meaning:
  1437. %c the category of the item, \"Diary\" for entries from the diary,
  1438. or as given by the CATEGORY keyword or derived from the file name
  1439. %e the effort required by the item
  1440. %l the level of the item (insert X space(s) if item is of level X)
  1441. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1442. %T the last tag of the item (ignore inherited tags, which come first)
  1443. %t the HH:MM time-of-day specification if one applies to the entry
  1444. %s Scheduling/Deadline information, a short string
  1445. %b show breadcrumbs, i.e., the names of the higher levels
  1446. %(expression) Eval EXPRESSION and replace the control string
  1447. by the result
  1448. All specifiers work basically like the standard `%s' of printf, but may
  1449. contain two additional characters: a question mark just after the `%'
  1450. and a whitespace/punctuation character just before the final letter.
  1451. If the first character after `%' is a question mark, the entire field
  1452. will only be included if the corresponding value applies to the current
  1453. entry. This is useful for fields which should have fixed width when
  1454. present, but zero width when absent. For example, \"%?-12t\" will
  1455. result in a 12 character time field if a time of the day is specified,
  1456. but will completely disappear in entries which do not contain a time.
  1457. If there is punctuation or whitespace character just before the
  1458. final format letter, this character will be appended to the field
  1459. value if the value is not empty. For example, the format
  1460. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1461. the category is empty, no additional colon is inserted.
  1462. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1463. which means:
  1464. - Indent the line with two space characters
  1465. - Give the category a 12 chars wide field, padded with whitespace on
  1466. the right (because of `-'). Append a colon if there is a category
  1467. (because of `:').
  1468. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1469. time, don't put in an empty field, just skip it (because of '?').
  1470. - Finally, put the scheduling information.
  1471. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1472. `org-agenda-remove-tags'.
  1473. Custom commands can set this variable in the options section."
  1474. :type '(choice
  1475. (string :tag "General format")
  1476. (list :greedy t :tag "View dependent"
  1477. (cons (const agenda) (string :tag "Format"))
  1478. (cons (const timeline) (string :tag "Format"))
  1479. (cons (const todo) (string :tag "Format"))
  1480. (cons (const tags) (string :tag "Format"))
  1481. (cons (const search) (string :tag "Format"))))
  1482. :group 'org-agenda-line-format)
  1483. (defvar org-prefix-format-compiled nil
  1484. "The compiled prefix format and associated variables.
  1485. This is a list where first element is a list of variable bindings, and second
  1486. element is the compiled format expression. See the variable
  1487. `org-agenda-prefix-format'.")
  1488. (defcustom org-agenda-todo-keyword-format "%-1s"
  1489. "Format for the TODO keyword in agenda lines.
  1490. Set this to something like \"%-12s\" if you want all TODO keywords
  1491. to occupy a fixed space in the agenda display."
  1492. :group 'org-agenda-line-format
  1493. :type 'string)
  1494. (defcustom org-agenda-diary-sexp-prefix nil
  1495. "A regexp that matches part of a diary sexp entry
  1496. which should be treated as scheduling/deadline information in
  1497. `org-agenda'.
  1498. For example, you can use this to extract the `diary-remind-message' from
  1499. `diary-remind' entries."
  1500. :group 'org-agenda-line-format
  1501. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1502. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1503. "Text preceding timerange entries in the agenda view.
  1504. This is a list with two strings. The first applies when the range
  1505. is entirely on one day. The second applies if the range spans several days.
  1506. The strings may have two \"%d\" format specifiers which will be filled
  1507. with the sequence number of the days, and the total number of days in the
  1508. range, respectively."
  1509. :group 'org-agenda-line-format
  1510. :type '(list
  1511. (string :tag "Deadline today ")
  1512. (choice :tag "Deadline relative"
  1513. (string :tag "Format string")
  1514. (function))))
  1515. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1516. "Text preceding scheduled items in the agenda view.
  1517. This is a list with two strings. The first applies when the item is
  1518. scheduled on the current day. The second applies when it has been scheduled
  1519. previously, it may contain a %d indicating that this is the nth time that
  1520. this item is scheduled, due to automatic rescheduling of unfinished items
  1521. for the following day. So this number is one larger than the number of days
  1522. that passed since this item was scheduled first."
  1523. :group 'org-agenda-line-format
  1524. :version "24.4"
  1525. :package-version '(Org . "8.0")
  1526. :type '(list
  1527. (string :tag "Scheduled today ")
  1528. (string :tag "Scheduled previously")))
  1529. (defcustom org-agenda-inactive-leader "["
  1530. "Text preceding item pulled into the agenda by inactive time stamps.
  1531. These entries are added to the agenda when pressing \"[\"."
  1532. :group 'org-agenda-line-format
  1533. :version "24.1"
  1534. :type 'string)
  1535. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1536. "Text preceding deadline items in the agenda view.
  1537. This is a list with three strings. The first applies when the item has its
  1538. deadline on the current day. The second applies when the deadline is in the
  1539. future, the third one when it is in the past. The strings may contain %d
  1540. to capture the number of days."
  1541. :group 'org-agenda-line-format
  1542. :version "24.4"
  1543. :package-version '(Org . "8.0")
  1544. :type '(list
  1545. (string :tag "Deadline today ")
  1546. (string :tag "Deadline in the future ")
  1547. (string :tag "Deadline in the past ")))
  1548. (defcustom org-agenda-remove-times-when-in-prefix t
  1549. "Non-nil means remove duplicate time specifications in agenda items.
  1550. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1551. time-of-day specification in a headline or diary entry is extracted and
  1552. placed into the prefix. If this option is non-nil, the original specification
  1553. \(a timestamp or -range, or just a plain time(range) specification like
  1554. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1555. cluttered.
  1556. The option can be t or nil. It may also be the symbol `beg', indicating
  1557. that the time should only be removed when it is located at the beginning of
  1558. the headline/diary entry."
  1559. :group 'org-agenda-line-format
  1560. :type '(choice
  1561. (const :tag "Always" t)
  1562. (const :tag "Never" nil)
  1563. (const :tag "When at beginning of entry" beg)))
  1564. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1565. "Non-nil means remove time ranges specifications in agenda
  1566. items that span on several days."
  1567. :group 'org-agenda-line-format
  1568. :version "24.1"
  1569. :type 'boolean)
  1570. (defcustom org-agenda-default-appointment-duration nil
  1571. "Default duration for appointments that only have a starting time.
  1572. When nil, no duration is specified in such cases.
  1573. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1574. :group 'org-agenda-line-format
  1575. :type '(choice
  1576. (integer :tag "Minutes")
  1577. (const :tag "No default duration")))
  1578. (defcustom org-agenda-show-inherited-tags t
  1579. "Non-nil means show inherited tags in each agenda line.
  1580. When this option is set to 'always, it take precedences over
  1581. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1582. in every agenda.
  1583. When this option is set to t (the default), inherited tags are
  1584. shown when they are available, i.e. when the value of
  1585. `org-agenda-use-tag-inheritance' has been taken into account.
  1586. This can be set to a list of agenda types in which the agenda
  1587. must display the inherited tags. Available types are 'todo,
  1588. 'agenda, 'search and 'timeline.
  1589. When set to nil, never show inherited tags in agenda lines."
  1590. :group 'org-agenda-line-format
  1591. :group 'org-agenda
  1592. :version "24.3"
  1593. :type '(choice
  1594. (const :tag "Show inherited tags when available" t)
  1595. (const :tag "Always show inherited tags" always)
  1596. (repeat :tag "Show inherited tags only in selected agenda types"
  1597. (symbol :tag "Agenda type"))))
  1598. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1599. "List of agenda view types where to use tag inheritance.
  1600. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1601. controlled by `org-use-tag-inheritance'. In other agenda types,
  1602. `org-use-tag-inheritance' is not used for the selection of the
  1603. agenda entries. Still, you may want the agenda to be aware of
  1604. the inherited tags anyway, e.g. for later tag filtering.
  1605. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1606. This variable has no effect if `org-agenda-show-inherited-tags'
  1607. is set to 'always. In that case, the agenda is aware of those
  1608. tags.
  1609. The default value sets tags in every agenda type. Setting this
  1610. option to nil will speed up non-tags agenda view a lot."
  1611. :group 'org-agenda
  1612. :version "24.3"
  1613. :type '(choice
  1614. (const :tag "Use tag inheritance in all agenda types" t)
  1615. (repeat :tag "Use tag inheritance in selected agenda types"
  1616. (symbol :tag "Agenda type"))))
  1617. (defcustom org-agenda-hide-tags-regexp nil
  1618. "Regular expression used to filter away specific tags in agenda views.
  1619. This means that these tags will be present, but not be shown in the agenda
  1620. line. Secondary filtering will still work on the hidden tags.
  1621. Nil means don't hide any tags."
  1622. :group 'org-agenda-line-format
  1623. :type '(choice
  1624. (const :tag "Hide none" nil)
  1625. (string :tag "Regexp ")))
  1626. (defcustom org-agenda-remove-tags nil
  1627. "Non-nil means remove the tags from the headline copy in the agenda.
  1628. When this is the symbol `prefix', only remove tags when
  1629. `org-agenda-prefix-format' contains a `%T' specifier."
  1630. :group 'org-agenda-line-format
  1631. :type '(choice
  1632. (const :tag "Always" t)
  1633. (const :tag "Never" nil)
  1634. (const :tag "When prefix format contains %T" prefix)))
  1635. (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
  1636. 'org-agenda-remove-tags)
  1637. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1638. "Shift tags in agenda items to this column.
  1639. If this number is positive, it specifies the column. If it is negative,
  1640. it means that the tags should be flushright to that column. For example,
  1641. -80 works well for a normal 80 character screen."
  1642. :group 'org-agenda-line-format
  1643. :type 'integer)
  1644. (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1645. (defcustom org-agenda-fontify-priorities 'cookies
  1646. "Non-nil means highlight low and high priorities in agenda.
  1647. When t, the highest priority entries are bold, lowest priority italic.
  1648. However, settings in `org-priority-faces' will overrule these faces.
  1649. When this variable is the symbol `cookies', only fontify the
  1650. cookies, not the entire task.
  1651. This may also be an association list of priority faces, whose
  1652. keys are the character values of `org-highest-priority',
  1653. `org-default-priority', and `org-lowest-priority' (the default values
  1654. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1655. color as a string, or a list like `(:background \"Red\")'.
  1656. If it is a color, the variable `org-faces-easy-properties'
  1657. determines if it is a foreground or a background color."
  1658. :group 'org-agenda-line-format
  1659. :type '(choice
  1660. (const :tag "Never" nil)
  1661. (const :tag "Defaults" t)
  1662. (const :tag "Cookies only" cookies)
  1663. (repeat :tag "Specify"
  1664. (list (character :tag "Priority" :value ?A)
  1665. (choice :tag "Face "
  1666. (string :tag "Color")
  1667. (sexp :tag "Face"))))))
  1668. (defcustom org-agenda-day-face-function nil
  1669. "Function called to determine what face should be used to display a day.
  1670. The only argument passed to that function is the day. It should
  1671. returns a face, or nil if does not want to specify a face and let
  1672. the normal rules apply."
  1673. :group 'org-agenda-line-format
  1674. :version "24.1"
  1675. :type '(choice (const nil) (function)))
  1676. (defcustom org-agenda-category-icon-alist nil
  1677. "Alist of category icon to be displayed in agenda views.
  1678. Each entry should have the following format:
  1679. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1680. Where CATEGORY-REGEXP is a regexp matching the categories where
  1681. the icon should be displayed.
  1682. FILE-OR-DATA either a file path or a string containing image data.
  1683. The other fields can be omitted safely if not needed:
  1684. TYPE indicates the image type.
  1685. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1686. image data.
  1687. PROPS are additional image attributes to assign to the image,
  1688. like, e.g. `:ascent center'.
  1689. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1690. If you want to set the display properties yourself, just put a
  1691. list as second element:
  1692. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1693. For example, to display a 16px horizontal space for Emacs
  1694. category, you can use:
  1695. (\"Emacs\" '(space . (:width (16))))"
  1696. :group 'org-agenda-line-format
  1697. :version "24.1"
  1698. :type '(alist :key-type (string :tag "Regexp matching category")
  1699. :value-type (choice (list :tag "Icon"
  1700. (string :tag "File or data")
  1701. (symbol :tag "Type")
  1702. (boolean :tag "Data?")
  1703. (repeat :tag "Extra image properties" :inline t symbol))
  1704. (list :tag "Display properties" sexp))))
  1705. (defgroup org-agenda-column-view nil
  1706. "Options concerning column view in the agenda."
  1707. :tag "Org Agenda Column View"
  1708. :group 'org-agenda)
  1709. (defcustom org-agenda-columns-show-summaries t
  1710. "Non-nil means show summaries for columns displayed in the agenda view."
  1711. :group 'org-agenda-column-view
  1712. :type 'boolean)
  1713. (defcustom org-agenda-columns-compute-summary-properties t
  1714. "Non-nil means recompute all summary properties before column view.
  1715. When column view in the agenda is listing properties that have a summary
  1716. operator, it can go to all relevant buffers and recompute the summaries
  1717. there. This can mean overhead for the agenda column view, but is necessary
  1718. to have thing up to date.
  1719. As a special case, a CLOCKSUM property also makes sure that the clock
  1720. computations are current."
  1721. :group 'org-agenda-column-view
  1722. :type 'boolean)
  1723. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1724. "Non-nil means the duration of an appointment will add to day effort.
  1725. The property to which appointment durations will be added is the one given
  1726. in the option `org-effort-property'. If an appointment does not have
  1727. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1728. is not set, an appointment without end time will not contribute to the time
  1729. estimate."
  1730. :group 'org-agenda-column-view
  1731. :type 'boolean)
  1732. (defcustom org-agenda-auto-exclude-function nil
  1733. "A function called with a tag to decide if it is filtered on '/ RET'.
  1734. The sole argument to the function, which is called once for each
  1735. possible tag, is a string giving the name of the tag. The
  1736. function should return either nil if the tag should be included
  1737. as normal, or \"-<TAG>\" to exclude the tag.
  1738. Note that for the purpose of tag filtering, only the lower-case version of
  1739. all tags will be considered, so that this function will only ever see
  1740. the lower-case version of all tags."
  1741. :group 'org-agenda
  1742. :type '(choice (const nil) (function)))
  1743. (defcustom org-agenda-bulk-custom-functions nil
  1744. "Alist of characters and custom functions for bulk actions.
  1745. For example, this value makes those two functions available:
  1746. '((?R set-category)
  1747. (?C bulk-cut))
  1748. With selected entries in an agenda buffer, `B R' will call
  1749. the custom function `set-category' on the selected entries.
  1750. Note that functions in this alist don't need to be quoted."
  1751. :type 'alist
  1752. :version "24.1"
  1753. :group 'org-agenda)
  1754. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1755. "Execute BODY with point at location given by `org-hd-marker' property.
  1756. If STRING is non-nil, the text property will be fetched from position 0
  1757. in that string. If STRING is nil, it will be fetched from the beginning
  1758. of the current line."
  1759. (org-with-gensyms (marker)
  1760. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1761. 'org-hd-marker ,string)))
  1762. (with-current-buffer (marker-buffer ,marker)
  1763. (save-excursion
  1764. (goto-char ,marker)
  1765. ,@body)))))
  1766. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1767. (defun org-add-agenda-custom-command (entry)
  1768. "Replace or add a command in `org-agenda-custom-commands'.
  1769. This is mostly for hacking and trying a new command - once the command
  1770. works you probably want to add it to `org-agenda-custom-commands' for good."
  1771. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1772. (if ass
  1773. (setcdr ass (cdr entry))
  1774. (push entry org-agenda-custom-commands))))
  1775. ;;; Define the org-agenda-mode
  1776. (defvar org-agenda-mode-map (make-sparse-keymap)
  1777. "Keymap for `org-agenda-mode'.")
  1778. (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1779. (defvar org-agenda-menu) ; defined later in this file.
  1780. (defvar org-agenda-restrict nil) ; defined later in this file.
  1781. (defvar org-agenda-follow-mode nil)
  1782. (defvar org-agenda-entry-text-mode nil)
  1783. (defvar org-agenda-clockreport-mode nil)
  1784. (defvar org-agenda-show-log nil)
  1785. (defvar org-agenda-redo-command nil)
  1786. (defvar org-agenda-query-string nil)
  1787. (defvar org-agenda-mode-hook nil
  1788. "Hook run after `org-agenda-mode' is turned on.
  1789. The buffer is still writable when this hook is called.")
  1790. (defvar org-agenda-type nil)
  1791. (defvar org-agenda-force-single-file nil)
  1792. (defvar org-agenda-bulk-marked-entries nil
  1793. "List of markers that refer to marked entries in the agenda.")
  1794. ;;; Multiple agenda buffers support
  1795. (defcustom org-agenda-sticky nil
  1796. "Non-nil means agenda q key will bury agenda buffers.
  1797. Agenda commands will then show existing buffer instead of generating new ones.
  1798. When nil, `q' will kill the single agenda buffer."
  1799. :group 'org-agenda
  1800. :version "24.3"
  1801. :type 'boolean)
  1802. ;;;###autoload
  1803. (defun org-toggle-sticky-agenda (&optional arg)
  1804. "Toggle `org-agenda-sticky'."
  1805. (interactive "P")
  1806. (let ((new-value (if arg
  1807. (> (prefix-numeric-value arg) 0)
  1808. (not org-agenda-sticky))))
  1809. (if (equal new-value org-agenda-sticky)
  1810. (and (org-called-interactively-p 'interactive)
  1811. (message "Sticky agenda was already %s"
  1812. (if org-agenda-sticky "enabled" "disabled")))
  1813. (setq org-agenda-sticky new-value)
  1814. (org-agenda-kill-all-agenda-buffers)
  1815. (and (org-called-interactively-p 'interactive)
  1816. (message "Sticky agenda was %s"
  1817. (if org-agenda-sticky "enabled" "disabled"))))))
  1818. (defvar org-agenda-buffer nil
  1819. "Agenda buffer currently being generated.")
  1820. (defvar org-agenda-last-prefix-arg nil)
  1821. (defvar org-agenda-this-buffer-name nil)
  1822. (defvar org-agenda-doing-sticky-redo nil)
  1823. (defvar org-agenda-this-buffer-is-sticky nil)
  1824. (defvar org-agenda-last-indirect-buffer nil
  1825. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1826. (defconst org-agenda-local-vars
  1827. '(org-agenda-this-buffer-name
  1828. org-agenda-undo-list
  1829. org-agenda-pending-undo-list
  1830. org-agenda-follow-mode
  1831. org-agenda-entry-text-mode
  1832. org-agenda-clockreport-mode
  1833. org-agenda-show-log
  1834. org-agenda-redo-command
  1835. org-agenda-query-string
  1836. org-agenda-type
  1837. org-agenda-bulk-marked-entries
  1838. org-agenda-undo-has-started-in
  1839. org-agenda-info
  1840. org-agenda-pre-window-conf
  1841. org-agenda-columns-active
  1842. org-agenda-tag-filter
  1843. org-agenda-category-filter
  1844. org-agenda-top-headline-filter
  1845. org-agenda-regexp-filter
  1846. org-agenda-effort-filter
  1847. org-agenda-markers
  1848. org-agenda-last-search-view-search-was-boolean
  1849. org-agenda-last-indirect-buffer
  1850. org-agenda-filtered-by-category
  1851. org-agenda-filter-form
  1852. org-agenda-cycle-counter
  1853. org-agenda-last-prefix-arg)
  1854. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1855. (defun org-agenda-mode ()
  1856. "Mode for time-sorted view on action items in Org-mode files.
  1857. The following commands are available:
  1858. \\{org-agenda-mode-map}"
  1859. (interactive)
  1860. (cond (org-agenda-doing-sticky-redo
  1861. ;; Refreshing sticky agenda-buffer
  1862. ;;
  1863. ;; Preserve the value of `org-agenda-local-vars' variables,
  1864. ;; while letting `kill-all-local-variables' kill the rest
  1865. (let ((save (buffer-local-variables)))
  1866. (kill-all-local-variables)
  1867. (mapc 'make-local-variable org-agenda-local-vars)
  1868. (dolist (elem save)
  1869. (let ((var (car elem))
  1870. (val (cdr elem)))
  1871. (when (and val
  1872. (member var org-agenda-local-vars))
  1873. (set var val)))))
  1874. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1875. (org-agenda-sticky
  1876. ;; Creating a sticky Agenda buffer for the first time
  1877. (kill-all-local-variables)
  1878. (mapc 'make-local-variable org-agenda-local-vars)
  1879. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1880. (t
  1881. ;; Creating a non-sticky agenda buffer
  1882. (kill-all-local-variables)
  1883. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1884. (setq org-agenda-undo-list nil
  1885. org-agenda-pending-undo-list nil
  1886. org-agenda-bulk-marked-entries nil)
  1887. (setq major-mode 'org-agenda-mode)
  1888. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1889. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1890. (setq mode-name "Org-Agenda")
  1891. (setq indent-tabs-mode nil)
  1892. (use-local-map org-agenda-mode-map)
  1893. (easy-menu-add org-agenda-menu)
  1894. (if org-startup-truncated (setq truncate-lines t))
  1895. (org-set-local 'line-move-visual nil)
  1896. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1897. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1898. ;; Make sure properties are removed when copying text
  1899. (org-add-hook 'filter-buffer-substring-functions
  1900. (lambda (fun start end delete)
  1901. (substring-no-properties (funcall fun start end delete)))
  1902. nil t)
  1903. (unless org-agenda-keep-modes
  1904. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1905. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
  1906. (setq org-agenda-show-log org-agenda-start-with-log-mode)
  1907. (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
  1908. (add-to-invisibility-spec '(org-filtered))
  1909. (add-to-invisibility-spec '(org-link))
  1910. (easy-menu-change
  1911. '("Agenda") "Agenda Files"
  1912. (append
  1913. (list
  1914. (vector
  1915. (if (get 'org-agenda-files 'org-restrict)
  1916. "Restricted to single file"
  1917. "Edit File List")
  1918. '(org-edit-agenda-file-list)
  1919. (not (get 'org-agenda-files 'org-restrict)))
  1920. "--")
  1921. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1922. (org-agenda-set-mode-name)
  1923. (apply
  1924. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1925. (list 'org-agenda-mode-hook)))
  1926. (substitute-key-definition 'undo 'org-agenda-undo
  1927. org-agenda-mode-map global-map)
  1928. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1929. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1930. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1931. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1932. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1933. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1934. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1935. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1936. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1937. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1938. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1939. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1940. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1941. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1942. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1943. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1944. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1945. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1946. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1947. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1948. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1949. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1950. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1951. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1952. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1954. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1955. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1956. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1957. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1958. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1959. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1960. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1961. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1962. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1963. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1964. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1965. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1966. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1967. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1968. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1969. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1970. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1971. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1972. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1973. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1974. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1975. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1976. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1977. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1978. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1979. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1980. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1981. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1982. (while l (org-defkey org-agenda-mode-map
  1983. (int-to-string (pop l)) 'digit-argument)))
  1984. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1985. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1986. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1987. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1988. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1989. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1990. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1991. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1992. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1993. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1994. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1995. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1996. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1997. 'org-clock-modify-effort-estimate)
  1998. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1999. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2000. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2001. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2002. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2003. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2004. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2005. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2006. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2007. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2008. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2009. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2010. (substitute-key-definition 'next-line 'org-agenda-next-line
  2011. org-agenda-mode-map global-map)
  2012. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2013. org-agenda-mode-map global-map)
  2014. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2015. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2016. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2017. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2018. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2019. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2020. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2021. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2022. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2023. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2024. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2025. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2026. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2027. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2028. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2029. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2030. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2031. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2033. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2034. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2035. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2036. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2037. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2038. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2039. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2040. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2041. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2042. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2043. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2044. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2045. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2046. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2047. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2048. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2049. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2050. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2051. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2052. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  2053. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2054. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2055. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2056. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2057. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2059. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2060. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2061. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2062. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2063. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2064. (when org-agenda-mouse-1-follows-link
  2065. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2066. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2067. '("Agenda"
  2068. ("Agenda Files")
  2069. "--"
  2070. ("Agenda Dates"
  2071. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2072. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2073. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2074. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2075. "--"
  2076. ("View"
  2077. ["Day View" org-agenda-day-view
  2078. :active (org-agenda-check-type nil 'agenda)
  2079. :style radio :selected (eq org-agenda-current-span 'day)
  2080. :keys "v d (or just d)"]
  2081. ["Week View" org-agenda-week-view
  2082. :active (org-agenda-check-type nil 'agenda)
  2083. :style radio :selected (eq org-agenda-current-span 'week)
  2084. :keys "v w"]
  2085. ["Fortnight View" org-agenda-fortnight-view
  2086. :active (org-agenda-check-type nil 'agenda)
  2087. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2088. :keys "v f"]
  2089. ["Month View" org-agenda-month-view
  2090. :active (org-agenda-check-type nil 'agenda)
  2091. :style radio :selected (eq org-agenda-current-span 'month)
  2092. :keys "v m"]
  2093. ["Year View" org-agenda-year-view
  2094. :active (org-agenda-check-type nil 'agenda)
  2095. :style radio :selected (eq org-agenda-current-span 'year)
  2096. :keys "v y"]
  2097. "--"
  2098. ["Include Diary" org-agenda-toggle-diary
  2099. :style toggle :selected org-agenda-include-diary
  2100. :active (org-agenda-check-type nil 'agenda)]
  2101. ["Include Deadlines" org-agenda-toggle-deadlines
  2102. :style toggle :selected org-agenda-include-deadlines
  2103. :active (org-agenda-check-type nil 'agenda)]
  2104. ["Use Time Grid" org-agenda-toggle-time-grid
  2105. :style toggle :selected org-agenda-use-time-grid
  2106. :active (org-agenda-check-type nil 'agenda)]
  2107. "--"
  2108. ["Show clock report" org-agenda-clockreport-mode
  2109. :style toggle :selected org-agenda-clockreport-mode
  2110. :active (org-agenda-check-type nil 'agenda)]
  2111. ["Show some entry text" org-agenda-entry-text-mode
  2112. :style toggle :selected org-agenda-entry-text-mode
  2113. :active t]
  2114. "--"
  2115. ["Show Logbook entries" org-agenda-log-mode
  2116. :style toggle :selected org-agenda-show-log
  2117. :active (org-agenda-check-type nil 'agenda 'timeline)
  2118. :keys "v l (or just l)"]
  2119. ["Include archived trees" org-agenda-archives-mode
  2120. :style toggle :selected org-agenda-archives-mode :active t
  2121. :keys "v a"]
  2122. ["Include archive files" (org-agenda-archives-mode t)
  2123. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2124. :keys "v A"]
  2125. "--"
  2126. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2127. ["Write view to file" org-agenda-write t]
  2128. ["Rebuild buffer" org-agenda-redo t]
  2129. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2130. "--"
  2131. ["Show original entry" org-agenda-show t]
  2132. ["Go To (other window)" org-agenda-goto t]
  2133. ["Go To (this window)" org-agenda-switch-to t]
  2134. ["Capture with cursor date" org-agenda-capture t]
  2135. ["Follow Mode" org-agenda-follow-mode
  2136. :style toggle :selected org-agenda-follow-mode :active t]
  2137. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2138. "--"
  2139. ("TODO"
  2140. ["Cycle TODO" org-agenda-todo t]
  2141. ["Next TODO set" org-agenda-todo-nextset t]
  2142. ["Previous TODO set" org-agenda-todo-previousset t]
  2143. ["Add note" org-agenda-add-note t])
  2144. ("Archive/Refile/Delete"
  2145. ["Archive default" org-agenda-archive-default t]
  2146. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2147. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2148. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2149. ["Archive subtree" org-agenda-archive t]
  2150. "--"
  2151. ["Refile" org-agenda-refile t]
  2152. "--"
  2153. ["Delete subtree" org-agenda-kill t])
  2154. ("Bulk action"
  2155. ["Mark entry" org-agenda-bulk-mark t]
  2156. ["Mark all" org-agenda-bulk-mark-all t]
  2157. ["Unmark entry" org-agenda-bulk-unmark t]
  2158. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2159. ["Toggle mark" org-agenda-bulk-toggle t]
  2160. ["Toggle all" org-agenda-bulk-toggle-all t]
  2161. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2162. ["Act on all marked" org-agenda-bulk-action t]
  2163. "--"
  2164. ("Tags and Properties"
  2165. ["Show all Tags" org-agenda-show-tags t]
  2166. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2167. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2168. "--"
  2169. ["Column View" org-columns t])
  2170. ("Deadline/Schedule"
  2171. ["Schedule" org-agenda-schedule t]
  2172. ["Set Deadline" org-agenda-deadline t]
  2173. "--"
  2174. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2175. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2176. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2177. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2178. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2179. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2180. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2181. ("Clock and Effort"
  2182. ["Clock in" org-agenda-clock-in t]
  2183. ["Clock out" org-agenda-clock-out t]
  2184. ["Clock cancel" org-agenda-clock-cancel t]
  2185. ["Goto running clock" org-clock-goto t]
  2186. "--"
  2187. ["Set Effort" org-agenda-set-effort t]
  2188. ["Change clocked effort" org-clock-modify-effort-estimate
  2189. (org-clock-is-active)])
  2190. ("Priority"
  2191. ["Set Priority" org-agenda-priority t]
  2192. ["Increase Priority" org-agenda-priority-up t]
  2193. ["Decrease Priority" org-agenda-priority-down t]
  2194. ["Show Priority" org-show-priority t])
  2195. ("Calendar/Diary"
  2196. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2197. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2198. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2199. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2200. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2201. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2202. "--"
  2203. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2204. "--"
  2205. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2206. "--"
  2207. ("MobileOrg"
  2208. ["Push Files and Views" org-mobile-push t]
  2209. ["Get Captured and Flagged" org-mobile-pull t]
  2210. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2211. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2212. "--"
  2213. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2214. "--"
  2215. ["Quit" org-agenda-quit t]
  2216. ["Exit and Release Buffers" org-agenda-exit t]
  2217. ))
  2218. ;;; Agenda undo
  2219. (defvar org-agenda-allow-remote-undo t
  2220. "Non-nil means allow remote undo from the agenda buffer.")
  2221. (defvar org-agenda-undo-has-started-in nil
  2222. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2223. (defun org-agenda-undo ()
  2224. "Undo a remote editing step in the agenda.
  2225. This undoes changes both in the agenda buffer and in the remote buffer
  2226. that have been changed along."
  2227. (interactive)
  2228. (or org-agenda-allow-remote-undo
  2229. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2230. (if (not (eq this-command last-command))
  2231. (setq org-agenda-undo-has-started-in nil
  2232. org-agenda-pending-undo-list org-agenda-undo-list))
  2233. (if (not org-agenda-pending-undo-list)
  2234. (user-error "No further undo information"))
  2235. (let* ((entry (pop org-agenda-pending-undo-list))
  2236. buf line cmd rembuf)
  2237. (setq cmd (pop entry) line (pop entry))
  2238. (setq rembuf (nth 2 entry))
  2239. (org-with-remote-undo rembuf
  2240. (while (bufferp (setq buf (pop entry)))
  2241. (if (pop entry)
  2242. (with-current-buffer buf
  2243. (let ((last-undo-buffer buf)
  2244. (inhibit-read-only t))
  2245. (unless (memq buf org-agenda-undo-has-started-in)
  2246. (push buf org-agenda-undo-has-started-in)
  2247. (make-local-variable 'pending-undo-list)
  2248. (undo-start))
  2249. (while (and pending-undo-list
  2250. (listp pending-undo-list)
  2251. (not (car pending-undo-list)))
  2252. (pop pending-undo-list))
  2253. (undo-more 1))))))
  2254. (org-goto-line line)
  2255. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2256. (defun org-verify-change-for-undo (l1 l2)
  2257. "Verify that a real change occurred between the undo lists L1 and L2."
  2258. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2259. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2260. (not (eq l1 l2)))
  2261. ;;; Agenda dispatch
  2262. (defvar org-agenda-restrict-begin (make-marker))
  2263. (defvar org-agenda-restrict-end (make-marker))
  2264. (defvar org-agenda-last-dispatch-buffer nil)
  2265. (defvar org-agenda-overriding-restriction nil)
  2266. (defcustom org-agenda-custom-commands-contexts nil
  2267. "Alist of custom agenda keys and contextual rules.
  2268. For example, if you have a custom agenda command \"p\" and you
  2269. want this command to be accessible only from plain text files,
  2270. use this:
  2271. '((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2272. Here are the available contexts definitions:
  2273. in-file: command displayed only in matching files
  2274. in-mode: command displayed only in matching modes
  2275. not-in-file: command not displayed in matching files
  2276. not-in-mode: command not displayed in matching modes
  2277. in-buffer: command displayed only in matching buffers
  2278. not-in-buffer: command not displayed in matching buffers
  2279. [function]: a custom function taking no argument
  2280. If you define several checks, the agenda command will be
  2281. accessible if there is at least one valid check.
  2282. You can also bind a key to another agenda custom command
  2283. depending on contextual rules.
  2284. '((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2285. Here it means: in .txt files, use \"p\" as the key for the
  2286. agenda command otherwise associated with \"q\". (The command
  2287. originally associated with \"q\" is not displayed to avoid
  2288. duplicates.)"
  2289. :version "24.3"
  2290. :group 'org-agenda-custom-commands
  2291. :type '(repeat (list :tag "Rule"
  2292. (string :tag " Agenda key")
  2293. (string :tag "Replace by command")
  2294. (repeat :tag "Available when"
  2295. (choice
  2296. (cons :tag "Condition"
  2297. (choice
  2298. (const :tag "In file" in-file)
  2299. (const :tag "Not in file" not-in-file)
  2300. (const :tag "In buffer" in-buffer)
  2301. (const :tag "Not in buffer" not-in-buffer)
  2302. (const :tag "In mode" in-mode)
  2303. (const :tag "Not in mode" not-in-mode))
  2304. (regexp))
  2305. (function :tag "Custom function"))))))
  2306. (defcustom org-agenda-max-entries nil
  2307. "Maximum number of entries to display in an agenda.
  2308. This can be nil (no limit) or an integer or an alist of agenda
  2309. types with an associated number of entries to display in this
  2310. type."
  2311. :version "24.4"
  2312. :package-version '(Org . "8.0")
  2313. :group 'org-agenda-custom-commands
  2314. :type '(choice (symbol :tag "No limit" nil)
  2315. (integer :tag "Max number of entries")
  2316. (repeat
  2317. (cons (choice :tag "Agenda type"
  2318. (const agenda)
  2319. (const todo)
  2320. (const tags)
  2321. (const search)
  2322. (const timeline))
  2323. (integer :tag "Max number of entries")))))
  2324. (defcustom org-agenda-max-todos nil
  2325. "Maximum number of TODOs to display in an agenda.
  2326. This can be nil (no limit) or an integer or an alist of agenda
  2327. types with an associated number of entries to display in this
  2328. type."
  2329. :version "24.4"
  2330. :package-version '(Org . "8.0")
  2331. :group 'org-agenda-custom-commands
  2332. :type '(choice (symbol :tag "No limit" nil)
  2333. (integer :tag "Max number of TODOs")
  2334. (repeat
  2335. (cons (choice :tag "Agenda type"
  2336. (const agenda)
  2337. (const todo)
  2338. (const tags)
  2339. (const search)
  2340. (const timeline))
  2341. (integer :tag "Max number of TODOs")))))
  2342. (defcustom org-agenda-max-tags nil
  2343. "Maximum number of tagged entries to display in an agenda.
  2344. This can be nil (no limit) or an integer or an alist of agenda
  2345. types with an associated number of entries to display in this
  2346. type."
  2347. :version "24.4"
  2348. :package-version '(Org . "8.0")
  2349. :group 'org-agenda-custom-commands
  2350. :type '(choice (symbol :tag "No limit" nil)
  2351. (integer :tag "Max number of tagged entries")
  2352. (repeat
  2353. (cons (choice :tag "Agenda type"
  2354. (const agenda)
  2355. (const todo)
  2356. (const tags)
  2357. (const search)
  2358. (const timeline))
  2359. (integer :tag "Max number of tagged entries")))))
  2360. (defcustom org-agenda-max-effort nil
  2361. "Maximum cumulated effort duration for the agenda.
  2362. This can be nil (no limit) or a number of minutes (as an integer)
  2363. or an alist of agenda types with an associated number of minutes
  2364. to limit entries to in this type."
  2365. :version "24.4"
  2366. :package-version '(Org . "8.0")
  2367. :group 'org-agenda-custom-commands
  2368. :type '(choice (symbol :tag "No limit" nil)
  2369. (integer :tag "Max number of minutes")
  2370. (repeat
  2371. (cons (choice :tag "Agenda type"
  2372. (const agenda)
  2373. (const todo)
  2374. (const tags)
  2375. (const search)
  2376. (const timeline))
  2377. (integer :tag "Max number of minutes")))))
  2378. (defvar org-keys nil)
  2379. (defvar org-match nil)
  2380. ;;;###autoload
  2381. (defun org-agenda (&optional arg org-keys restriction)
  2382. "Dispatch agenda commands to collect entries to the agenda buffer.
  2383. Prompts for a command to execute. Any prefix arg will be passed
  2384. on to the selected command. The default selections are:
  2385. a Call `org-agenda-list' to display the agenda for current day or week.
  2386. t Call `org-todo-list' to display the global todo list.
  2387. T Call `org-todo-list' to display the global todo list, select only
  2388. entries with a specific TODO keyword (the user gets a prompt).
  2389. m Call `org-tags-view' to display headlines with tags matching
  2390. a condition (the user is prompted for the condition).
  2391. M Like `m', but select only TODO entries, no ordinary headlines.
  2392. L Create a timeline for the current buffer.
  2393. e Export views to associated files.
  2394. s Search entries for keywords.
  2395. S Search entries for keywords, only with TODO keywords.
  2396. / Multi occur across all agenda files and also files listed
  2397. in `org-agenda-text-search-extra-files'.
  2398. < Restrict agenda commands to buffer, subtree, or region.
  2399. Press several times to get the desired effect.
  2400. > Remove a previous restriction.
  2401. # List \"stuck\" projects.
  2402. ! Configure what \"stuck\" means.
  2403. C Configure custom agenda commands.
  2404. More commands can be added by configuring the variable
  2405. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2406. searches can be pre-defined in this way.
  2407. If the current buffer is in Org-mode and visiting a file, you can also
  2408. first press `<' once to indicate that the agenda should be temporarily
  2409. \(until the next use of \\[org-agenda]) restricted to the current file.
  2410. Pressing `<' twice means to restrict to the current subtree or region
  2411. \(if active)."
  2412. (interactive "P")
  2413. (catch 'exit
  2414. (let* ((prefix-descriptions nil)
  2415. (org-agenda-buffer-name org-agenda-buffer-name)
  2416. (org-agenda-window-setup (if (equal (buffer-name)
  2417. org-agenda-buffer-name)
  2418. 'current-window
  2419. org-agenda-window-setup))
  2420. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2421. (org-agenda-custom-commands
  2422. ;; normalize different versions
  2423. (delq nil
  2424. (mapcar
  2425. (lambda (x)
  2426. (cond ((stringp (cdr x))
  2427. (push x prefix-descriptions)
  2428. nil)
  2429. ((stringp (nth 1 x)) x)
  2430. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2431. (t (cons (car x) (cons "" (cdr x))))))
  2432. org-agenda-custom-commands)))
  2433. (org-agenda-custom-commands
  2434. (org-contextualize-keys
  2435. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2436. (buf (current-buffer))
  2437. (bfn (buffer-file-name (buffer-base-buffer)))
  2438. entry key type org-match lprops ans)
  2439. ;; Turn off restriction unless there is an overriding one,
  2440. (unless org-agenda-overriding-restriction
  2441. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2442. ;; There is a request to keep the file list in place
  2443. (put 'org-agenda-files 'org-restrict nil))
  2444. (setq org-agenda-restrict nil)
  2445. (move-marker org-agenda-restrict-begin nil)
  2446. (move-marker org-agenda-restrict-end nil))
  2447. ;; Delete old local properties
  2448. (put 'org-agenda-redo-command 'org-lprops nil)
  2449. ;; Delete previously set last-arguments
  2450. (put 'org-agenda-redo-command 'last-args nil)
  2451. ;; Remember where this call originated
  2452. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2453. (unless org-keys
  2454. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2455. org-keys (car ans)
  2456. restriction (cdr ans)))
  2457. ;; If we have sticky agenda buffers, set a name for the buffer,
  2458. ;; depending on the invoking keys. The user may still set this
  2459. ;; as a command option, which will overwrite what we do here.
  2460. (if org-agenda-sticky
  2461. (setq org-agenda-buffer-name
  2462. (format "*Org Agenda(%s)*" org-keys)))
  2463. ;; Establish the restriction, if any
  2464. (when (and (not org-agenda-overriding-restriction) restriction)
  2465. (put 'org-agenda-files 'org-restrict (list bfn))
  2466. (cond
  2467. ((eq restriction 'region)
  2468. (setq org-agenda-restrict (current-buffer))
  2469. (move-marker org-agenda-restrict-begin (region-beginning))
  2470. (move-marker org-agenda-restrict-end (region-end)))
  2471. ((eq restriction 'subtree)
  2472. (save-excursion
  2473. (setq org-agenda-restrict (current-buffer))
  2474. (org-back-to-heading t)
  2475. (move-marker org-agenda-restrict-begin (point))
  2476. (move-marker org-agenda-restrict-end
  2477. (progn (org-end-of-subtree t)))))))
  2478. ;; For example the todo list should not need it (but does...)
  2479. (cond
  2480. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2481. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2482. (progn
  2483. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2484. lprops (nth 4 entry))
  2485. (if org-agenda-sticky
  2486. (setq org-agenda-buffer-name
  2487. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2488. (format "*Org Agenda(%s)*" org-keys))))
  2489. (put 'org-agenda-redo-command 'org-lprops lprops)
  2490. (cond
  2491. ((eq type 'agenda)
  2492. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2493. ((eq type 'agenda*)
  2494. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2495. ((eq type 'alltodo)
  2496. (org-let lprops '(org-todo-list current-prefix-arg)))
  2497. ((eq type 'search)
  2498. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2499. ((eq type 'stuck)
  2500. (org-let lprops '(org-agenda-list-stuck-projects
  2501. current-prefix-arg)))
  2502. ((eq type 'tags)
  2503. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2504. ((eq type 'tags-todo)
  2505. (org-let lprops '(org-tags-view '(4) org-match)))
  2506. ((eq type 'todo)
  2507. (org-let lprops '(org-todo-list org-match)))
  2508. ((eq type 'tags-tree)
  2509. (org-check-for-org-mode)
  2510. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2511. ((eq type 'todo-tree)
  2512. (org-check-for-org-mode)
  2513. (org-let lprops
  2514. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2515. (regexp-quote org-match) "\\>"))))
  2516. ((eq type 'occur-tree)
  2517. (org-check-for-org-mode)
  2518. (org-let lprops '(org-occur org-match)))
  2519. ((functionp type)
  2520. (org-let lprops '(funcall type org-match)))
  2521. ((fboundp type)
  2522. (org-let lprops '(funcall type org-match)))
  2523. (t (user-error "Invalid custom agenda command type %s" type))))
  2524. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2525. ((equal org-keys "C")
  2526. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2527. (customize-variable 'org-agenda-custom-commands))
  2528. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2529. ((equal org-keys "s") (call-interactively 'org-search-view))
  2530. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2531. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2532. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2533. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2534. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2535. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2536. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2537. (org-add-hook
  2538. 'post-command-hook
  2539. (lambda ()
  2540. (unless (current-message)
  2541. (let* ((m (org-agenda-get-any-marker))
  2542. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2543. (when note
  2544. (message (concat
  2545. "FLAGGING-NOTE ([?] for more info): "
  2546. (org-add-props
  2547. (replace-regexp-in-string
  2548. "\\\\n" "//"
  2549. (copy-sequence note))
  2550. nil 'face 'org-warning)))))))
  2551. t t))
  2552. ((equal org-keys "L")
  2553. (unless (derived-mode-p 'org-mode)
  2554. (user-error "This is not an Org-mode file"))
  2555. (unless restriction
  2556. (put 'org-agenda-files 'org-restrict (list bfn))
  2557. (org-call-with-arg 'org-timeline arg)))
  2558. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2559. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2560. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2561. (t (user-error "Invalid agenda key"))))))
  2562. (defvar org-agenda-multi)
  2563. (defun org-agenda-append-agenda ()
  2564. "Append another agenda view to the current one.
  2565. This function allows interactive building of block agendas.
  2566. Agenda views are separated by `org-agenda-block-separator'."
  2567. (interactive)
  2568. (unless (derived-mode-p 'org-agenda-mode)
  2569. (user-error "Can only append from within agenda buffer"))
  2570. (let ((org-agenda-multi t))
  2571. (org-agenda)
  2572. (widen)
  2573. (org-agenda-finalize)
  2574. (setq buffer-read-only t)
  2575. (org-agenda-fit-window-to-buffer)))
  2576. (defun org-agenda-normalize-custom-commands (cmds)
  2577. "Normalize custom commands CMDS."
  2578. (delq nil
  2579. (mapcar
  2580. (lambda (x)
  2581. (cond ((stringp (cdr x)) nil)
  2582. ((stringp (nth 1 x)) x)
  2583. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2584. (t (cons (car x) (cons "" (cdr x))))))
  2585. cmds)))
  2586. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2587. "The user interface for selecting an agenda command."
  2588. (catch 'exit
  2589. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2590. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2591. (region-p (org-region-active-p))
  2592. (custom org-agenda-custom-commands)
  2593. (selstring "")
  2594. restriction second-time
  2595. c entry key type match prefixes rmheader header-end custom1 desc
  2596. line lines left right n n1)
  2597. (save-window-excursion
  2598. (delete-other-windows)
  2599. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2600. (erase-buffer)
  2601. (insert (eval-when-compile
  2602. (let ((header
  2603. "Press key for an agenda command: < Buffer, subtree/region restriction
  2604. -------------------------------- > Remove restriction
  2605. a Agenda for current week or day e Export agenda views
  2606. t List of all TODO entries T Entries with special TODO kwd
  2607. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2608. s Search for keywords S Like s, but only TODO entries
  2609. L Timeline for current buffer # List stuck projects (!=configure)
  2610. / Multi-occur C Configure custom agenda commands
  2611. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2612. ")
  2613. (start 0))
  2614. (while (string-match
  2615. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2616. header start)
  2617. (setq start (match-end 0))
  2618. (add-text-properties (match-beginning 2) (match-end 2)
  2619. '(face bold) header))
  2620. header)))
  2621. (setq header-end (point-marker))
  2622. (while t
  2623. (setq custom1 custom)
  2624. (when (eq rmheader t)
  2625. (org-goto-line 1)
  2626. (re-search-forward ":" nil t)
  2627. (delete-region (match-end 0) (point-at-eol))
  2628. (forward-char 1)
  2629. (looking-at "-+")
  2630. (delete-region (match-end 0) (point-at-eol))
  2631. (move-marker header-end (match-end 0)))
  2632. (goto-char header-end)
  2633. (delete-region (point) (point-max))
  2634. ;; Produce all the lines that describe custom commands and prefixes
  2635. (setq lines nil)
  2636. (while (setq entry (pop custom1))
  2637. (setq key (car entry) desc (nth 1 entry)
  2638. type (nth 2 entry)
  2639. match (nth 3 entry))
  2640. (if (> (length key) 1)
  2641. (add-to-list 'prefixes (string-to-char key))
  2642. (setq line
  2643. (format
  2644. "%-4s%-14s"
  2645. (org-add-props (copy-sequence key)
  2646. '(face bold))
  2647. (cond
  2648. ((string-match "\\S-" desc) desc)
  2649. ((eq type 'agenda) "Agenda for current week or day")
  2650. ((eq type 'agenda*) "Appointments for current week or day")
  2651. ((eq type 'alltodo) "List of all TODO entries")
  2652. ((eq type 'search) "Word search")
  2653. ((eq type 'stuck) "List of stuck projects")
  2654. ((eq type 'todo) "TODO keyword")
  2655. ((eq type 'tags) "Tags query")
  2656. ((eq type 'tags-todo) "Tags (TODO)")
  2657. ((eq type 'tags-tree) "Tags tree")
  2658. ((eq type 'todo-tree) "TODO kwd tree")
  2659. ((eq type 'occur-tree) "Occur tree")
  2660. ((functionp type) (if (symbolp type)
  2661. (symbol-name type)
  2662. "Lambda expression"))
  2663. (t "???"))))
  2664. (if org-agenda-menu-show-matcher
  2665. (setq line
  2666. (concat line ": "
  2667. (cond
  2668. ((stringp match)
  2669. (setq match (copy-sequence match))
  2670. (org-add-props match nil 'face 'org-warning))
  2671. ((listp type)
  2672. (format "set of %d commands" (length type))))))
  2673. (if (org-string-nw-p match)
  2674. (add-text-properties
  2675. 0 (length line) (list 'help-echo
  2676. (concat "Matcher: " match)) line)))
  2677. (push line lines)))
  2678. (setq lines (nreverse lines))
  2679. (when prefixes
  2680. (mapc (lambda (x)
  2681. (push
  2682. (format "%s %s"
  2683. (org-add-props (char-to-string x)
  2684. nil 'face 'bold)
  2685. (or (cdr (assoc (concat selstring
  2686. (char-to-string x))
  2687. prefix-descriptions))
  2688. "Prefix key"))
  2689. lines))
  2690. prefixes))
  2691. ;; Check if we should display in two columns
  2692. (if org-agenda-menu-two-columns
  2693. (progn
  2694. (setq n (length lines)
  2695. n1 (+ (/ n 2) (mod n 2))
  2696. right (nthcdr n1 lines)
  2697. left (copy-sequence lines))
  2698. (setcdr (nthcdr (1- n1) left) nil))
  2699. (setq left lines right nil))
  2700. (while left
  2701. (insert "\n" (pop left))
  2702. (when right
  2703. (if (< (current-column) 40)
  2704. (move-to-column 40 t)
  2705. (insert " "))
  2706. (insert (pop right))))
  2707. ;; Make the window the right size
  2708. (goto-char (point-min))
  2709. (if second-time
  2710. (if (not (pos-visible-in-window-p (point-max)))
  2711. (org-fit-window-to-buffer))
  2712. (setq second-time t)
  2713. (org-fit-window-to-buffer))
  2714. ;; Ask for selection
  2715. (message "Press key for agenda command%s:"
  2716. (if (or restrict-ok org-agenda-overriding-restriction)
  2717. (if org-agenda-overriding-restriction
  2718. " (restriction lock active)"
  2719. (if restriction
  2720. (format " (restricted to %s)" restriction)
  2721. " (unrestricted)"))
  2722. ""))
  2723. (setq c (read-char-exclusive))
  2724. (message "")
  2725. (cond
  2726. ((assoc (char-to-string c) custom)
  2727. (setq selstring (concat selstring (char-to-string c)))
  2728. (throw 'exit (cons selstring restriction)))
  2729. ((memq c prefixes)
  2730. (setq selstring (concat selstring (char-to-string c))
  2731. prefixes nil
  2732. rmheader (or rmheader t)
  2733. custom (delq nil (mapcar
  2734. (lambda (x)
  2735. (if (or (= (length (car x)) 1)
  2736. (/= (string-to-char (car x)) c))
  2737. nil
  2738. (cons (substring (car x) 1) (cdr x))))
  2739. custom))))
  2740. ((eq c ?*)
  2741. (call-interactively 'org-toggle-sticky-agenda)
  2742. (sit-for 2))
  2743. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2744. (message "Restriction is only possible in Org-mode buffers")
  2745. (ding) (sit-for 1))
  2746. ((eq c ?1)
  2747. (org-agenda-remove-restriction-lock 'noupdate)
  2748. (setq restriction 'buffer))
  2749. ((eq c ?0)
  2750. (org-agenda-remove-restriction-lock 'noupdate)
  2751. (setq restriction (if region-p 'region 'subtree)))
  2752. ((eq c ?<)
  2753. (org-agenda-remove-restriction-lock 'noupdate)
  2754. (setq restriction
  2755. (cond
  2756. ((eq restriction 'buffer)
  2757. (if region-p 'region 'subtree))
  2758. ((memq restriction '(subtree region))
  2759. nil)
  2760. (t 'buffer))))
  2761. ((eq c ?>)
  2762. (org-agenda-remove-restriction-lock 'noupdate)
  2763. (setq restriction nil))
  2764. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2765. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2766. ((and (> (length selstring) 0) (eq c ?\d))
  2767. (delete-window)
  2768. (org-agenda-get-restriction-and-command prefix-descriptions))
  2769. ((equal c ?q) (error "Abort"))
  2770. (t (user-error "Invalid key %c" c))))))))
  2771. (defun org-agenda-fit-window-to-buffer ()
  2772. "Fit the window to the buffer size."
  2773. (and (memq org-agenda-window-setup '(reorganize-frame))
  2774. (fboundp 'fit-window-to-buffer)
  2775. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2776. (= (car org-agenda-window-frame-fractions) 1.0))
  2777. (delete-other-windows)
  2778. (org-fit-window-to-buffer
  2779. nil
  2780. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2781. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2782. (defvar org-cmd nil)
  2783. (defvar org-agenda-overriding-cmd nil)
  2784. (defvar org-agenda-overriding-arguments nil)
  2785. (defvar org-agenda-overriding-cmd-arguments nil)
  2786. (defun org-agenda-run-series (name series)
  2787. "Run agenda NAME as a SERIES of agenda commands."
  2788. (org-let (nth 1 series) '(org-agenda-prepare name))
  2789. ;; We need to reset agenda markers here, because when constructing a
  2790. ;; block agenda, the individual blocks do not do that.
  2791. (org-agenda-reset-markers)
  2792. (let* ((org-agenda-multi t)
  2793. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2794. (cmds (car series))
  2795. (gprops (nth 1 series))
  2796. match ;; The byte compiler incorrectly complains about this. Keep it!
  2797. org-cmd type lprops)
  2798. (while (setq org-cmd (pop cmds))
  2799. (setq type (car org-cmd)
  2800. match (eval (nth 1 org-cmd))
  2801. lprops (nth 2 org-cmd))
  2802. (let ((org-agenda-overriding-arguments
  2803. (if (eq org-agenda-overriding-cmd org-cmd)
  2804. (or org-agenda-overriding-arguments
  2805. org-agenda-overriding-cmd-arguments))))
  2806. (cond
  2807. ((eq type 'agenda)
  2808. (org-let2 gprops lprops
  2809. '(call-interactively 'org-agenda-list)))
  2810. ((eq type 'agenda*)
  2811. (org-let2 gprops lprops
  2812. '(funcall 'org-agenda-list nil nil t)))
  2813. ((eq type 'alltodo)
  2814. (org-let2 gprops lprops
  2815. '(call-interactively 'org-todo-list)))
  2816. ((eq type 'search)
  2817. (org-let2 gprops lprops
  2818. '(org-search-view current-prefix-arg match nil)))
  2819. ((eq type 'stuck)
  2820. (org-let2 gprops lprops
  2821. '(call-interactively 'org-agenda-list-stuck-projects)))
  2822. ((eq type 'tags)
  2823. (org-let2 gprops lprops
  2824. '(org-tags-view current-prefix-arg match)))
  2825. ((eq type 'tags-todo)
  2826. (org-let2 gprops lprops
  2827. '(org-tags-view '(4) match)))
  2828. ((eq type 'todo)
  2829. (org-let2 gprops lprops
  2830. '(org-todo-list match)))
  2831. ((fboundp type)
  2832. (org-let2 gprops lprops
  2833. '(funcall type match)))
  2834. (t (error "Invalid type in command series")))))
  2835. (widen)
  2836. (let ((inhibit-read-only t))
  2837. (add-text-properties (point-min) (point-max)
  2838. `(org-series t org-series-redo-cmd ,redo)))
  2839. (setq org-agenda-redo-command redo)
  2840. (goto-char (point-min)))
  2841. (org-agenda-fit-window-to-buffer)
  2842. (org-let (nth 1 series) '(org-agenda-finalize)))
  2843. ;;;###autoload
  2844. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2845. "Run an agenda command in batch mode and send the result to STDOUT.
  2846. If CMD-KEY is a string of length 1, it is used as a key in
  2847. `org-agenda-custom-commands' and triggers this command. If it is a
  2848. longer string it is used as a tags/todo match string.
  2849. Parameters are alternating variable names and values that will be bound
  2850. before running the agenda command."
  2851. (org-eval-in-environment (org-make-parameter-alist parameters)
  2852. (let (org-agenda-sticky)
  2853. (if (> (length cmd-key) 2)
  2854. (org-tags-view nil cmd-key)
  2855. (org-agenda nil cmd-key))))
  2856. (set-buffer org-agenda-buffer-name)
  2857. (princ (buffer-string)))
  2858. (defvar org-agenda-info nil)
  2859. ;;;###autoload
  2860. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2861. "Run an agenda command in batch mode and send the result to STDOUT.
  2862. If CMD-KEY is a string of length 1, it is used as a key in
  2863. `org-agenda-custom-commands' and triggers this command. If it is a
  2864. longer string it is used as a tags/todo match string.
  2865. Parameters are alternating variable names and values that will be bound
  2866. before running the agenda command.
  2867. The output gives a line for each selected agenda item. Each
  2868. item is a list of comma-separated values, like this:
  2869. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2870. category The category of the item
  2871. head The headline, without TODO kwd, TAGS and PRIORITY
  2872. type The type of the agenda entry, can be
  2873. todo selected in TODO match
  2874. tagsmatch selected in tags match
  2875. diary imported from diary
  2876. deadline a deadline on given date
  2877. scheduled scheduled on given date
  2878. timestamp entry has timestamp on given date
  2879. closed entry was closed on given date
  2880. upcoming-deadline warning about deadline
  2881. past-scheduled forwarded scheduled item
  2882. block entry has date block including g. date
  2883. todo The todo keyword, if any
  2884. tags All tags including inherited ones, separated by colons
  2885. date The relevant date, like 2007-2-14
  2886. time The time, like 15:00-16:50
  2887. extra Sting with extra planning info
  2888. priority-l The priority letter if any was given
  2889. priority-n The computed numerical priority
  2890. agenda-day The day in the agenda where this is listed"
  2891. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2892. (org-make-parameter-alist parameters))
  2893. (if (> (length cmd-key) 2)
  2894. (org-tags-view nil cmd-key)
  2895. (org-agenda nil cmd-key)))
  2896. (set-buffer org-agenda-buffer-name)
  2897. (let* ((lines (org-split-string (buffer-string) "\n"))
  2898. line)
  2899. (while (setq line (pop lines))
  2900. (catch 'next
  2901. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2902. (setq org-agenda-info
  2903. (org-fix-agenda-info (text-properties-at 0 line)))
  2904. (princ
  2905. (mapconcat 'org-agenda-export-csv-mapper
  2906. '(org-category txt type todo tags date time extra
  2907. priority-letter priority agenda-day)
  2908. ","))
  2909. (princ "\n")))))
  2910. (defun org-fix-agenda-info (props)
  2911. "Make sure all properties on an agenda item have a canonical form.
  2912. This ensures the export commands can easily use it."
  2913. (let (tmp re)
  2914. (when (setq tmp (plist-get props 'tags))
  2915. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2916. (when (setq tmp (plist-get props 'date))
  2917. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2918. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2919. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2920. (setq tmp (calendar-date-string tmp)))
  2921. (setq props (plist-put props 'date tmp)))
  2922. (when (setq tmp (plist-get props 'day))
  2923. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2924. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2925. (setq tmp (calendar-date-string tmp)))
  2926. (setq props (plist-put props 'day tmp))
  2927. (setq props (plist-put props 'agenda-day tmp)))
  2928. (when (setq tmp (plist-get props 'txt))
  2929. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2930. (plist-put props 'priority-letter (match-string 1 tmp))
  2931. (setq tmp (replace-match "" t t tmp)))
  2932. (when (and (setq re (plist-get props 'org-todo-regexp))
  2933. (setq re (concat "\\`\\.*" re " ?"))
  2934. (string-match re tmp))
  2935. (plist-put props 'todo (match-string 1 tmp))
  2936. (setq tmp (replace-match "" t t tmp)))
  2937. (plist-put props 'txt tmp)))
  2938. props)
  2939. (defun org-agenda-export-csv-mapper (prop)
  2940. (let ((res (plist-get org-agenda-info prop)))
  2941. (setq res
  2942. (cond
  2943. ((not res) "")
  2944. ((stringp res) res)
  2945. (t (prin1-to-string res))))
  2946. (while (string-match "," res)
  2947. (setq res (replace-match ";" t t res)))
  2948. (org-trim res)))
  2949. ;;;###autoload
  2950. (defun org-store-agenda-views (&rest parameters)
  2951. "Store agenda views."
  2952. (interactive)
  2953. (eval (list 'org-batch-store-agenda-views)))
  2954. ;;;###autoload
  2955. (defmacro org-batch-store-agenda-views (&rest parameters)
  2956. "Run all custom agenda commands that have a file argument."
  2957. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2958. (pop-up-frames nil)
  2959. (dir default-directory)
  2960. (pars (org-make-parameter-alist parameters))
  2961. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2962. (save-window-excursion
  2963. (while cmds
  2964. (setq cmd (pop cmds)
  2965. thiscmdkey (car cmd)
  2966. thiscmdcmd (cdr cmd)
  2967. match (nth 2 thiscmdcmd)
  2968. bufname (if org-agenda-sticky
  2969. (or (and (stringp match)
  2970. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2971. (format "*Org Agenda(%s)*" thiscmdkey))
  2972. org-agenda-buffer-name)
  2973. cmd-or-set (nth 2 cmd)
  2974. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2975. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2976. (if (stringp files) (setq files (list files)))
  2977. (when files
  2978. (org-eval-in-environment (append org-agenda-exporter-settings
  2979. opts pars)
  2980. (org-agenda nil thiscmdkey))
  2981. (set-buffer bufname)
  2982. (while files
  2983. (org-eval-in-environment (append org-agenda-exporter-settings
  2984. opts pars)
  2985. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2986. (and (get-buffer bufname)
  2987. (kill-buffer bufname)))))))
  2988. (defvar org-agenda-current-span nil
  2989. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2990. (defun org-agenda-mark-header-line (pos)
  2991. "Mark the line at POS as an agenda structure header."
  2992. (save-excursion
  2993. (goto-char pos)
  2994. (put-text-property (point-at-bol) (point-at-eol)
  2995. 'org-agenda-structural-header t)
  2996. (when org-agenda-title-append
  2997. (put-text-property (point-at-bol) (point-at-eol)
  2998. 'org-agenda-title-append org-agenda-title-append))))
  2999. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3000. (defvar org-agenda-write-buffer-name "Agenda View")
  3001. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3002. "Write the current buffer (an agenda view) as a file.
  3003. Depending on the extension of the file name, plain text (.txt),
  3004. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3005. If the extension is .ics, translate visible agenda into iCalendar
  3006. format. If the extension is .org, collect all subtrees
  3007. corresponding to the agenda entries and add them in an .org file.
  3008. With prefix argument OPEN, open the new file immediately. If
  3009. NOSETTINGS is given, do not scope the settings of
  3010. `org-agenda-exporter-settings' into the export commands. This is
  3011. used when the settings have already been scoped and we do not
  3012. wish to overrule other, higher priority settings. If
  3013. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3014. the agenda to write."
  3015. (interactive "FWrite agenda to file: \nP")
  3016. (if (or (not (file-writable-p file))
  3017. (and (file-exists-p file)
  3018. (if (org-called-interactively-p 'any)
  3019. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3020. (user-error "Cannot write agenda to file %s" file))
  3021. (org-let (if nosettings nil org-agenda-exporter-settings)
  3022. '(save-excursion
  3023. (save-window-excursion
  3024. (let ((bs (copy-sequence (buffer-string))) beg content)
  3025. (with-temp-buffer
  3026. (rename-buffer org-agenda-write-buffer-name t)
  3027. (set-buffer-modified-p nil)
  3028. (insert bs)
  3029. (org-agenda-remove-marked-text 'org-filtered)
  3030. (run-hooks 'org-agenda-before-write-hook)
  3031. (cond
  3032. ((org-bound-and-true-p org-mobile-creating-agendas)
  3033. (org-mobile-write-agenda-for-mobile file))
  3034. ((string-match "\\.org\\'" file)
  3035. (let (content p m message-log-max)
  3036. (goto-char (point-min))
  3037. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3038. (goto-char p)
  3039. (setq m (get-text-property (point) 'org-hd-marker))
  3040. (when m
  3041. (push (save-excursion
  3042. (set-buffer (marker-buffer m))
  3043. (goto-char m)
  3044. (org-copy-subtree 1 nil t t)
  3045. org-subtree-clip)
  3046. content)))
  3047. (find-file file)
  3048. (erase-buffer)
  3049. (dolist (s content) (org-paste-subtree 1 s))
  3050. (write-file file)
  3051. (kill-buffer (current-buffer))
  3052. (message "Org file written to %s" file)))
  3053. ((string-match "\\.html?\\'" file)
  3054. (require 'htmlize)
  3055. (set-buffer (htmlize-buffer (current-buffer)))
  3056. (when org-agenda-export-html-style
  3057. ;; replace <style> section with org-agenda-export-html-style
  3058. (goto-char (point-min))
  3059. (kill-region (- (search-forward "<style") 6)
  3060. (search-forward "</style>"))
  3061. (insert org-agenda-export-html-style))
  3062. (write-file file)
  3063. (kill-buffer (current-buffer))
  3064. (message "HTML written to %s" file))
  3065. ((string-match "\\.ps\\'" file)
  3066. (require 'ps-print)
  3067. (ps-print-buffer-with-faces file)
  3068. (message "Postscript written to %s" file))
  3069. ((string-match "\\.pdf\\'" file)
  3070. (require 'ps-print)
  3071. (ps-print-buffer-with-faces
  3072. (concat (file-name-sans-extension file) ".ps"))
  3073. (call-process "ps2pdf" nil nil nil
  3074. (expand-file-name
  3075. (concat (file-name-sans-extension file) ".ps"))
  3076. (expand-file-name file))
  3077. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3078. (message "PDF written to %s" file))
  3079. ((string-match "\\.ics\\'" file)
  3080. (require 'ox-icalendar)
  3081. (org-icalendar-export-current-agenda (expand-file-name file)))
  3082. (t
  3083. (let ((bs (buffer-string)))
  3084. (find-file file)
  3085. (erase-buffer)
  3086. (insert bs)
  3087. (save-buffer 0)
  3088. (kill-buffer (current-buffer))
  3089. (message "Plain text written to %s" file))))))))
  3090. (set-buffer (or agenda-bufname
  3091. (and (org-called-interactively-p 'any) (buffer-name))
  3092. org-agenda-buffer-name)))
  3093. (when open (org-open-file file)))
  3094. (defun org-agenda-remove-marked-text (property &optional value)
  3095. "Delete all text marked with VALUE of PROPERTY.
  3096. VALUE defaults to t."
  3097. (let (beg)
  3098. (setq value (or value t))
  3099. (while (setq beg (text-property-any (point-min) (point-max)
  3100. property value))
  3101. (delete-region
  3102. beg (or (next-single-property-change beg property)
  3103. (point-max))))))
  3104. (defun org-agenda-add-entry-text ()
  3105. "Add entry text to agenda lines.
  3106. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3107. entry text following headings shown in the agenda.
  3108. Drawers will be excluded, also the line with scheduling/deadline info."
  3109. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3110. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3111. (let (m txt)
  3112. (goto-char (point-min))
  3113. (while (not (eobp))
  3114. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3115. (beginning-of-line 2)
  3116. (setq txt (org-agenda-get-some-entry-text
  3117. m org-agenda-add-entry-text-maxlines " > "))
  3118. (end-of-line 1)
  3119. (if (string-match "\\S-" txt)
  3120. (insert "\n" txt)
  3121. (or (eobp) (forward-char 1))))))))
  3122. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3123. &rest keep)
  3124. "Extract entry text from MARKER, at most N-LINES lines.
  3125. This will ignore drawers etc, just get the text.
  3126. If INDENT is given, prefix every line with this string. If KEEP is
  3127. given, it is a list of symbols, defining stuff that should not be
  3128. removed from the entry content. Currently only `planning' is allowed here."
  3129. (let (txt drawer-re kwd-time-re ind)
  3130. (save-excursion
  3131. (with-current-buffer (marker-buffer marker)
  3132. (if (not (derived-mode-p 'org-mode))
  3133. (setq txt "")
  3134. (save-excursion
  3135. (save-restriction
  3136. (widen)
  3137. (goto-char marker)
  3138. (end-of-line 1)
  3139. (setq txt (buffer-substring
  3140. (min (1+ (point)) (point-max))
  3141. (progn (outline-next-heading) (point)))
  3142. drawer-re org-drawer-regexp
  3143. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3144. ".*\n?"))
  3145. (with-temp-buffer
  3146. (insert txt)
  3147. (when org-agenda-add-entry-text-descriptive-links
  3148. (goto-char (point-min))
  3149. (while (org-activate-bracket-links (point-max))
  3150. (add-text-properties (match-beginning 0) (match-end 0)
  3151. '(face org-link))))
  3152. (goto-char (point-min))
  3153. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3154. (set-text-properties (match-beginning 0) (match-end 0)
  3155. nil))
  3156. (goto-char (point-min))
  3157. (while (re-search-forward drawer-re nil t)
  3158. (delete-region
  3159. (match-beginning 0)
  3160. (progn (re-search-forward
  3161. "^[ \t]*:END:.*\n?" nil 'move)
  3162. (point))))
  3163. (unless (member 'planning keep)
  3164. (goto-char (point-min))
  3165. (while (re-search-forward kwd-time-re nil t)
  3166. (replace-match "")))
  3167. (goto-char (point-min))
  3168. (when org-agenda-entry-text-exclude-regexps
  3169. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3170. (while (setq re (pop re-list))
  3171. (goto-char (point-min))
  3172. (while (re-search-forward re nil t)
  3173. (replace-match "")))))
  3174. (goto-char (point-max))
  3175. (skip-chars-backward " \t\n")
  3176. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3177. ;; find and remove min common indentation
  3178. (goto-char (point-min))
  3179. (untabify (point-min) (point-max))
  3180. (setq ind (org-get-indentation))
  3181. (while (not (eobp))
  3182. (unless (looking-at "[ \t]*$")
  3183. (setq ind (min ind (org-get-indentation))))
  3184. (beginning-of-line 2))
  3185. (goto-char (point-min))
  3186. (while (not (eobp))
  3187. (unless (looking-at "[ \t]*$")
  3188. (move-to-column ind)
  3189. (delete-region (point-at-bol) (point)))
  3190. (beginning-of-line 2))
  3191. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3192. (goto-char (point-min))
  3193. (when indent
  3194. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3195. (replace-match indent t t)))
  3196. (goto-char (point-min))
  3197. (while (looking-at "[ \t]*\n") (replace-match ""))
  3198. (goto-char (point-max))
  3199. (when (> (org-current-line)
  3200. n-lines)
  3201. (org-goto-line (1+ n-lines))
  3202. (backward-char 1))
  3203. (setq txt (buffer-substring (point-min) (point)))))))))
  3204. txt))
  3205. (defun org-check-for-org-mode ()
  3206. "Make sure current buffer is in org-mode. Error if not."
  3207. (or (derived-mode-p 'org-mode)
  3208. (error "Cannot execute org-mode agenda command on buffer in %s"
  3209. major-mode)))
  3210. ;;; Agenda prepare and finalize
  3211. (defvar org-agenda-multi nil) ; dynamically scoped
  3212. (defvar org-agenda-pre-window-conf nil)
  3213. (defvar org-agenda-columns-active nil)
  3214. (defvar org-agenda-name nil)
  3215. (defvar org-agenda-tag-filter nil)
  3216. (defvar org-agenda-category-filter nil)
  3217. (defvar org-agenda-regexp-filter nil)
  3218. (defvar org-agenda-effort-filter nil)
  3219. (defvar org-agenda-top-headline-filter nil)
  3220. (defvar org-agenda-tag-filter-preset nil
  3221. "A preset of the tags filter used for secondary agenda filtering.
  3222. This must be a list of strings, each string must be a single tag preceded
  3223. by \"+\" or \"-\".
  3224. This variable should not be set directly, but agenda custom commands can
  3225. bind it in the options section. The preset filter is a global property of
  3226. the entire agenda view. In a block agenda, it will not work reliably to
  3227. define a filter for one of the individual blocks. You need to set it in
  3228. the global options and expect it to be applied to the entire view.")
  3229. (defvar org-agenda-category-filter-preset nil
  3230. "A preset of the category filter used for secondary agenda filtering.
  3231. This must be a list of strings, each string must be a single category
  3232. preceded by \"+\" or \"-\".
  3233. This variable should not be set directly, but agenda custom commands can
  3234. bind it in the options section. The preset filter is a global property of
  3235. the entire agenda view. In a block agenda, it will not work reliably to
  3236. define a filter for one of the individual blocks. You need to set it in
  3237. the global options and expect it to be applied to the entire view.")
  3238. (defvar org-agenda-regexp-filter-preset nil
  3239. "A preset of the regexp filter used for secondary agenda filtering.
  3240. This must be a list of strings, each string must be a single regexp
  3241. preceded by \"+\" or \"-\".
  3242. This variable should not be set directly, but agenda custom commands can
  3243. bind it in the options section. The preset filter is a global property of
  3244. the entire agenda view. In a block agenda, it will not work reliably to
  3245. define a filter for one of the individual blocks. You need to set it in
  3246. the global options and expect it to be applied to the entire view.")
  3247. (defvar org-agenda-effort-filter-preset nil
  3248. "A preset of the effort condition used for secondary agenda filtering.
  3249. This must be a list of strings, each string must be a single regexp
  3250. preceded by \"+\" or \"-\".
  3251. This variable should not be set directly, but agenda custom commands can
  3252. bind it in the options section. The preset filter is a global property of
  3253. the entire agenda view. In a block agenda, it will not work reliably to
  3254. define a filter for one of the individual blocks. You need to set it in
  3255. the global options and expect it to be applied to the entire view.")
  3256. (defun org-agenda-use-sticky-p ()
  3257. "Return non-nil if an agenda buffer named
  3258. `org-agenda-buffer-name' exists and should be shown instead of
  3259. generating a new one."
  3260. (and
  3261. ;; turned off by user
  3262. org-agenda-sticky
  3263. ;; For multi-agenda buffer already exists
  3264. (not org-agenda-multi)
  3265. ;; buffer found
  3266. (get-buffer org-agenda-buffer-name)
  3267. ;; C-u parameter is same as last call
  3268. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3269. (and
  3270. (equal current-prefix-arg
  3271. org-agenda-last-prefix-arg)
  3272. ;; In case user turned stickiness on, while having existing
  3273. ;; Agenda buffer active, don't reuse that buffer, because it
  3274. ;; does not have org variables local
  3275. org-agenda-this-buffer-is-sticky))))
  3276. (defun org-agenda-prepare-window (abuf filter-alist)
  3277. "Setup agenda buffer in the window.
  3278. ABUF is the buffer for the agenda window.
  3279. FILTER-ALIST is an alist of filters we need to apply when
  3280. `org-agenda-persistent-filter' is non-nil."
  3281. (let* ((awin (get-buffer-window abuf)) wconf)
  3282. (cond
  3283. ((equal (current-buffer) abuf) nil)
  3284. (awin (select-window awin))
  3285. ((not (setq wconf (current-window-configuration))))
  3286. ((equal org-agenda-window-setup 'current-window)
  3287. (org-pop-to-buffer-same-window abuf))
  3288. ((equal org-agenda-window-setup 'other-window)
  3289. (org-switch-to-buffer-other-window abuf))
  3290. ((equal org-agenda-window-setup 'other-frame)
  3291. (switch-to-buffer-other-frame abuf))
  3292. ((eq org-agenda-window-setup 'only-window)
  3293. (delete-other-windows)
  3294. (org-pop-to-buffer-same-window abuf))
  3295. ((equal org-agenda-window-setup 'reorganize-frame)
  3296. (delete-other-windows)
  3297. (org-switch-to-buffer-other-window abuf)))
  3298. (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
  3299. (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
  3300. (setq org-agenda-effort-filter (cdr (assoc 'effort filter-alist)))
  3301. (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
  3302. ;; Additional test in case agenda is invoked from within agenda
  3303. ;; buffer via elisp link.
  3304. (unless (equal (current-buffer) abuf)
  3305. (org-pop-to-buffer-same-window abuf))
  3306. (setq org-agenda-pre-window-conf
  3307. (or wconf org-agenda-pre-window-conf))))
  3308. (defun org-agenda-prepare (&optional name)
  3309. (let ((filter-alist (if org-agenda-persistent-filter
  3310. (list `(tag . ,org-agenda-tag-filter)
  3311. `(re . ,org-agenda-regexp-filter)
  3312. `(effort . ,org-agenda-effort-filter)
  3313. `(car . ,org-agenda-category-filter)))))
  3314. (if (org-agenda-use-sticky-p)
  3315. (progn
  3316. (put 'org-agenda-tag-filter :preset-filter nil)
  3317. (put 'org-agenda-category-filter :preset-filter nil)
  3318. (put 'org-agenda-regexp-filter :preset-filter nil)
  3319. ;; Popup existing buffer
  3320. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3321. filter-alist)
  3322. (message "Sticky Agenda buffer, use `r' to refresh")
  3323. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3324. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3325. (setq org-todo-keywords-for-agenda nil)
  3326. (put 'org-agenda-tag-filter :preset-filter
  3327. org-agenda-tag-filter-preset)
  3328. (put 'org-agenda-category-filter :preset-filter
  3329. org-agenda-category-filter-preset)
  3330. (put 'org-agenda-regexp-filter :preset-filter
  3331. org-agenda-regexp-filter-preset)
  3332. (put 'org-agenda-effort-filter :preset-filter
  3333. org-agenda-effort-filter-preset)
  3334. (if org-agenda-multi
  3335. (progn
  3336. (setq buffer-read-only nil)
  3337. (goto-char (point-max))
  3338. (unless (or (bobp) org-agenda-compact-blocks
  3339. (not org-agenda-block-separator))
  3340. (insert "\n"
  3341. (if (stringp org-agenda-block-separator)
  3342. org-agenda-block-separator
  3343. (make-string (window-width) org-agenda-block-separator))
  3344. "\n"))
  3345. (narrow-to-region (point) (point-max)))
  3346. (setq org-done-keywords-for-agenda nil)
  3347. ;; Setting any org variables that are in org-agenda-local-vars
  3348. ;; list need to be done after the prepare call
  3349. (org-agenda-prepare-window
  3350. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3351. (setq buffer-read-only nil)
  3352. (org-agenda-reset-markers)
  3353. (let ((inhibit-read-only t)) (erase-buffer))
  3354. (org-agenda-mode)
  3355. (setq org-agenda-buffer (current-buffer))
  3356. (setq org-agenda-contributing-files nil)
  3357. (setq org-agenda-columns-active nil)
  3358. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3359. (setq org-todo-keywords-for-agenda
  3360. (org-uniquify org-todo-keywords-for-agenda))
  3361. (setq org-done-keywords-for-agenda
  3362. (org-uniquify org-done-keywords-for-agenda))
  3363. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3364. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3365. (and name (not org-agenda-name)
  3366. (org-set-local 'org-agenda-name name)))
  3367. (setq buffer-read-only nil))))
  3368. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3369. (defun org-agenda-finalize ()
  3370. "Finishing touch for the agenda buffer, called just before displaying it."
  3371. (unless org-agenda-multi
  3372. (save-excursion
  3373. (let ((inhibit-read-only t))
  3374. (goto-char (point-min))
  3375. (save-excursion
  3376. (while (org-activate-bracket-links (point-max))
  3377. (add-text-properties (match-beginning 0) (match-end 0)
  3378. '(face org-link))))
  3379. (save-excursion
  3380. (while (org-activate-plain-links (point-max))
  3381. (add-text-properties (match-beginning 0) (match-end 0)
  3382. '(face org-link))))
  3383. (unless (eq org-agenda-remove-tags t)
  3384. (org-agenda-align-tags))
  3385. (unless org-agenda-with-colors
  3386. (remove-text-properties (point-min) (point-max) '(face nil)))
  3387. (if (and (boundp 'org-agenda-overriding-columns-format)
  3388. org-agenda-overriding-columns-format)
  3389. (org-set-local 'org-agenda-overriding-columns-format
  3390. org-agenda-overriding-columns-format))
  3391. (if (and (boundp 'org-agenda-view-columns-initially)
  3392. org-agenda-view-columns-initially)
  3393. (org-agenda-columns))
  3394. (when org-agenda-fontify-priorities
  3395. (org-agenda-fontify-priorities))
  3396. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3397. (org-agenda-dim-blocked-tasks))
  3398. (org-agenda-mark-clocking-task)
  3399. (when org-agenda-entry-text-mode
  3400. (org-agenda-entry-text-hide)
  3401. (org-agenda-entry-text-show))
  3402. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3403. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3404. (org-habit-insert-consistency-graphs))
  3405. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3406. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3407. (and (listp org-agenda-show-inherited-tags)
  3408. (memq org-agenda-type org-agenda-show-inherited-tags))
  3409. (and (eq org-agenda-show-inherited-tags t)
  3410. (or (eq org-agenda-use-tag-inheritance t)
  3411. (and (listp org-agenda-use-tag-inheritance)
  3412. (not (memq org-agenda-type
  3413. org-agenda-use-tag-inheritance))))))
  3414. (let (mrk)
  3415. (save-excursion
  3416. (goto-char (point-min))
  3417. (while (equal (forward-line) 0)
  3418. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3419. (put-text-property (point-at-bol) (point-at-eol)
  3420. 'tags (org-with-point-at mrk
  3421. (delete-dups
  3422. (mapcar 'downcase (org-get-tags-at))))))))))
  3423. (run-hooks 'org-agenda-finalize-hook)
  3424. (when org-agenda-top-headline-filter
  3425. (org-agenda-filter-top-headline-apply
  3426. org-agenda-top-headline-filter))
  3427. (when org-agenda-tag-filter
  3428. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3429. (when (get 'org-agenda-tag-filter :preset-filter)
  3430. (org-agenda-filter-apply
  3431. (get 'org-agenda-tag-filter :preset-filter) 'tag))
  3432. (when org-agenda-category-filter
  3433. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3434. (when (get 'org-agenda-category-filter :preset-filter)
  3435. (org-agenda-filter-apply
  3436. (get 'org-agenda-category-filter :preset-filter) 'category))
  3437. (when org-agenda-regexp-filter
  3438. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3439. (when (get 'org-agenda-regexp-filter :preset-filter)
  3440. (org-agenda-filter-apply
  3441. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3442. (when org-agenda-effort-filter
  3443. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3444. (when (get 'org-agenda-effort-filter :preset-filter)
  3445. (org-agenda-filter-apply
  3446. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3447. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3448. (defun org-agenda-mark-clocking-task ()
  3449. "Mark the current clock entry in the agenda if it is present."
  3450. ;; We need to widen when `org-agenda-finalize' is called from
  3451. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3452. (when org-clock-current-task
  3453. (save-restriction
  3454. (widen)
  3455. (org-agenda-unmark-clocking-task)
  3456. (when (marker-buffer org-clock-hd-marker)
  3457. (save-excursion
  3458. (goto-char (point-min))
  3459. (let (s ov)
  3460. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3461. (goto-char s)
  3462. (when (equal (org-get-at-bol 'org-hd-marker)
  3463. org-clock-hd-marker)
  3464. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3465. (overlay-put ov 'type 'org-agenda-clocking)
  3466. (overlay-put ov 'face 'org-agenda-clocking)
  3467. (overlay-put ov 'help-echo
  3468. "The clock is running in this item")))))))))
  3469. (defun org-agenda-unmark-clocking-task ()
  3470. "Unmark the current clocking task."
  3471. (mapc (lambda (o)
  3472. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3473. (delete-overlay o)))
  3474. (overlays-in (point-min) (point-max))))
  3475. (defun org-agenda-fontify-priorities ()
  3476. "Make highest priority lines bold, and lowest italic."
  3477. (interactive)
  3478. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3479. (delete-overlay o)))
  3480. (overlays-in (point-min) (point-max)))
  3481. (save-excursion
  3482. (let (b e p ov h l)
  3483. (goto-char (point-min))
  3484. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3485. (setq h (or (get-char-property (point) 'org-highest-priority)
  3486. org-highest-priority)
  3487. l (or (get-char-property (point) 'org-lowest-priority)
  3488. org-lowest-priority)
  3489. p (string-to-char (match-string 1))
  3490. b (match-beginning 0)
  3491. e (if (eq org-agenda-fontify-priorities 'cookies)
  3492. (match-end 0)
  3493. (point-at-eol))
  3494. ov (make-overlay b e))
  3495. (overlay-put
  3496. ov 'face
  3497. (cons (cond ((org-face-from-face-or-color
  3498. 'priority nil
  3499. (cdr (assoc p org-priority-faces))))
  3500. ((and (listp org-agenda-fontify-priorities)
  3501. (org-face-from-face-or-color
  3502. 'priority nil
  3503. (cdr (assoc p org-agenda-fontify-priorities)))))
  3504. ((equal p l) 'italic)
  3505. ((equal p h) 'bold))
  3506. 'org-priority))
  3507. (overlay-put ov 'org-type 'org-priority)))))
  3508. (defvar org-depend-tag-blocked)
  3509. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3510. "Dim currently blocked TODO's in the agenda display.
  3511. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3512. dimming them."
  3513. (interactive "P")
  3514. (when (org-called-interactively-p 'interactive)
  3515. (message "Dim or hide blocked tasks..."))
  3516. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3517. (delete-overlay o)))
  3518. (overlays-in (point-min) (point-max)))
  3519. (save-excursion
  3520. (let ((inhibit-read-only t)
  3521. (org-depend-tag-blocked nil)
  3522. (invis (or (not (null invisible))
  3523. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3524. org-blocked-by-checkboxes
  3525. invis1 b e p ov h l)
  3526. (goto-char (point-min))
  3527. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3528. (and pos (goto-char (1+ pos))))
  3529. (setq org-blocked-by-checkboxes nil invis1 invis)
  3530. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3531. (when (and marker
  3532. (with-current-buffer (marker-buffer marker)
  3533. (save-excursion (goto-char marker)
  3534. (org-entry-blocked-p))))
  3535. (if org-blocked-by-checkboxes (setq invis1 nil))
  3536. (setq b (if invis1
  3537. (max (point-min) (1- (point-at-bol)))
  3538. (point-at-bol))
  3539. e (point-at-eol)
  3540. ov (make-overlay b e))
  3541. (if invis1
  3542. (progn (overlay-put ov 'invisible t)
  3543. (overlay-put ov 'intangible t))
  3544. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3545. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3546. (when (org-called-interactively-p 'interactive)
  3547. (message "Dim or hide blocked tasks...done")))
  3548. (defvar org-agenda-skip-function nil
  3549. "Function to be called at each match during agenda construction.
  3550. If this function returns nil, the current match should not be skipped.
  3551. Otherwise, the function must return a position from where the search
  3552. should be continued.
  3553. This may also be a Lisp form, it will be evaluated.
  3554. Never set this variable using `setq' or so, because then it will apply
  3555. to all future agenda commands. If you do want a global skipping condition,
  3556. use the option `org-agenda-skip-function-global' instead.
  3557. The correct usage for `org-agenda-skip-function' is to bind it with
  3558. `let' to scope it dynamically into the agenda-constructing command.
  3559. A good way to set it is through options in `org-agenda-custom-commands'.")
  3560. (defun org-agenda-skip ()
  3561. "Throw to `:skip' in places that should be skipped.
  3562. Also moves point to the end of the skipped region, so that search can
  3563. continue from there."
  3564. (let ((p (point-at-bol)) to)
  3565. (when (or
  3566. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3567. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3568. (get-text-property p :org-archived)
  3569. (org-end-of-subtree t))
  3570. (and org-agenda-skip-comment-trees
  3571. (get-text-property p :org-comment)
  3572. (org-end-of-subtree t))
  3573. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3574. (org-agenda-skip-eval org-agenda-skip-function)))
  3575. (goto-char to))
  3576. (org-in-src-block-p t))
  3577. (throw :skip t))))
  3578. (defun org-agenda-skip-eval (form)
  3579. "If FORM is a function or a list, call (or eval) it and return the result.
  3580. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3581. and match data are returned to the previous state no matter what these
  3582. functions do."
  3583. (let (fp)
  3584. (and form
  3585. (or (setq fp (functionp form))
  3586. (consp form))
  3587. (save-excursion
  3588. (save-match-data
  3589. (if fp
  3590. (funcall form)
  3591. (eval form)))))))
  3592. (defvar org-agenda-markers nil
  3593. "List of all currently active markers created by `org-agenda'.")
  3594. (defvar org-agenda-last-marker-time (org-float-time)
  3595. "Creation time of the last agenda marker.")
  3596. (defun org-agenda-new-marker (&optional pos)
  3597. "Return a new agenda marker.
  3598. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3599. these markers and resets them when they are no longer in use."
  3600. (let ((m (copy-marker (or pos (point)) t)))
  3601. (setq org-agenda-last-marker-time (org-float-time))
  3602. (if org-agenda-buffer
  3603. (with-current-buffer org-agenda-buffer
  3604. (push m org-agenda-markers))
  3605. (push m org-agenda-markers))
  3606. m))
  3607. (defun org-agenda-reset-markers ()
  3608. "Reset markers created by `org-agenda'."
  3609. (while org-agenda-markers
  3610. (move-marker (pop org-agenda-markers) nil)))
  3611. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3612. "Save relative positions of markers in region.
  3613. This check for agenda markers in all agenda buffers currently active."
  3614. (dolist (buf (buffer-list))
  3615. (with-current-buffer buf
  3616. (when (eq major-mode 'org-agenda-mode)
  3617. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3618. org-agenda-markers)))))
  3619. ;;; Entry text mode
  3620. (defun org-agenda-entry-text-show-here ()
  3621. "Add some text from the entry as context to the current line."
  3622. (let (m txt o)
  3623. (setq m (org-get-at-bol 'org-hd-marker))
  3624. (unless (marker-buffer m)
  3625. (error "No marker points to an entry here"))
  3626. (setq txt (concat "\n" (org-no-properties
  3627. (org-agenda-get-some-entry-text
  3628. m org-agenda-entry-text-maxlines
  3629. org-agenda-entry-text-leaders))))
  3630. (when (string-match "\\S-" txt)
  3631. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3632. (overlay-put o 'evaporate t)
  3633. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3634. (overlay-put o 'after-string txt))))
  3635. (defun org-agenda-entry-text-show ()
  3636. "Add entry context for all agenda lines."
  3637. (interactive)
  3638. (save-excursion
  3639. (goto-char (point-max))
  3640. (beginning-of-line 1)
  3641. (while (not (bobp))
  3642. (when (org-get-at-bol 'org-hd-marker)
  3643. (org-agenda-entry-text-show-here))
  3644. (beginning-of-line 0))))
  3645. (defun org-agenda-entry-text-hide ()
  3646. "Remove any shown entry context."
  3647. (delq nil
  3648. (mapcar (lambda (o)
  3649. (if (eq (overlay-get o 'org-overlay-type)
  3650. 'agenda-entry-content)
  3651. (progn (delete-overlay o) t)))
  3652. (overlays-in (point-min) (point-max)))))
  3653. (defun org-agenda-get-day-face (date)
  3654. "Return the face DATE should be displayed with."
  3655. (or (and (functionp org-agenda-day-face-function)
  3656. (funcall org-agenda-day-face-function date))
  3657. (cond ((org-agenda-todayp date)
  3658. 'org-agenda-date-today)
  3659. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3660. 'org-agenda-date-weekend)
  3661. (t 'org-agenda-date))))
  3662. ;;; Agenda timeline
  3663. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3664. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3665. (defun org-timeline (&optional dotodo)
  3666. "Show a time-sorted view of the entries in the current org file.
  3667. Only entries with a time stamp of today or later will be listed. With
  3668. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3669. under the current date.
  3670. If the buffer contains an active region, only check the region for
  3671. dates."
  3672. (interactive "P")
  3673. (let* ((dopast t)
  3674. (org-agenda-show-log-scoped org-agenda-show-log)
  3675. (org-agenda-show-log org-agenda-show-log-scoped)
  3676. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3677. (current-buffer))))
  3678. (date (calendar-current-date))
  3679. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3680. (end (if (org-region-active-p) (region-end) (point-max)))
  3681. (day-numbers (org-get-all-dates
  3682. beg end 'no-ranges
  3683. t org-agenda-show-log-scoped ; always include today
  3684. org-timeline-show-empty-dates))
  3685. (org-deadline-warning-days 0)
  3686. (org-agenda-only-exact-dates t)
  3687. (today (org-today))
  3688. (past t)
  3689. args
  3690. s e rtn d emptyp)
  3691. (setq org-agenda-redo-command
  3692. (list 'let
  3693. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3694. (list 'org-switch-to-buffer-other-window (current-buffer))
  3695. (list 'org-timeline (list 'quote dotodo))))
  3696. (put 'org-agenda-redo-command 'org-lprops nil)
  3697. (if (not dopast)
  3698. ;; Remove past dates from the list of dates.
  3699. (setq day-numbers (delq nil (mapcar (lambda(x)
  3700. (if (>= x today) x nil))
  3701. day-numbers))))
  3702. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3703. (org-compile-prefix-format 'timeline)
  3704. (org-set-sorting-strategy 'timeline)
  3705. (if org-agenda-show-log-scoped (push :closed args))
  3706. (push :timestamp args)
  3707. (push :deadline args)
  3708. (push :scheduled args)
  3709. (push :sexp args)
  3710. (if dotodo (push :todo args))
  3711. (insert "Timeline of file " entry "\n")
  3712. (add-text-properties (point-min) (point)
  3713. (list 'face 'org-agenda-structure))
  3714. (org-agenda-mark-header-line (point-min))
  3715. (while (setq d (pop day-numbers))
  3716. (if (and (listp d) (eq (car d) :omitted))
  3717. (progn
  3718. (setq s (point))
  3719. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3720. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3721. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3722. (if (and (>= d today)
  3723. dopast
  3724. past)
  3725. (progn
  3726. (setq past nil)
  3727. (insert (make-string 79 ?-) "\n")))
  3728. (setq date (calendar-gregorian-from-absolute d))
  3729. (setq s (point))
  3730. (setq rtn (and (not emptyp)
  3731. (apply 'org-agenda-get-day-entries entry
  3732. date args)))
  3733. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3734. (progn
  3735. (insert
  3736. (if (stringp org-agenda-format-date)
  3737. (format-time-string org-agenda-format-date
  3738. (org-time-from-absolute date))
  3739. (funcall org-agenda-format-date date))
  3740. "\n")
  3741. (put-text-property s (1- (point)) 'face
  3742. (org-agenda-get-day-face date))
  3743. (put-text-property s (1- (point)) 'org-date-line t)
  3744. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3745. (if (equal d today)
  3746. (put-text-property s (1- (point)) 'org-today t))
  3747. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3748. (put-text-property s (1- (point)) 'day d)))))
  3749. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3750. (point-min)))
  3751. (add-text-properties
  3752. (point-min) (point-max)
  3753. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3754. (org-agenda-finalize)
  3755. (setq buffer-read-only t)))
  3756. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3757. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3758. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3759. not every single day in the range. If FORCE-TODAY is non-nil, make
  3760. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3761. inactive time stamps (those in square brackets) are included.
  3762. When EMPTY is non-nil, also include days without any entries."
  3763. (let ((re (concat
  3764. (if pre-re pre-re "")
  3765. (if inactive org-ts-regexp-both org-ts-regexp)))
  3766. dates dates1 date day day1 day2 ts1 ts2 pos)
  3767. (if force-today
  3768. (setq dates (list (org-today))))
  3769. (save-excursion
  3770. (goto-char beg)
  3771. (while (re-search-forward re end t)
  3772. (setq day (time-to-days (org-time-string-to-time
  3773. (substring (match-string 1) 0 10)
  3774. (current-buffer) (match-beginning 0))))
  3775. (or (memq day dates) (push day dates)))
  3776. (unless no-ranges
  3777. (goto-char beg)
  3778. (while (re-search-forward org-tr-regexp end t)
  3779. (setq pos (match-beginning 0))
  3780. (setq ts1 (substring (match-string 1) 0 10)
  3781. ts2 (substring (match-string 2) 0 10)
  3782. day1 (time-to-days (org-time-string-to-time
  3783. ts1 (current-buffer) pos))
  3784. day2 (time-to-days (org-time-string-to-time
  3785. ts2 (current-buffer) pos)))
  3786. (while (< (setq day1 (1+ day1)) day2)
  3787. (or (memq day1 dates) (push day1 dates)))))
  3788. (setq dates (sort dates '<))
  3789. (when empty
  3790. (while (setq day (pop dates))
  3791. (setq day2 (car dates))
  3792. (push day dates1)
  3793. (when (and day2 empty)
  3794. (if (or (eq empty t)
  3795. (and (numberp empty) (<= (- day2 day) empty)))
  3796. (while (< (setq day (1+ day)) day2)
  3797. (push (list day) dates1))
  3798. (push (cons :omitted (- day2 day)) dates1))))
  3799. (setq dates (nreverse dates1)))
  3800. dates)))
  3801. ;;; Agenda Daily/Weekly
  3802. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3803. "Start day for the agenda view.
  3804. Custom commands can set this variable in the options section.
  3805. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3806. input allowed when reading a date through the Org calendar.
  3807. See the docstring of `org-read-date' for details.")
  3808. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3809. (defvar org-arg-loc nil) ; local variable
  3810. (defvar org-agenda-buffer-tmp-name nil)
  3811. ;;;###autoload
  3812. (defun org-agenda-list (&optional arg start-day span with-hour)
  3813. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3814. The view will be for the current day or week, but from the overview buffer
  3815. you will be able to go to other days/weeks.
  3816. With a numeric prefix argument in an interactive call, the agenda will
  3817. span ARG days. Lisp programs should instead specify SPAN to change
  3818. the number of days. SPAN defaults to `org-agenda-span'.
  3819. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3820. given in `org-agenda-start-on-weekday'.
  3821. When WITH-HOUR is non-nil, only include scheduled and deadline
  3822. items if they have an hour specification like [h]h:mm."
  3823. (interactive "P")
  3824. (if org-agenda-overriding-arguments
  3825. (setq arg (car org-agenda-overriding-arguments)
  3826. start-day (nth 1 org-agenda-overriding-arguments)
  3827. span (nth 2 org-agenda-overriding-arguments)))
  3828. (if (and (integerp arg) (> arg 0))
  3829. (setq span arg arg nil))
  3830. (catch 'exit
  3831. (setq org-agenda-buffer-name
  3832. (or org-agenda-buffer-tmp-name
  3833. (if org-agenda-sticky
  3834. (cond ((and org-keys (stringp org-match))
  3835. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3836. (org-keys
  3837. (format "*Org Agenda(%s)*" org-keys))
  3838. (t "*Org Agenda(a)*")))
  3839. org-agenda-buffer-name))
  3840. (org-agenda-prepare "Day/Week")
  3841. (setq start-day (or start-day org-agenda-start-day))
  3842. (if (stringp start-day)
  3843. ;; Convert to an absolute day number
  3844. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3845. (org-compile-prefix-format 'agenda)
  3846. (org-set-sorting-strategy 'agenda)
  3847. (let* ((span (org-agenda-ndays-to-span
  3848. (or span org-agenda-ndays org-agenda-span)))
  3849. (today (org-today))
  3850. (sd (or start-day today))
  3851. (ndays (org-agenda-span-to-ndays span sd))
  3852. (org-agenda-start-on-weekday
  3853. (if (or (eq ndays 7) (eq ndays 14))
  3854. org-agenda-start-on-weekday))
  3855. (thefiles (org-agenda-files nil 'ifmode))
  3856. (files thefiles)
  3857. (start (if (or (null org-agenda-start-on-weekday)
  3858. (< ndays 7))
  3859. sd
  3860. (let* ((nt (calendar-day-of-week
  3861. (calendar-gregorian-from-absolute sd)))
  3862. (n1 org-agenda-start-on-weekday)
  3863. (d (- nt n1)))
  3864. (- sd (+ (if (< d 0) 7 0) d)))))
  3865. (day-numbers (list start))
  3866. (day-cnt 0)
  3867. (inhibit-redisplay (not debug-on-error))
  3868. (org-agenda-show-log-scoped org-agenda-show-log)
  3869. s e rtn rtnall file date d start-pos end-pos todayp
  3870. clocktable-start clocktable-end filter)
  3871. (setq org-agenda-redo-command
  3872. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3873. (dotimes (n (1- ndays))
  3874. (push (1+ (car day-numbers)) day-numbers))
  3875. (setq day-numbers (nreverse day-numbers))
  3876. (setq clocktable-start (car day-numbers)
  3877. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3878. (org-set-local 'org-starting-day (car day-numbers))
  3879. (org-set-local 'org-arg-loc arg)
  3880. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3881. (unless org-agenda-compact-blocks
  3882. (let* ((d1 (car day-numbers))
  3883. (d2 (org-last day-numbers))
  3884. (w1 (org-days-to-iso-week d1))
  3885. (w2 (org-days-to-iso-week d2)))
  3886. (setq s (point))
  3887. (if org-agenda-overriding-header
  3888. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3889. nil 'face 'org-agenda-structure) "\n")
  3890. (insert (org-agenda-span-name span)
  3891. "-agenda"
  3892. (if (< (- d2 d1) 350)
  3893. (if (= w1 w2)
  3894. (format " (W%02d)" w1)
  3895. (format " (W%02d-W%02d)" w1 w2))
  3896. "")
  3897. ":\n")))
  3898. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3899. 'org-date-line t))
  3900. (org-agenda-mark-header-line s))
  3901. (while (setq d (pop day-numbers))
  3902. (setq date (calendar-gregorian-from-absolute d)
  3903. s (point))
  3904. (if (or (setq todayp (= d today))
  3905. (and (not start-pos) (= d sd)))
  3906. (setq start-pos (point))
  3907. (if (and start-pos (not end-pos))
  3908. (setq end-pos (point))))
  3909. (setq files thefiles
  3910. rtnall nil)
  3911. (while (setq file (pop files))
  3912. (catch 'nextfile
  3913. (org-check-agenda-file file)
  3914. (let ((org-agenda-entry-types org-agenda-entry-types))
  3915. ;; Starred types override non-starred equivalents
  3916. (when (member :deadline* org-agenda-entry-types)
  3917. (setq org-agenda-entry-types
  3918. (delq :deadline org-agenda-entry-types)))
  3919. (when (member :scheduled* org-agenda-entry-types)
  3920. (setq org-agenda-entry-types
  3921. (delq :scheduled org-agenda-entry-types)))
  3922. ;; Honor with-hour
  3923. (when with-hour
  3924. (when (member :deadline org-agenda-entry-types)
  3925. (setq org-agenda-entry-types
  3926. (delq :deadline org-agenda-entry-types))
  3927. (push :deadline* org-agenda-entry-types))
  3928. (when (member :scheduled org-agenda-entry-types)
  3929. (setq org-agenda-entry-types
  3930. (delq :scheduled org-agenda-entry-types))
  3931. (push :scheduled* org-agenda-entry-types)))
  3932. (unless org-agenda-include-deadlines
  3933. (setq org-agenda-entry-types
  3934. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3935. (cond
  3936. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3937. (setq rtn (org-agenda-get-day-entries
  3938. file date :closed)))
  3939. (org-agenda-show-log-scoped
  3940. (setq rtn (apply 'org-agenda-get-day-entries
  3941. file date
  3942. (append '(:closed) org-agenda-entry-types))))
  3943. (t
  3944. (setq rtn (apply 'org-agenda-get-day-entries
  3945. file date
  3946. org-agenda-entry-types)))))
  3947. (setq rtnall (append rtnall rtn)))) ;; all entries
  3948. (if org-agenda-include-diary
  3949. (let ((org-agenda-search-headline-for-time t))
  3950. (require 'diary-lib)
  3951. (setq rtn (org-get-entries-from-diary date))
  3952. (setq rtnall (append rtnall rtn))))
  3953. (if (or rtnall org-agenda-show-all-dates)
  3954. (progn
  3955. (setq day-cnt (1+ day-cnt))
  3956. (insert
  3957. (if (stringp org-agenda-format-date)
  3958. (format-time-string org-agenda-format-date
  3959. (org-time-from-absolute date))
  3960. (funcall org-agenda-format-date date))
  3961. "\n")
  3962. (put-text-property s (1- (point)) 'face
  3963. (org-agenda-get-day-face date))
  3964. (put-text-property s (1- (point)) 'org-date-line t)
  3965. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3966. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3967. (when todayp
  3968. (put-text-property s (1- (point)) 'org-today t))
  3969. (setq rtnall
  3970. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3971. (if rtnall (insert ;; all entries
  3972. (org-agenda-finalize-entries rtnall 'agenda)
  3973. "\n"))
  3974. (put-text-property s (1- (point)) 'day d)
  3975. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3976. (when (and org-agenda-clockreport-mode clocktable-start)
  3977. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3978. ;; the above line is to ensure the restricted range!
  3979. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3980. tbl)
  3981. (setq p (org-plist-delete p :block))
  3982. (setq p (plist-put p :tstart clocktable-start))
  3983. (setq p (plist-put p :tend clocktable-end))
  3984. (setq p (plist-put p :scope 'agenda))
  3985. (setq tbl (apply 'org-clock-get-clocktable p))
  3986. (insert tbl)))
  3987. (goto-char (point-min))
  3988. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3989. (unless (and (pos-visible-in-window-p (point-min))
  3990. (pos-visible-in-window-p (point-max)))
  3991. (goto-char (1- (point-max)))
  3992. (recenter -1)
  3993. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3994. (progn
  3995. (goto-char (or start-pos 1))
  3996. (recenter 1))))
  3997. (goto-char (or start-pos 1))
  3998. (add-text-properties (point-min) (point-max)
  3999. `(org-agenda-type agenda
  4000. org-last-args (,arg ,start-day ,span)
  4001. org-redo-cmd ,org-agenda-redo-command
  4002. org-series-cmd ,org-cmd))
  4003. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4004. (org-agenda-show-clocking-issues))
  4005. (org-agenda-finalize)
  4006. (setq buffer-read-only t)
  4007. (message ""))))
  4008. (defun org-agenda-ndays-to-span (n)
  4009. "Return a span symbol for a span of N days, or N if none matches."
  4010. (cond ((symbolp n) n)
  4011. ((= n 1) 'day)
  4012. ((= n 7) 'week)
  4013. ((= n 14) 'fortnight)
  4014. (t n)))
  4015. (defun org-agenda-span-to-ndays (span &optional start-day)
  4016. "Return ndays from SPAN, possibly starting at START-DAY.
  4017. START-DAY is an absolute time value."
  4018. (cond ((numberp span) span)
  4019. ((eq span 'day) 1)
  4020. ((eq span 'week) 7)
  4021. ((eq span 'fortnight) 14)
  4022. ((eq span 'month)
  4023. (let ((date (calendar-gregorian-from-absolute start-day)))
  4024. (calendar-last-day-of-month (car date) (caddr date))))
  4025. ((eq span 'year)
  4026. (let ((date (calendar-gregorian-from-absolute start-day)))
  4027. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4028. (defun org-agenda-span-name (span)
  4029. "Return a SPAN name."
  4030. (if (null span)
  4031. ""
  4032. (if (symbolp span)
  4033. (capitalize (symbol-name span))
  4034. (format "%d days" span))))
  4035. ;;; Agenda word search
  4036. (defvar org-agenda-search-history nil)
  4037. (defvar org-search-syntax-table nil
  4038. "Special syntax table for org-mode search.
  4039. In this table, we have single quotes not as word constituents, to
  4040. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4041. (defvar org-mode-syntax-table) ; From org.el
  4042. (defun org-search-syntax-table ()
  4043. (unless org-search-syntax-table
  4044. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4045. (modify-syntax-entry ?' "." org-search-syntax-table)
  4046. (modify-syntax-entry ?` "." org-search-syntax-table))
  4047. org-search-syntax-table)
  4048. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4049. ;;;###autoload
  4050. (defun org-search-view (&optional todo-only string edit-at)
  4051. "Show all entries that contain a phrase or words or regular expressions.
  4052. With optional prefix argument TODO-ONLY, only consider entries that are
  4053. TODO entries. The argument STRING can be used to pass a default search
  4054. string into this function. If EDIT-AT is non-nil, it means that the
  4055. user should get a chance to edit this string, with cursor at position
  4056. EDIT-AT.
  4057. The search string can be viewed either as a phrase that should be found as
  4058. is, or it can be broken into a number of snippets, each of which must match
  4059. in a Boolean way to select an entry. The default depends on the variable
  4060. `org-agenda-search-view-always-boolean'.
  4061. Even if this is turned off (the default) you can always switch to
  4062. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4063. The default is a direct search of the whole phrase, where each space in
  4064. the search string can expand to an arbitrary amount of whitespace,
  4065. including newlines.
  4066. If using a Boolean search, the search string is split on whitespace and
  4067. each snippet is searched separately, with logical AND to select an entry.
  4068. Words prefixed with a minus must *not* occur in the entry. Words without
  4069. a prefix or prefixed with a plus must occur in the entry. Matching is
  4070. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4071. match whole words, not parts of a word) if
  4072. `org-agenda-search-view-force-full-words' is set (default is nil).
  4073. Boolean search snippets enclosed by curly braces are interpreted as
  4074. regular expressions that must or (when preceded with \"-\") must not
  4075. match in the entry. Snippets enclosed into double quotes will be taken
  4076. as a whole, to include whitespace.
  4077. - If the search string starts with an asterisk, search only in headlines.
  4078. - If (possibly after the leading star) the search string starts with an
  4079. exclamation mark, this also means to look at TODO entries only, an effect
  4080. that can also be achieved with a prefix argument.
  4081. - If (possibly after star and exclamation mark) the search string starts
  4082. with a colon, this will mean that the (non-regexp) snippets of the
  4083. Boolean search must match as full words.
  4084. This command searches the agenda files, and in addition the files listed
  4085. in `org-agenda-text-search-extra-files'."
  4086. (interactive "P")
  4087. (if org-agenda-overriding-arguments
  4088. (setq todo-only (car org-agenda-overriding-arguments)
  4089. string (nth 1 org-agenda-overriding-arguments)
  4090. edit-at (nth 2 org-agenda-overriding-arguments)))
  4091. (let* ((props (list 'face nil
  4092. 'done-face 'org-agenda-done
  4093. 'org-not-done-regexp org-not-done-regexp
  4094. 'org-todo-regexp org-todo-regexp
  4095. 'org-complex-heading-regexp org-complex-heading-regexp
  4096. 'mouse-face 'highlight
  4097. 'help-echo (format "mouse-2 or RET jump to location")))
  4098. (full-words org-agenda-search-view-force-full-words)
  4099. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4100. regexp rtn rtnall files file pos inherited-tags
  4101. marker category level tags c neg re boolean
  4102. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4103. (unless (and (not edit-at)
  4104. (stringp string)
  4105. (string-match "\\S-" string))
  4106. (setq string (read-string
  4107. (if org-agenda-search-view-always-boolean
  4108. "[+-]Word/{Regexp} ...: "
  4109. "Phrase or [+-]Word/{Regexp} ...: ")
  4110. (cond
  4111. ((integerp edit-at) (cons string edit-at))
  4112. (edit-at string))
  4113. 'org-agenda-search-history)))
  4114. (catch 'exit
  4115. (if org-agenda-sticky
  4116. (setq org-agenda-buffer-name
  4117. (if (stringp string)
  4118. (format "*Org Agenda(%s:%s)*"
  4119. (or org-keys (or (and todo-only "S") "s")) string)
  4120. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4121. (org-agenda-prepare "SEARCH")
  4122. (org-compile-prefix-format 'search)
  4123. (org-set-sorting-strategy 'search)
  4124. (setq org-agenda-redo-command
  4125. (list 'org-search-view (if todo-only t nil)
  4126. (list 'if 'current-prefix-arg nil string)))
  4127. (setq org-agenda-query-string string)
  4128. (if (equal (string-to-char string) ?*)
  4129. (setq hdl-only t
  4130. words (substring string 1))
  4131. (setq words string))
  4132. (when (equal (string-to-char words) ?!)
  4133. (setq todo-only t
  4134. words (substring words 1)))
  4135. (when (equal (string-to-char words) ?:)
  4136. (setq full-words t
  4137. words (substring words 1)))
  4138. (if (or org-agenda-search-view-always-boolean
  4139. (member (string-to-char words) '(?- ?+ ?\{)))
  4140. (setq boolean t))
  4141. (setq words (org-split-string words))
  4142. (let (www w)
  4143. (while (setq w (pop words))
  4144. (while (and (string-match "\\\\\\'" w) words)
  4145. (setq w (concat (substring w 0 -1) " " (pop words))))
  4146. (push w www))
  4147. (setq words (nreverse www) www nil)
  4148. (while (setq w (pop words))
  4149. (when (and (string-match "\\`[-+]?{" w)
  4150. (not (string-match "}\\'" w)))
  4151. (while (and words (not (string-match "}\\'" (car words))))
  4152. (setq w (concat w " " (pop words))))
  4153. (setq w (concat w " " (pop words))))
  4154. (push w www))
  4155. (setq words (nreverse www)))
  4156. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4157. (when boolean
  4158. (let (wds w)
  4159. (while (setq w (pop words))
  4160. (if (or (equal (substring w 0 1) "\"")
  4161. (and (> (length w) 1)
  4162. (member (substring w 0 1) '("+" "-"))
  4163. (equal (substring w 1 2) "\"")))
  4164. (while (and words (not (equal (substring w -1) "\"")))
  4165. (setq w (concat w " " (pop words)))))
  4166. (and (string-match "\\`\\([-+]?\\)\"" w)
  4167. (setq w (replace-match "\\1" nil nil w)))
  4168. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4169. (push w wds))
  4170. (setq words (nreverse wds))))
  4171. (if boolean
  4172. (mapc (lambda (w)
  4173. (setq c (string-to-char w))
  4174. (if (equal c ?-)
  4175. (setq neg t w (substring w 1))
  4176. (if (equal c ?+)
  4177. (setq neg nil w (substring w 1))
  4178. (setq neg nil)))
  4179. (if (string-match "\\`{.*}\\'" w)
  4180. (setq re (substring w 1 -1))
  4181. (if full-words
  4182. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4183. (setq re (regexp-quote (downcase w)))))
  4184. (if neg (push re regexps-) (push re regexps+)))
  4185. words)
  4186. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4187. regexps+))
  4188. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4189. (if (not regexps+)
  4190. (setq regexp org-outline-regexp-bol)
  4191. (setq regexp (pop regexps+))
  4192. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4193. regexp))))
  4194. (setq files (org-agenda-files nil 'ifmode))
  4195. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4196. (pop org-agenda-text-search-extra-files)
  4197. (setq files (org-add-archive-files files)))
  4198. (setq files (append files org-agenda-text-search-extra-files)
  4199. rtnall nil)
  4200. (while (setq file (pop files))
  4201. (setq ee nil)
  4202. (catch 'nextfile
  4203. (org-check-agenda-file file)
  4204. (setq buffer (if (file-exists-p file)
  4205. (org-get-agenda-file-buffer file)
  4206. (error "No such file %s" file)))
  4207. (if (not buffer)
  4208. ;; If file does not exist, make sure an error message is sent
  4209. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4210. file))))
  4211. (with-current-buffer buffer
  4212. (with-syntax-table (org-search-syntax-table)
  4213. (unless (derived-mode-p 'org-mode)
  4214. (error "Agenda file %s is not in `org-mode'" file))
  4215. (let ((case-fold-search t))
  4216. (save-excursion
  4217. (save-restriction
  4218. (if (eq buffer org-agenda-restrict)
  4219. (narrow-to-region org-agenda-restrict-begin
  4220. org-agenda-restrict-end)
  4221. (widen))
  4222. (goto-char (point-min))
  4223. (unless (or (org-at-heading-p)
  4224. (outline-next-heading))
  4225. (throw 'nextfile t))
  4226. (goto-char (max (point-min) (1- (point))))
  4227. (while (re-search-forward regexp nil t)
  4228. (org-back-to-heading t)
  4229. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4230. (> (org-reduced-level (org-outline-level))
  4231. org-agenda-search-view-max-outline-level)
  4232. (forward-line -1)
  4233. (outline-back-to-heading t)))
  4234. (skip-chars-forward "* ")
  4235. (setq beg (point-at-bol)
  4236. beg1 (point)
  4237. end (progn
  4238. (outline-next-heading)
  4239. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4240. (> (org-reduced-level (org-outline-level))
  4241. org-agenda-search-view-max-outline-level)
  4242. (forward-line 1)
  4243. (outline-next-heading)))
  4244. (point)))
  4245. (catch :skip
  4246. (goto-char beg)
  4247. (org-agenda-skip)
  4248. (setq str (buffer-substring-no-properties
  4249. (point-at-bol)
  4250. (if hdl-only (point-at-eol) end)))
  4251. (mapc (lambda (wr) (when (string-match wr str)
  4252. (goto-char (1- end))
  4253. (throw :skip t)))
  4254. regexps-)
  4255. (mapc (lambda (wr) (unless (string-match wr str)
  4256. (goto-char (1- end))
  4257. (throw :skip t)))
  4258. (if todo-only
  4259. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  4260. regexps+)
  4261. regexps+))
  4262. (goto-char beg)
  4263. (setq marker (org-agenda-new-marker (point))
  4264. category (org-get-category)
  4265. level (make-string (org-reduced-level (org-outline-level)) ? )
  4266. inherited-tags
  4267. (or (eq org-agenda-show-inherited-tags 'always)
  4268. (and (listp org-agenda-show-inherited-tags)
  4269. (memq 'todo org-agenda-show-inherited-tags))
  4270. (and (eq org-agenda-show-inherited-tags t)
  4271. (or (eq org-agenda-use-tag-inheritance t)
  4272. (memq 'todo org-agenda-use-tag-inheritance))))
  4273. tags (org-get-tags-at nil (not inherited-tags))
  4274. txt (org-agenda-format-item
  4275. ""
  4276. (buffer-substring-no-properties
  4277. beg1 (point-at-eol))
  4278. level category tags t))
  4279. (org-add-props txt props
  4280. 'org-marker marker 'org-hd-marker marker
  4281. 'org-todo-regexp org-todo-regexp
  4282. 'level level
  4283. 'org-complex-heading-regexp org-complex-heading-regexp
  4284. 'priority 1000
  4285. 'type "search")
  4286. (push txt ee)
  4287. (goto-char (1- end))))))))))
  4288. (setq rtn (nreverse ee))
  4289. (setq rtnall (append rtnall rtn)))
  4290. (if org-agenda-overriding-header
  4291. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4292. nil 'face 'org-agenda-structure) "\n")
  4293. (insert "Search words: ")
  4294. (add-text-properties (point-min) (1- (point))
  4295. (list 'face 'org-agenda-structure))
  4296. (setq pos (point))
  4297. (insert string "\n")
  4298. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4299. (setq pos (point))
  4300. (unless org-agenda-multi
  4301. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  4302. (add-text-properties pos (1- (point))
  4303. (list 'face 'org-agenda-structure))))
  4304. (org-agenda-mark-header-line (point-min))
  4305. (when rtnall
  4306. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4307. (goto-char (point-min))
  4308. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4309. (add-text-properties (point-min) (point-max)
  4310. `(org-agenda-type search
  4311. org-last-args (,todo-only ,string ,edit-at)
  4312. org-redo-cmd ,org-agenda-redo-command
  4313. org-series-cmd ,org-cmd))
  4314. (org-agenda-finalize)
  4315. (setq buffer-read-only t))))
  4316. ;;; Agenda TODO list
  4317. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4318. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4319. (concat
  4320. (if (or (equal keywords "ALL") (not keywords))
  4321. (propertize "ALL" 'face 'warning)
  4322. (mapconcat
  4323. (lambda (kw)
  4324. (propertize kw 'face (org-get-todo-face kw)))
  4325. (org-split-string keywords "|")
  4326. "|"))
  4327. "\n"))
  4328. (defvar org-select-this-todo-keyword nil)
  4329. (defvar org-last-arg nil)
  4330. ;;;###autoload
  4331. (defun org-todo-list (&optional arg)
  4332. "Show all (not done) TODO entries from all agenda file in a single list.
  4333. The prefix arg can be used to select a specific TODO keyword and limit
  4334. the list to these. When using \\[universal-argument], you will be prompted
  4335. for a keyword. A numeric prefix directly selects the Nth keyword in
  4336. `org-todo-keywords-1'."
  4337. (interactive "P")
  4338. (if org-agenda-overriding-arguments
  4339. (setq arg org-agenda-overriding-arguments))
  4340. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4341. (let* ((today (org-today))
  4342. (date (calendar-gregorian-from-absolute today))
  4343. (kwds org-todo-keywords-for-agenda)
  4344. (completion-ignore-case t)
  4345. (org-select-this-todo-keyword
  4346. (if (stringp arg) arg
  4347. (and arg (integerp arg) (> arg 0)
  4348. (nth (1- arg) kwds))))
  4349. rtn rtnall files file pos)
  4350. (when (equal arg '(4))
  4351. (setq org-select-this-todo-keyword
  4352. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4353. (mapcar 'list kwds) nil nil)))
  4354. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4355. (catch 'exit
  4356. (if org-agenda-sticky
  4357. (setq org-agenda-buffer-name
  4358. (if (stringp org-select-this-todo-keyword)
  4359. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4360. org-select-this-todo-keyword)
  4361. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4362. (org-agenda-prepare "TODO")
  4363. (org-compile-prefix-format 'todo)
  4364. (org-set-sorting-strategy 'todo)
  4365. (setq org-agenda-redo-command
  4366. `(org-todo-list (or (and (numberp current-prefix-arg)
  4367. current-prefix-arg)
  4368. ,org-select-this-todo-keyword
  4369. current-prefix-arg ,arg)))
  4370. (setq files (org-agenda-files nil 'ifmode)
  4371. rtnall nil)
  4372. (while (setq file (pop files))
  4373. (catch 'nextfile
  4374. (org-check-agenda-file file)
  4375. (setq rtn (org-agenda-get-day-entries file date :todo))
  4376. (setq rtnall (append rtnall rtn))))
  4377. (if org-agenda-overriding-header
  4378. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4379. nil 'face 'org-agenda-structure) "\n")
  4380. (insert "Global list of TODO items of type: ")
  4381. (add-text-properties (point-min) (1- (point))
  4382. (list 'face 'org-agenda-structure
  4383. 'short-heading
  4384. (concat "ToDo: "
  4385. (or org-select-this-todo-keyword "ALL"))))
  4386. (org-agenda-mark-header-line (point-min))
  4387. (insert (org-agenda-propertize-selected-todo-keywords
  4388. org-select-this-todo-keyword))
  4389. (setq pos (point))
  4390. (unless org-agenda-multi
  4391. (insert "Available with `N r': (0)[ALL]")
  4392. (let ((n 0) s)
  4393. (mapc (lambda (x)
  4394. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4395. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4396. (insert "\n "))
  4397. (insert " " s))
  4398. kwds))
  4399. (insert "\n"))
  4400. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4401. (org-agenda-mark-header-line (point-min))
  4402. (when rtnall
  4403. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4404. (goto-char (point-min))
  4405. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4406. (add-text-properties (point-min) (point-max)
  4407. `(org-agenda-type todo
  4408. org-last-args (,arg)
  4409. org-redo-cmd ,org-agenda-redo-command
  4410. org-series-cmd ,org-cmd))
  4411. (org-agenda-finalize)
  4412. (setq buffer-read-only t))))
  4413. ;;; Agenda tags match
  4414. ;;;###autoload
  4415. (defun org-tags-view (&optional todo-only match)
  4416. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4417. The prefix arg TODO-ONLY limits the search to TODO entries."
  4418. (interactive "P")
  4419. (if org-agenda-overriding-arguments
  4420. (setq todo-only (car org-agenda-overriding-arguments)
  4421. match (nth 1 org-agenda-overriding-arguments)))
  4422. (let* ((org-tags-match-list-sublevels
  4423. org-tags-match-list-sublevels)
  4424. (completion-ignore-case t)
  4425. rtn rtnall files file pos matcher
  4426. buffer)
  4427. (when (and (stringp match) (not (string-match "\\S-" match)))
  4428. (setq match nil))
  4429. (catch 'exit
  4430. (if org-agenda-sticky
  4431. (setq org-agenda-buffer-name
  4432. (if (stringp match)
  4433. (format "*Org Agenda(%s:%s)*"
  4434. (or org-keys (or (and todo-only "M") "m")) match)
  4435. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4436. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4437. ;; expanding tags within `org-make-tags-matcher'
  4438. (org-agenda-prepare (concat "TAGS " match))
  4439. (setq matcher (org-make-tags-matcher match)
  4440. match (car matcher) matcher (cdr matcher))
  4441. (org-compile-prefix-format 'tags)
  4442. (org-set-sorting-strategy 'tags)
  4443. (setq org-agenda-query-string match)
  4444. (setq org-agenda-redo-command
  4445. (list 'org-tags-view `(quote ,todo-only)
  4446. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4447. (setq files (org-agenda-files nil 'ifmode)
  4448. rtnall nil)
  4449. (while (setq file (pop files))
  4450. (catch 'nextfile
  4451. (org-check-agenda-file file)
  4452. (setq buffer (if (file-exists-p file)
  4453. (org-get-agenda-file-buffer file)
  4454. (error "No such file %s" file)))
  4455. (if (not buffer)
  4456. ;; If file does not exist, error message to agenda
  4457. (setq rtn (list
  4458. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4459. rtnall (append rtnall rtn))
  4460. (with-current-buffer buffer
  4461. (unless (derived-mode-p 'org-mode)
  4462. (error "Agenda file %s is not in `org-mode'" file))
  4463. (save-excursion
  4464. (save-restriction
  4465. (if (eq buffer org-agenda-restrict)
  4466. (narrow-to-region org-agenda-restrict-begin
  4467. org-agenda-restrict-end)
  4468. (widen))
  4469. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4470. (setq rtnall (append rtnall rtn))))))))
  4471. (if org-agenda-overriding-header
  4472. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4473. nil 'face 'org-agenda-structure) "\n")
  4474. (insert "Headlines with TAGS match: ")
  4475. (add-text-properties (point-min) (1- (point))
  4476. (list 'face 'org-agenda-structure
  4477. 'short-heading
  4478. (concat "Match: " match)))
  4479. (setq pos (point))
  4480. (insert match "\n")
  4481. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4482. (setq pos (point))
  4483. (unless org-agenda-multi
  4484. (insert "Press `C-u r' to search again with new search string\n"))
  4485. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4486. (org-agenda-mark-header-line (point-min))
  4487. (when rtnall
  4488. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4489. (goto-char (point-min))
  4490. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4491. (add-text-properties (point-min) (point-max)
  4492. `(org-agenda-type tags
  4493. org-last-args (,todo-only ,match)
  4494. org-redo-cmd ,org-agenda-redo-command
  4495. org-series-cmd ,org-cmd))
  4496. (org-agenda-finalize)
  4497. (setq buffer-read-only t))))
  4498. ;;; Agenda Finding stuck projects
  4499. (defvar org-agenda-skip-regexp nil
  4500. "Regular expression used in skipping subtrees for the agenda.
  4501. This is basically a temporary global variable that can be set and then
  4502. used by user-defined selections using `org-agenda-skip-function'.")
  4503. (defvar org-agenda-overriding-header nil
  4504. "When set during agenda, todo and tags searches it replaces the header.
  4505. This variable should not be set directly, but custom commands can bind it
  4506. in the options section.")
  4507. (defun org-agenda-skip-entry-when-regexp-matches ()
  4508. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4509. If yes, it returns the end position of this entry, causing agenda commands
  4510. to skip the entry but continuing the search in the subtree. This is a
  4511. function that can be put into `org-agenda-skip-function' for the duration
  4512. of a command."
  4513. (let ((end (save-excursion (org-end-of-subtree t)))
  4514. skip)
  4515. (save-excursion
  4516. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4517. (and skip end)))
  4518. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4519. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4520. If yes, it returns the end position of this tree, causing agenda commands
  4521. to skip this subtree. This is a function that can be put into
  4522. `org-agenda-skip-function' for the duration of a command."
  4523. (let ((end (save-excursion (org-end-of-subtree t)))
  4524. skip)
  4525. (save-excursion
  4526. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4527. (and skip end)))
  4528. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4529. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4530. If yes, it returns the end position of the current entry (NOT the tree),
  4531. causing agenda commands to skip the entry but continuing the search in
  4532. the subtree. This is a function that can be put into
  4533. `org-agenda-skip-function' for the duration of a command. An important
  4534. use of this function is for the stuck project list."
  4535. (let ((end (save-excursion (org-end-of-subtree t)))
  4536. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4537. skip)
  4538. (save-excursion
  4539. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4540. (and skip entry-end)))
  4541. (defun org-agenda-skip-entry-if (&rest conditions)
  4542. "Skip entry if any of CONDITIONS is true.
  4543. See `org-agenda-skip-if' for details."
  4544. (org-agenda-skip-if nil conditions))
  4545. (defun org-agenda-skip-subtree-if (&rest conditions)
  4546. "Skip subtree if any of CONDITIONS is true.
  4547. See `org-agenda-skip-if' for details."
  4548. (org-agenda-skip-if t conditions))
  4549. (defun org-agenda-skip-if (subtree conditions)
  4550. "Checks current entity for CONDITIONS.
  4551. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4552. the entry (i.e. the text before the next heading) is checked.
  4553. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4554. from different tests. Valid conditions are:
  4555. scheduled Check if there is a scheduled cookie
  4556. notscheduled Check if there is no scheduled cookie
  4557. deadline Check if there is a deadline
  4558. notdeadline Check if there is no deadline
  4559. timestamp Check if there is a timestamp (also deadline or scheduled)
  4560. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4561. regexp Check if regexp matches
  4562. notregexp Check if regexp does not match.
  4563. todo Check if TODO keyword matches
  4564. nottodo Check if TODO keyword does not match
  4565. The regexp is taken from the conditions list, it must come right after
  4566. the `regexp' or `notregexp' element.
  4567. `todo' and `nottodo' accept as an argument a list of todo
  4568. keywords, which may include \"*\" to match any todo keyword.
  4569. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4570. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4571. Instead of a list, a keyword class may be given. For example:
  4572. (org-agenda-skip-entry-if 'nottodo 'done)
  4573. would skip entries that haven't been marked with any of \"DONE\"
  4574. keywords. Possible classes are: `todo', `done', `any'.
  4575. If any of these conditions is met, this function returns the end point of
  4576. the entity, causing the search to continue from there. This is a function
  4577. that can be put into `org-agenda-skip-function' for the duration of a command."
  4578. (let (beg end m)
  4579. (org-back-to-heading t)
  4580. (setq beg (point)
  4581. end (if subtree
  4582. (progn (org-end-of-subtree t) (point))
  4583. (progn (outline-next-heading) (1- (point)))))
  4584. (goto-char beg)
  4585. (and
  4586. (or
  4587. (and (memq 'scheduled conditions)
  4588. (re-search-forward org-scheduled-time-regexp end t))
  4589. (and (memq 'notscheduled conditions)
  4590. (not (re-search-forward org-scheduled-time-regexp end t)))
  4591. (and (memq 'deadline conditions)
  4592. (re-search-forward org-deadline-time-regexp end t))
  4593. (and (memq 'notdeadline conditions)
  4594. (not (re-search-forward org-deadline-time-regexp end t)))
  4595. (and (memq 'timestamp conditions)
  4596. (re-search-forward org-ts-regexp end t))
  4597. (and (memq 'nottimestamp conditions)
  4598. (not (re-search-forward org-ts-regexp end t)))
  4599. (and (setq m (memq 'regexp conditions))
  4600. (stringp (nth 1 m))
  4601. (re-search-forward (nth 1 m) end t))
  4602. (and (setq m (memq 'notregexp conditions))
  4603. (stringp (nth 1 m))
  4604. (not (re-search-forward (nth 1 m) end t)))
  4605. (and (or
  4606. (setq m (memq 'nottodo conditions))
  4607. (setq m (memq 'todo-unblocked conditions))
  4608. (setq m (memq 'nottodo-unblocked conditions))
  4609. (setq m (memq 'todo conditions)))
  4610. (org-agenda-skip-if-todo m end)))
  4611. end)))
  4612. (defun org-agenda-skip-if-todo (args end)
  4613. "Helper function for `org-agenda-skip-if', do not use it directly.
  4614. ARGS is a list with first element either `todo', `nottodo',
  4615. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4616. a list of TODO keywords, or a state symbol `todo' or `done' or
  4617. `any'."
  4618. (let ((kw (car args))
  4619. (arg (cadr args))
  4620. todo-wds todo-re)
  4621. (setq todo-wds
  4622. (org-uniquify
  4623. (cond
  4624. ((listp arg) ;; list of keywords
  4625. (if (member "*" arg)
  4626. (mapcar 'substring-no-properties org-todo-keywords-1)
  4627. arg))
  4628. ((symbolp arg) ;; keyword class name
  4629. (cond
  4630. ((eq arg 'todo)
  4631. (org-delete-all org-done-keywords
  4632. (mapcar 'substring-no-properties
  4633. org-todo-keywords-1)))
  4634. ((eq arg 'done) org-done-keywords)
  4635. ((eq arg 'any)
  4636. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4637. (setq todo-re
  4638. (concat "^\\*+[ \t]+\\<\\("
  4639. (mapconcat 'identity todo-wds "\\|")
  4640. "\\)\\>"))
  4641. (cond
  4642. ((eq kw 'todo) (re-search-forward todo-re end t))
  4643. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4644. ((eq kw 'todo-unblocked)
  4645. (catch 'unblocked
  4646. (while (re-search-forward todo-re end t)
  4647. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4648. nil))
  4649. ((eq kw 'nottodo-unblocked)
  4650. (catch 'unblocked
  4651. (while (re-search-forward todo-re end t)
  4652. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4653. t))
  4654. )))
  4655. ;;;###autoload
  4656. (defun org-agenda-list-stuck-projects (&rest ignore)
  4657. "Create agenda view for projects that are stuck.
  4658. Stuck projects are project that have no next actions. For the definitions
  4659. of what a project is and how to check if it stuck, customize the variable
  4660. `org-stuck-projects'."
  4661. (interactive)
  4662. (let* ((org-agenda-skip-function
  4663. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4664. ;; We could have used org-agenda-skip-if here.
  4665. (org-agenda-overriding-header
  4666. (or org-agenda-overriding-header "List of stuck projects: "))
  4667. (matcher (nth 0 org-stuck-projects))
  4668. (todo (nth 1 org-stuck-projects))
  4669. (todo-wds (if (member "*" todo)
  4670. (progn
  4671. (org-agenda-prepare-buffers (org-agenda-files
  4672. nil 'ifmode))
  4673. (org-delete-all
  4674. org-done-keywords-for-agenda
  4675. (copy-sequence org-todo-keywords-for-agenda)))
  4676. todo))
  4677. (todo-re (concat "^\\*+[ \t]+\\("
  4678. (mapconcat 'identity todo-wds "\\|")
  4679. "\\)\\>"))
  4680. (tags (nth 2 org-stuck-projects))
  4681. (tags-re (if (member "*" tags)
  4682. (concat org-outline-regexp-bol
  4683. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4684. (if tags
  4685. (concat org-outline-regexp-bol
  4686. ".*:\\("
  4687. (mapconcat 'identity tags "\\|")
  4688. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4689. (gen-re (nth 3 org-stuck-projects))
  4690. (re-list
  4691. (delq nil
  4692. (list
  4693. (if todo todo-re)
  4694. (if tags tags-re)
  4695. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4696. gen-re)))))
  4697. (setq org-agenda-skip-regexp
  4698. (if re-list
  4699. (mapconcat 'identity re-list "\\|")
  4700. (error "No information how to identify unstuck projects")))
  4701. (org-tags-view nil matcher)
  4702. (setq org-agenda-buffer-name (buffer-name))
  4703. (with-current-buffer org-agenda-buffer-name
  4704. (setq org-agenda-redo-command
  4705. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4706. ;;; Diary integration
  4707. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4708. (defvar diary-list-entries-hook)
  4709. (defvar diary-time-regexp)
  4710. (defun org-get-entries-from-diary (date)
  4711. "Get the (Emacs Calendar) diary entries for DATE."
  4712. (require 'diary-lib)
  4713. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4714. (diary-display-function 'diary-fancy-display)
  4715. (pop-up-frames nil)
  4716. (diary-list-entries-hook
  4717. (cons 'org-diary-default-entry diary-list-entries-hook))
  4718. (diary-file-name-prefix nil) ; turn this feature off
  4719. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4720. entries
  4721. (org-disable-agenda-to-diary t))
  4722. (save-excursion
  4723. (save-window-excursion
  4724. (funcall (if (fboundp 'diary-list-entries)
  4725. 'diary-list-entries 'list-diary-entries)
  4726. date 1)))
  4727. (if (not (get-buffer diary-fancy-buffer))
  4728. (setq entries nil)
  4729. (with-current-buffer diary-fancy-buffer
  4730. (setq buffer-read-only nil)
  4731. (if (zerop (buffer-size))
  4732. ;; No entries
  4733. (setq entries nil)
  4734. ;; Omit the date and other unnecessary stuff
  4735. (org-agenda-cleanup-fancy-diary)
  4736. ;; Add prefix to each line and extend the text properties
  4737. (if (zerop (buffer-size))
  4738. (setq entries nil)
  4739. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4740. (setq entries
  4741. (with-temp-buffer
  4742. (insert entries) (goto-char (point-min))
  4743. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4744. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4745. (replace-match (concat "; " (match-string 1)))))
  4746. (buffer-string)))))
  4747. (set-buffer-modified-p nil)
  4748. (kill-buffer diary-fancy-buffer)))
  4749. (when entries
  4750. (setq entries (org-split-string entries "\n"))
  4751. (setq entries
  4752. (mapcar
  4753. (lambda (x)
  4754. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4755. ;; Extend the text properties to the beginning of the line
  4756. (org-add-props x (text-properties-at (1- (length x)) x)
  4757. 'type "diary" 'date date 'face 'org-agenda-diary))
  4758. entries)))))
  4759. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4760. "Hook run when the fancy diary buffer is cleaned up.")
  4761. (defun org-agenda-cleanup-fancy-diary ()
  4762. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4763. This gets rid of the date, the underline under the date, and
  4764. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4765. date. It also removes lines that contain only whitespace."
  4766. (goto-char (point-min))
  4767. (if (looking-at ".*?:[ \t]*")
  4768. (progn
  4769. (replace-match "")
  4770. (re-search-forward "\n=+$" nil t)
  4771. (replace-match "")
  4772. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4773. (re-search-forward "\n=+$" nil t)
  4774. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4775. (goto-char (point-min))
  4776. (while (re-search-forward "^ +\n" nil t)
  4777. (replace-match ""))
  4778. (goto-char (point-min))
  4779. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4780. (replace-match ""))
  4781. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4782. ;; Make sure entries from the diary have the right text properties.
  4783. (eval-after-load "diary-lib"
  4784. '(if (boundp 'diary-modify-entry-list-string-function)
  4785. ;; We can rely on the hook, nothing to do
  4786. nil
  4787. ;; Hook not available, must use advice to make this work
  4788. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4789. "Make the position visible."
  4790. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4791. (stringp string)
  4792. buffer-file-name)
  4793. (setq string (org-modify-diary-entry-string string))))))
  4794. (defun org-modify-diary-entry-string (string)
  4795. "Add text properties to string, allowing org-mode to act on it."
  4796. (org-add-props string nil
  4797. 'mouse-face 'highlight
  4798. 'help-echo (if buffer-file-name
  4799. (format "mouse-2 or RET jump to diary file %s"
  4800. (abbreviate-file-name buffer-file-name))
  4801. "")
  4802. 'org-agenda-diary-link t
  4803. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4804. (defun org-diary-default-entry ()
  4805. "Add a dummy entry to the diary.
  4806. Needed to avoid empty dates which mess up holiday display."
  4807. ;; Catch the error if dealing with the new add-to-diary-alist
  4808. (when org-disable-agenda-to-diary
  4809. (condition-case nil
  4810. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4811. (error
  4812. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4813. (defun org-add-to-diary-list (&rest args)
  4814. (if (fboundp 'diary-add-to-list)
  4815. (apply 'diary-add-to-list args)
  4816. (apply 'add-to-diary-list args)))
  4817. (defvar org-diary-last-run-time nil)
  4818. ;;;###autoload
  4819. (defun org-diary (&rest args)
  4820. "Return diary information from org files.
  4821. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4822. It accesses org files and extracts information from those files to be
  4823. listed in the diary. The function accepts arguments specifying what
  4824. items should be listed. For a list of arguments allowed here, see the
  4825. variable `org-agenda-entry-types'.
  4826. The call in the diary file should look like this:
  4827. &%%(org-diary) ~/path/to/some/orgfile.org
  4828. Use a separate line for each org file to check. Or, if you omit the file name,
  4829. all files listed in `org-agenda-files' will be checked automatically:
  4830. &%%(org-diary)
  4831. If you don't give any arguments (as in the example above), the default value
  4832. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4833. So the example above may also be written as
  4834. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4835. The function expects the lisp variables `entry' and `date' to be provided
  4836. by the caller, because this is how the calendar works. Don't use this
  4837. function from a program - use `org-agenda-get-day-entries' instead."
  4838. (when (> (- (org-float-time)
  4839. org-agenda-last-marker-time)
  4840. 5)
  4841. ;; I am not sure if this works with sticky agendas, because the marker
  4842. ;; list is then no longer a global variable.
  4843. (org-agenda-reset-markers))
  4844. (org-compile-prefix-format 'agenda)
  4845. (org-set-sorting-strategy 'agenda)
  4846. (setq args (or args org-agenda-entry-types))
  4847. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4848. (list entry)
  4849. (org-agenda-files t)))
  4850. (time (org-float-time))
  4851. file rtn results)
  4852. (when (or (not org-diary-last-run-time)
  4853. (> (- time
  4854. org-diary-last-run-time)
  4855. 3))
  4856. (org-agenda-prepare-buffers files))
  4857. (setq org-diary-last-run-time time)
  4858. ;; If this is called during org-agenda, don't return any entries to
  4859. ;; the calendar. Org Agenda will list these entries itself.
  4860. (if org-disable-agenda-to-diary (setq files nil))
  4861. (while (setq file (pop files))
  4862. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4863. (setq results (append results rtn)))
  4864. (when results
  4865. (setq results
  4866. (mapcar (lambda (i) (replace-regexp-in-string
  4867. org-bracket-link-regexp "\\3" i)) results))
  4868. (concat (org-agenda-finalize-entries results) "\n"))))
  4869. ;;; Agenda entry finders
  4870. (defun org-agenda-get-day-entries (file date &rest args)
  4871. "Does the work for `org-diary' and `org-agenda'.
  4872. FILE is the path to a file to be checked for entries. DATE is date like
  4873. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4874. which kind of entries should be extracted. For details about these, see
  4875. the documentation of `org-diary'."
  4876. (setq args (or args org-agenda-entry-types))
  4877. (let* ((org-startup-folded nil)
  4878. (org-startup-align-all-tables nil)
  4879. (buffer (if (file-exists-p file)
  4880. (org-get-agenda-file-buffer file)
  4881. (error "No such file %s" file)))
  4882. arg results rtn deadline-results)
  4883. (if (not buffer)
  4884. ;; If file does not exist, make sure an error message ends up in diary
  4885. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4886. (with-current-buffer buffer
  4887. (unless (derived-mode-p 'org-mode)
  4888. (error "Agenda file %s is not in `org-mode'" file))
  4889. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4890. (let ((case-fold-search nil))
  4891. (save-excursion
  4892. (save-restriction
  4893. (if (eq buffer org-agenda-restrict)
  4894. (narrow-to-region org-agenda-restrict-begin
  4895. org-agenda-restrict-end)
  4896. (widen))
  4897. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4898. (while (setq arg (pop args))
  4899. (cond
  4900. ((and (eq arg :todo)
  4901. (equal date (calendar-gregorian-from-absolute
  4902. (org-today))))
  4903. (setq rtn (org-agenda-get-todos))
  4904. (setq results (append results rtn)))
  4905. ((eq arg :timestamp)
  4906. (setq rtn (org-agenda-get-blocks))
  4907. (setq results (append results rtn))
  4908. (setq rtn (org-agenda-get-timestamps deadline-results))
  4909. (setq results (append results rtn)))
  4910. ((eq arg :sexp)
  4911. (setq rtn (org-agenda-get-sexps))
  4912. (setq results (append results rtn)))
  4913. ((eq arg :scheduled)
  4914. (setq rtn (org-agenda-get-scheduled deadline-results))
  4915. (setq results (append results rtn)))
  4916. ((eq arg :scheduled*)
  4917. (setq rtn (org-agenda-get-scheduled deadline-results t))
  4918. (setq results (append results rtn)))
  4919. ((eq arg :closed)
  4920. (setq rtn (org-agenda-get-progress))
  4921. (setq results (append results rtn)))
  4922. ((eq arg :deadline)
  4923. (setq rtn (org-agenda-get-deadlines))
  4924. (setq deadline-results (copy-sequence rtn))
  4925. (setq results (append results rtn)))
  4926. ((eq arg :deadline*)
  4927. (setq rtn (org-agenda-get-deadlines t))
  4928. (setq deadline-results (copy-sequence rtn))
  4929. (setq results (append results rtn))))))))
  4930. results))))
  4931. (defsubst org-em (x y list)
  4932. "Is X or Y a member of LIST?"
  4933. (or (memq x list) (memq y list)))
  4934. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4935. (defvar org-agenda-sorting-strategy-selected nil)
  4936. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4937. "Retrieve timestamp information for sorting agenda views.
  4938. Given a point or marker POM, returns a cons cell of the timestamp
  4939. and the timestamp type relevant for the sorting strategy in
  4940. `org-agenda-sorting-strategy-selected'."
  4941. (let (ts ts-date-type)
  4942. (save-match-data
  4943. (cond ((org-em 'scheduled-up 'scheduled-down
  4944. org-agenda-sorting-strategy-selected)
  4945. (setq ts (org-entry-get pom "SCHEDULED")
  4946. ts-date-type " scheduled"))
  4947. ((org-em 'deadline-up 'deadline-down
  4948. org-agenda-sorting-strategy-selected)
  4949. (setq ts (org-entry-get pom "DEADLINE")
  4950. ts-date-type " deadline"))
  4951. ((org-em 'ts-up 'ts-down
  4952. org-agenda-sorting-strategy-selected)
  4953. (setq ts (org-entry-get pom "TIMESTAMP")
  4954. ts-date-type " timestamp"))
  4955. ((org-em 'tsia-up 'tsia-down
  4956. org-agenda-sorting-strategy-selected)
  4957. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4958. ts-date-type " timestamp_ia"))
  4959. ((org-em 'timestamp-up 'timestamp-down
  4960. org-agenda-sorting-strategy-selected)
  4961. (setq ts (or (org-entry-get pom "SCHEDULED")
  4962. (org-entry-get pom "DEADLINE")
  4963. (org-entry-get pom "TIMESTAMP")
  4964. (org-entry-get pom "TIMESTAMP_IA"))
  4965. ts-date-type ""))
  4966. (t (setq ts-date-type "")))
  4967. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4968. ts-date-type))))
  4969. (defun org-agenda-get-todos ()
  4970. "Return the TODO information for agenda display."
  4971. (let* ((props (list 'face nil
  4972. 'done-face 'org-agenda-done
  4973. 'org-not-done-regexp org-not-done-regexp
  4974. 'org-todo-regexp org-todo-regexp
  4975. 'org-complex-heading-regexp org-complex-heading-regexp
  4976. 'mouse-face 'highlight
  4977. 'help-echo
  4978. (format "mouse-2 or RET jump to org file %s"
  4979. (abbreviate-file-name buffer-file-name))))
  4980. (regexp (format org-heading-keyword-regexp-format
  4981. (cond
  4982. ((and org-select-this-todo-keyword
  4983. (equal org-select-this-todo-keyword "*"))
  4984. org-todo-regexp)
  4985. (org-select-this-todo-keyword
  4986. (concat "\\("
  4987. (mapconcat 'identity
  4988. (org-split-string
  4989. org-select-this-todo-keyword
  4990. "|")
  4991. "\\|") "\\)"))
  4992. (t org-not-done-regexp))))
  4993. marker priority category level tags todo-state
  4994. ts-date ts-date-type ts-date-pair
  4995. ee txt beg end inherited-tags todo-state-end-pos)
  4996. (goto-char (point-min))
  4997. (while (re-search-forward regexp nil t)
  4998. (catch :skip
  4999. (save-match-data
  5000. (beginning-of-line)
  5001. (org-agenda-skip)
  5002. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5003. (unless (and (setq todo-state (org-get-todo-state))
  5004. (setq todo-state-end-pos (match-end 2)))
  5005. (goto-char end)
  5006. (throw :skip nil))
  5007. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5008. (goto-char (1+ beg))
  5009. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5010. (throw :skip nil)))
  5011. (goto-char (match-beginning 2))
  5012. (setq marker (org-agenda-new-marker (match-beginning 0))
  5013. category (org-get-category)
  5014. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5015. ts-date (car ts-date-pair)
  5016. ts-date-type (cdr ts-date-pair)
  5017. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5018. inherited-tags
  5019. (or (eq org-agenda-show-inherited-tags 'always)
  5020. (and (listp org-agenda-show-inherited-tags)
  5021. (memq 'todo org-agenda-show-inherited-tags))
  5022. (and (eq org-agenda-show-inherited-tags t)
  5023. (or (eq org-agenda-use-tag-inheritance t)
  5024. (memq 'todo org-agenda-use-tag-inheritance))))
  5025. tags (org-get-tags-at nil (not inherited-tags))
  5026. level (make-string (org-reduced-level (org-outline-level)) ? )
  5027. txt (org-agenda-format-item "" txt level category tags t)
  5028. priority (1+ (org-get-priority txt)))
  5029. (org-add-props txt props
  5030. 'org-marker marker 'org-hd-marker marker
  5031. 'priority priority
  5032. 'level level
  5033. 'ts-date ts-date
  5034. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5035. (push txt ee)
  5036. (if org-agenda-todo-list-sublevels
  5037. (goto-char todo-state-end-pos)
  5038. (org-end-of-subtree 'invisible))))
  5039. (nreverse ee)))
  5040. (defun org-agenda-todo-custom-ignore-p (time n)
  5041. "Check whether timestamp is farther away than n number of days.
  5042. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5043. `org-agenda-todo-ignore-scheduled' or
  5044. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5045. (let ((days (org-time-stamp-to-now
  5046. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5047. (if (>= n 0)
  5048. (>= days n)
  5049. (<= days n))))
  5050. ;;;###autoload
  5051. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5052. (&optional end)
  5053. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5054. (when (or org-agenda-todo-ignore-with-date
  5055. org-agenda-todo-ignore-scheduled
  5056. org-agenda-todo-ignore-deadlines
  5057. org-agenda-todo-ignore-timestamp)
  5058. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5059. (save-excursion
  5060. (or (and org-agenda-todo-ignore-with-date
  5061. (re-search-forward org-ts-regexp end t))
  5062. (and org-agenda-todo-ignore-scheduled
  5063. (re-search-forward org-scheduled-time-regexp end t)
  5064. (cond
  5065. ((eq org-agenda-todo-ignore-scheduled 'future)
  5066. (> (org-time-stamp-to-now
  5067. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5068. ((eq org-agenda-todo-ignore-scheduled 'past)
  5069. (<= (org-time-stamp-to-now
  5070. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5071. ((numberp org-agenda-todo-ignore-scheduled)
  5072. (org-agenda-todo-custom-ignore-p
  5073. (match-string 1) org-agenda-todo-ignore-scheduled))
  5074. (t)))
  5075. (and org-agenda-todo-ignore-deadlines
  5076. (re-search-forward org-deadline-time-regexp end t)
  5077. (cond
  5078. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5079. ((eq org-agenda-todo-ignore-deadlines 'far)
  5080. (not (org-deadline-close (match-string 1))))
  5081. ((eq org-agenda-todo-ignore-deadlines 'future)
  5082. (> (org-time-stamp-to-now
  5083. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5084. ((eq org-agenda-todo-ignore-deadlines 'past)
  5085. (<= (org-time-stamp-to-now
  5086. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5087. ((numberp org-agenda-todo-ignore-deadlines)
  5088. (org-agenda-todo-custom-ignore-p
  5089. (match-string 1) org-agenda-todo-ignore-deadlines))
  5090. (t (org-deadline-close (match-string 1)))))
  5091. (and org-agenda-todo-ignore-timestamp
  5092. (let ((buffer (current-buffer))
  5093. (regexp
  5094. (concat
  5095. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5096. (start (point)))
  5097. ;; Copy current buffer into a temporary one
  5098. (with-temp-buffer
  5099. (insert-buffer-substring buffer start end)
  5100. (goto-char (point-min))
  5101. ;; Delete SCHEDULED and DEADLINE items
  5102. (while (re-search-forward regexp end t)
  5103. (delete-region (match-beginning 0) (match-end 0)))
  5104. (goto-char (point-min))
  5105. ;; No search for timestamp left
  5106. (when (re-search-forward org-ts-regexp nil t)
  5107. (cond
  5108. ((eq org-agenda-todo-ignore-timestamp 'future)
  5109. (> (org-time-stamp-to-now
  5110. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5111. ((eq org-agenda-todo-ignore-timestamp 'past)
  5112. (<= (org-time-stamp-to-now
  5113. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5114. ((numberp org-agenda-todo-ignore-timestamp)
  5115. (org-agenda-todo-custom-ignore-p
  5116. (match-string 1) org-agenda-todo-ignore-timestamp))
  5117. (t))))))))))
  5118. (defun org-agenda-get-timestamps (&optional deadline-results)
  5119. "Return the date stamp information for agenda display."
  5120. (let* ((props (list 'face 'org-agenda-calendar-event
  5121. 'org-not-done-regexp org-not-done-regexp
  5122. 'org-todo-regexp org-todo-regexp
  5123. 'org-complex-heading-regexp org-complex-heading-regexp
  5124. 'mouse-face 'highlight
  5125. 'help-echo
  5126. (format "mouse-2 or RET jump to org file %s"
  5127. (abbreviate-file-name buffer-file-name))))
  5128. (d1 (calendar-absolute-from-gregorian date))
  5129. mm
  5130. (deadline-position-alist
  5131. (mapcar (lambda (a) (and (setq mm (get-text-property
  5132. 0 'org-hd-marker a))
  5133. (cons (marker-position mm) a)))
  5134. deadline-results))
  5135. (remove-re org-ts-regexp)
  5136. (regexp
  5137. (concat
  5138. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5139. (regexp-quote
  5140. (substring
  5141. (format-time-string
  5142. (car org-time-stamp-formats)
  5143. (apply 'encode-time ; DATE bound by calendar
  5144. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5145. 1 11))
  5146. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5147. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5148. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5149. donep tmp priority category level ee txt timestr tags
  5150. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5151. inherited-tags ts-date)
  5152. (goto-char (point-min))
  5153. (while (setq end-of-match (re-search-forward regexp nil t))
  5154. (setq b0 (match-beginning 0)
  5155. b3 (match-beginning 3) e3 (match-end 3)
  5156. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5157. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5158. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5159. (member todo-state
  5160. org-agenda-repeating-timestamp-show-all)))
  5161. (catch :skip
  5162. (and (org-at-date-range-p) (throw :skip nil))
  5163. (org-agenda-skip)
  5164. (if (and (match-end 1)
  5165. (not (= d1 (org-time-string-to-absolute
  5166. (match-string 1) d1 nil show-all
  5167. (current-buffer) b0))))
  5168. (throw :skip nil))
  5169. (if (and e3
  5170. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5171. (throw :skip nil))
  5172. (setq tmp (buffer-substring (max (point-min)
  5173. (- b0 org-ds-keyword-length))
  5174. b0)
  5175. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5176. inactivep (= (char-after b0) ?\[)
  5177. deadlinep (string-match org-deadline-regexp tmp)
  5178. scheduledp (string-match org-scheduled-regexp tmp)
  5179. closedp (and org-agenda-include-inactive-timestamps
  5180. (string-match org-closed-string tmp))
  5181. clockp (and org-agenda-include-inactive-timestamps
  5182. (or (string-match org-clock-string tmp)
  5183. (string-match "]-+\\'" tmp)))
  5184. warntime (get-text-property (point) 'org-appt-warntime)
  5185. donep (member todo-state org-done-keywords))
  5186. (if (or scheduledp deadlinep closedp clockp
  5187. (and donep org-agenda-skip-timestamp-if-done))
  5188. (throw :skip t))
  5189. (if (string-match ">" timestr)
  5190. ;; substring should only run to end of time stamp
  5191. (setq timestr (substring timestr 0 (match-end 0))))
  5192. (setq marker (org-agenda-new-marker b0)
  5193. category (org-get-category b0))
  5194. (save-excursion
  5195. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5196. (throw :skip nil)
  5197. (goto-char (match-beginning 0))
  5198. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5199. (assoc (point) deadline-position-alist))
  5200. (throw :skip nil))
  5201. (setq hdmarker (org-agenda-new-marker)
  5202. inherited-tags
  5203. (or (eq org-agenda-show-inherited-tags 'always)
  5204. (and (listp org-agenda-show-inherited-tags)
  5205. (memq 'agenda org-agenda-show-inherited-tags))
  5206. (and (eq org-agenda-show-inherited-tags t)
  5207. (or (eq org-agenda-use-tag-inheritance t)
  5208. (memq 'agenda org-agenda-use-tag-inheritance))))
  5209. tags (org-get-tags-at nil (not inherited-tags))
  5210. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5211. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5212. (setq head (or (match-string 1) ""))
  5213. (setq txt (org-agenda-format-item
  5214. (if inactivep org-agenda-inactive-leader nil)
  5215. head level category tags timestr
  5216. remove-re habitp)))
  5217. (setq priority (org-get-priority txt))
  5218. (org-add-props txt props 'priority priority
  5219. 'org-marker marker 'org-hd-marker hdmarker
  5220. 'date date
  5221. 'level level
  5222. 'ts-date
  5223. (ignore-errors (org-time-string-to-absolute timestr))
  5224. 'todo-state todo-state
  5225. 'warntime warntime
  5226. 'type "timestamp")
  5227. (push txt ee))
  5228. (if org-agenda-skip-additional-timestamps-same-entry
  5229. (outline-next-heading)
  5230. (goto-char end-of-match))))
  5231. (nreverse ee)))
  5232. (defun org-agenda-get-sexps ()
  5233. "Return the sexp information for agenda display."
  5234. (require 'diary-lib)
  5235. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5236. 'mouse-face 'highlight
  5237. 'help-echo
  5238. (format "mouse-2 or RET jump to org file %s"
  5239. (abbreviate-file-name buffer-file-name))))
  5240. (regexp "^&?%%(")
  5241. marker category extra level ee txt tags entry
  5242. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5243. (goto-char (point-min))
  5244. (while (re-search-forward regexp nil t)
  5245. (catch :skip
  5246. (org-agenda-skip)
  5247. (setq beg (match-beginning 0))
  5248. (goto-char (1- (match-end 0)))
  5249. (setq b (point))
  5250. (forward-sexp 1)
  5251. (setq sexp (buffer-substring b (point)))
  5252. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5253. (org-trim (match-string 1))
  5254. ""))
  5255. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5256. (when result
  5257. (setq marker (org-agenda-new-marker beg)
  5258. level (make-string (org-reduced-level (org-outline-level)) ? )
  5259. category (org-get-category beg)
  5260. inherited-tags
  5261. (or (eq org-agenda-show-inherited-tags 'always)
  5262. (and (listp org-agenda-show-inherited-tags)
  5263. (memq 'agenda org-agenda-show-inherited-tags))
  5264. (and (eq org-agenda-show-inherited-tags t)
  5265. (or (eq org-agenda-use-tag-inheritance t)
  5266. (memq 'agenda org-agenda-use-tag-inheritance))))
  5267. tags (org-get-tags-at nil (not inherited-tags))
  5268. todo-state (org-get-todo-state)
  5269. warntime (get-text-property (point) 'org-appt-warntime)
  5270. extra nil)
  5271. (dolist (r (if (stringp result)
  5272. (list result)
  5273. result)) ;; we expect a list here
  5274. (when (and org-agenda-diary-sexp-prefix
  5275. (string-match org-agenda-diary-sexp-prefix r))
  5276. (setq extra (match-string 0 r)
  5277. r (replace-match "" nil nil r)))
  5278. (if (string-match "\\S-" r)
  5279. (setq txt r)
  5280. (setq txt "SEXP entry returned empty string"))
  5281. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5282. (org-add-props txt props 'org-marker marker
  5283. 'date date 'todo-state todo-state
  5284. 'level level 'type "sexp" 'warntime warntime)
  5285. (push txt ee)))))
  5286. (nreverse ee)))
  5287. ;; Calendar sanity: define some functions that are independent of
  5288. ;; `calendar-date-style'.
  5289. ;; Normally I would like to use ISO format when calling the diary functions,
  5290. ;; but to make sure we still have Emacs 22 compatibility we bind
  5291. ;; also `european-calendar-style' and use european format
  5292. (defun org-anniversary (year month day &optional mark)
  5293. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5294. (org-no-warnings
  5295. (let ((calendar-date-style 'european) (european-calendar-style t))
  5296. (diary-anniversary day month year mark))))
  5297. (defun org-cyclic (N year month day &optional mark)
  5298. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5299. (org-no-warnings
  5300. (let ((calendar-date-style 'european) (european-calendar-style t))
  5301. (diary-cyclic N day month year mark))))
  5302. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5303. "Like `diary-block', but with fixed (ISO) order of arguments."
  5304. (org-no-warnings
  5305. (let ((calendar-date-style 'european) (european-calendar-style t))
  5306. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5307. (defun org-date (year month day &optional mark)
  5308. "Like `diary-date', but with fixed (ISO) order of arguments."
  5309. (org-no-warnings
  5310. (let ((calendar-date-style 'european) (european-calendar-style t))
  5311. (diary-date day month year mark))))
  5312. ;; Define the` org-class' function
  5313. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5314. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5315. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5316. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5317. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5318. `holidays', then any date that is known by the Emacs calendar to be a
  5319. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5320. then those holidays will be skipped."
  5321. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5322. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5323. (d (calendar-absolute-from-gregorian date))
  5324. (h (when skip-weeks (calendar-check-holidays date))))
  5325. (and
  5326. (<= date1 d)
  5327. (<= d date2)
  5328. (= (calendar-day-of-week date) dayname)
  5329. (or (not skip-weeks)
  5330. (progn
  5331. (require 'cal-iso)
  5332. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5333. (not (or (and h (memq 'holidays skip-weeks))
  5334. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5335. entry)))
  5336. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5337. "Like `org-class', but honor `calendar-date-style'.
  5338. The order of the first 2 times 3 arguments depends on the variable
  5339. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5340. So for American calendars, give this as MONTH DAY YEAR, for European as
  5341. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5342. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5343. is any number of ISO weeks in the block period for which the item should
  5344. be skipped.
  5345. This function is here only for backward compatibility and it is deprecated,
  5346. please use `org-class' instead."
  5347. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5348. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5349. (org-class
  5350. (nth 2 date1) (car date1) (nth 1 date1)
  5351. (nth 2 date2) (car date2) (nth 1 date2)
  5352. dayname skip-weeks)))
  5353. (make-obsolete 'org-diary-class 'org-class "")
  5354. (defalias 'org-get-closed 'org-agenda-get-progress)
  5355. (defun org-agenda-get-progress ()
  5356. "Return the logged TODO entries for agenda display."
  5357. (let* ((props (list 'mouse-face 'highlight
  5358. 'org-not-done-regexp org-not-done-regexp
  5359. 'org-todo-regexp org-todo-regexp
  5360. 'org-complex-heading-regexp org-complex-heading-regexp
  5361. 'help-echo
  5362. (format "mouse-2 or RET jump to org file %s"
  5363. (abbreviate-file-name buffer-file-name))))
  5364. (items (if (consp org-agenda-show-log-scoped)
  5365. org-agenda-show-log-scoped
  5366. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5367. '(clock)
  5368. org-agenda-log-mode-items)))
  5369. (parts
  5370. (delq nil
  5371. (list
  5372. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5373. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5374. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5375. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5376. (error "`org-agenda-log-mode-items' is empty")))
  5377. (regexp (concat
  5378. "\\(" parts-re "\\)"
  5379. " *\\["
  5380. (regexp-quote
  5381. (substring
  5382. (format-time-string
  5383. (car org-time-stamp-formats)
  5384. (apply 'encode-time ; DATE bound by calendar
  5385. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5386. 1 11))))
  5387. (org-agenda-search-headline-for-time nil)
  5388. marker hdmarker priority category level tags closedp
  5389. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5390. (goto-char (point-min))
  5391. (while (re-search-forward regexp nil t)
  5392. (catch :skip
  5393. (org-agenda-skip)
  5394. (setq marker (org-agenda-new-marker (match-beginning 0))
  5395. closedp (equal (match-string 1) org-closed-string)
  5396. statep (equal (string-to-char (match-string 1)) ?-)
  5397. clockp (not (or closedp statep))
  5398. state (and statep (match-string 2))
  5399. category (org-get-category (match-beginning 0))
  5400. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5401. (when (string-match "\\]" timestr)
  5402. ;; substring should only run to end of time stamp
  5403. (setq rest (substring timestr (match-end 0))
  5404. timestr (substring timestr 0 (match-end 0)))
  5405. (if (and (not closedp) (not statep)
  5406. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5407. rest))
  5408. (progn (setq timestr (concat (substring timestr 0 -1)
  5409. "-" (match-string 1 rest) "]"))
  5410. (setq clocked (match-string 2 rest)))
  5411. (setq clocked "-")))
  5412. (save-excursion
  5413. (setq extra
  5414. (cond
  5415. ((not org-agenda-log-mode-add-notes) nil)
  5416. (statep
  5417. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5418. (match-string 1)))
  5419. (clockp
  5420. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5421. (match-string 1)))))
  5422. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5423. (throw :skip nil)
  5424. (goto-char (match-beginning 0))
  5425. (setq hdmarker (org-agenda-new-marker)
  5426. inherited-tags
  5427. (or (eq org-agenda-show-inherited-tags 'always)
  5428. (and (listp org-agenda-show-inherited-tags)
  5429. (memq 'todo org-agenda-show-inherited-tags))
  5430. (and (eq org-agenda-show-inherited-tags t)
  5431. (or (eq org-agenda-use-tag-inheritance t)
  5432. (memq 'todo org-agenda-use-tag-inheritance))))
  5433. tags (org-get-tags-at nil (not inherited-tags))
  5434. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5435. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5436. (setq txt (match-string 1))
  5437. (when extra
  5438. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5439. (setq txt (concat (substring txt 0 (match-beginning 1))
  5440. " - " extra " " (match-string 2 txt)))
  5441. (setq txt (concat txt " - " extra))))
  5442. (setq txt (org-agenda-format-item
  5443. (cond
  5444. (closedp "Closed: ")
  5445. (statep (concat "State: (" state ")"))
  5446. (t (concat "Clocked: (" clocked ")")))
  5447. txt level category tags timestr)))
  5448. (setq priority 100000)
  5449. (org-add-props txt props
  5450. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5451. 'priority priority 'level level
  5452. 'type "closed" 'date date
  5453. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5454. (push txt ee))
  5455. (goto-char (point-at-eol))))
  5456. (nreverse ee)))
  5457. (defun org-agenda-show-clocking-issues ()
  5458. "Add overlays, showing issues with clocking.
  5459. See also the user option `org-agenda-clock-consistency-checks'."
  5460. (interactive)
  5461. (let* ((org-time-clocksum-use-effort-durations nil)
  5462. (pl org-agenda-clock-consistency-checks)
  5463. (re (concat "^[ \t]*"
  5464. org-clock-string
  5465. "[ \t]+"
  5466. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5467. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5468. (tlstart 0.)
  5469. (tlend 0.)
  5470. (maxtime (org-hh:mm-string-to-minutes
  5471. (or (plist-get pl :max-duration) "24:00")))
  5472. (mintime (org-hh:mm-string-to-minutes
  5473. (or (plist-get pl :min-duration) 0)))
  5474. (maxgap (org-hh:mm-string-to-minutes
  5475. ;; default 30:00 means never complain
  5476. (or (plist-get pl :max-gap) "30:00")))
  5477. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5478. (plist-get pl :gap-ok-around)))
  5479. (def-face (or (plist-get pl :default-face)
  5480. '((:background "DarkRed") (:foreground "white"))))
  5481. issue face m te ts dt ov)
  5482. (goto-char (point-min))
  5483. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5484. (setq issue nil face def-face)
  5485. (catch 'next
  5486. (setq m (org-get-at-bol 'org-marker)
  5487. te nil ts nil)
  5488. (unless (and m (markerp m))
  5489. (setq issue "No valid clock line") (throw 'next t))
  5490. (org-with-point-at m
  5491. (save-excursion
  5492. (goto-char (point-at-bol))
  5493. (unless (looking-at re)
  5494. (error "No valid Clock line")
  5495. (throw 'next t))
  5496. (unless (match-end 3)
  5497. (setq issue "No end time"
  5498. face (or (plist-get pl :no-end-time-face) face))
  5499. (throw 'next t))
  5500. (setq ts (match-string 1)
  5501. te (match-string 3)
  5502. ts (org-float-time
  5503. (apply 'encode-time (org-parse-time-string ts)))
  5504. te (org-float-time
  5505. (apply 'encode-time (org-parse-time-string te)))
  5506. dt (- te ts))))
  5507. (cond
  5508. ((> dt (* 60 maxtime))
  5509. ;; a very long clocking chunk
  5510. (setq issue (format "Clocking interval is very long: %s"
  5511. (org-minutes-to-clocksum-string
  5512. (floor (/ (float dt) 60.))))
  5513. face (or (plist-get pl :long-face) face)))
  5514. ((< dt (* 60 mintime))
  5515. ;; a very short clocking chunk
  5516. (setq issue (format "Clocking interval is very short: %s"
  5517. (org-minutes-to-clocksum-string
  5518. (floor (/ (float dt) 60.))))
  5519. face (or (plist-get pl :short-face) face)))
  5520. ((and (> tlend 0) (< ts tlend))
  5521. ;; Two clock entries are overlapping
  5522. (setq issue (format "Clocking overlap: %d minutes"
  5523. (/ (- tlend ts) 60))
  5524. face (or (plist-get pl :overlap-face) face)))
  5525. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5526. ;; There is a gap, lets see if we need to report it
  5527. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5528. (setq issue (format "Clocking gap: %d minutes"
  5529. (/ (- ts tlend) 60))
  5530. face (or (plist-get pl :gap-face) face))))
  5531. (t nil)))
  5532. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5533. (when issue
  5534. ;; OK, there was some issue, add an overlay to show the issue
  5535. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5536. (overlay-put ov 'before-string
  5537. (concat
  5538. (org-add-props
  5539. (format "%-43s" (concat " " issue))
  5540. nil
  5541. 'face face)
  5542. "\n"))
  5543. (overlay-put ov 'evaporate t)))))
  5544. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5545. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5546. (catch 'exit
  5547. (unless ok-list
  5548. ;; there are no OK times for gaps...
  5549. (throw 'exit nil))
  5550. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5551. ;; This is more than 24 hours, so it is OK.
  5552. ;; because we have at least one OK time, that must be in the
  5553. ;; 24 hour interval.
  5554. (throw 'exit t))
  5555. ;; We have a shorter gap.
  5556. ;; Now we have to get the minute of the day when these times are
  5557. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5558. (t2dec (decode-time (seconds-to-time t2)))
  5559. ;; compute the minute on the day
  5560. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5561. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5562. (when (< min2 min1)
  5563. ;; if min2 is smaller than min1, this means it is on the next day.
  5564. ;; Wrap it to after midnight.
  5565. (setq min2 (+ min2 1440)))
  5566. ;; Now check if any of the OK times is in the gap
  5567. (mapc (lambda (x)
  5568. ;; Wrap the time to after midnight if necessary
  5569. (if (< x min1) (setq x (+ x 1440)))
  5570. ;; Check if in interval
  5571. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5572. ok-list)
  5573. ;; Nope, this gap is not OK
  5574. nil)))
  5575. (defun org-agenda-get-deadlines (&optional with-hour)
  5576. "Return the deadline information for agenda display.
  5577. When WITH-HOUR is non-nil, only return deadlines with an hour
  5578. specification like [h]h:mm."
  5579. (let* ((props (list 'mouse-face 'highlight
  5580. 'org-not-done-regexp org-not-done-regexp
  5581. 'org-todo-regexp org-todo-regexp
  5582. 'org-complex-heading-regexp org-complex-heading-regexp
  5583. 'help-echo
  5584. (format "mouse-2 or RET jump to org file %s"
  5585. (abbreviate-file-name buffer-file-name))))
  5586. (regexp (if with-hour
  5587. org-deadline-time-hour-regexp
  5588. org-deadline-time-regexp))
  5589. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5590. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5591. (dl0 (car org-agenda-deadline-leaders))
  5592. (dl1 (nth 1 org-agenda-deadline-leaders))
  5593. (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
  5594. d2 diff dfrac wdays pos pos1 category level
  5595. tags suppress-prewarning ee txt head face s todo-state
  5596. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5597. (goto-char (point-min))
  5598. (while (re-search-forward regexp nil t)
  5599. (catch :skip
  5600. (org-agenda-skip)
  5601. (setq s (match-string 1)
  5602. txt nil
  5603. pos (1- (match-beginning 1))
  5604. todo-state (save-match-data (org-get-todo-state))
  5605. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5606. (member todo-state
  5607. org-agenda-repeating-timestamp-show-all))
  5608. d2 (org-time-string-to-absolute
  5609. s d1 'past show-all (current-buffer) pos)
  5610. diff (- d2 d1))
  5611. (setq suppress-prewarning
  5612. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5613. (let ((item (buffer-substring (point-at-bol)
  5614. (point-at-eol))))
  5615. (save-match-data
  5616. (and (string-match
  5617. org-scheduled-time-regexp item)
  5618. (match-string 1 item)))))))
  5619. (cond
  5620. ((not ds) nil)
  5621. ;; The current item has a scheduled date (in ds), so
  5622. ;; evaluate its prewarning lead time.
  5623. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5624. ;; Use global prewarning-restart lead time.
  5625. org-agenda-skip-deadline-prewarning-if-scheduled)
  5626. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5627. 'pre-scheduled)
  5628. ;; Set prewarning to no earlier than scheduled.
  5629. (min (- d2 (org-time-string-to-absolute
  5630. ds d1 'past show-all (current-buffer) pos))
  5631. org-deadline-warning-days))
  5632. ;; Set prewarning to deadline.
  5633. (t 0))))
  5634. (setq wdays (if suppress-prewarning
  5635. (let ((org-deadline-warning-days suppress-prewarning))
  5636. (org-get-wdays s))
  5637. (org-get-wdays s))
  5638. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5639. upcomingp (and todayp (> diff 0)))
  5640. ;; When to show a deadline in the calendar:
  5641. ;; If the expiration is within wdays warning time.
  5642. ;; Past-due deadlines are only shown on the current date
  5643. (if (and (or (and (<= diff wdays)
  5644. (and todayp (not org-agenda-only-exact-dates)))
  5645. (= diff 0)))
  5646. (save-excursion
  5647. ;; (setq todo-state (org-get-todo-state))
  5648. (setq donep (member todo-state org-done-keywords))
  5649. (if (and donep
  5650. (or org-agenda-skip-deadline-if-done
  5651. (not (= diff 0))))
  5652. (setq txt nil)
  5653. (setq category (org-get-category)
  5654. warntime (get-text-property (point) 'org-appt-warntime))
  5655. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5656. (throw :skip nil)
  5657. (goto-char (match-end 0))
  5658. (setq pos1 (match-beginning 0))
  5659. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5660. (setq inherited-tags
  5661. (or (eq org-agenda-show-inherited-tags 'always)
  5662. (and (listp org-agenda-show-inherited-tags)
  5663. (memq 'agenda org-agenda-show-inherited-tags))
  5664. (and (eq org-agenda-show-inherited-tags t)
  5665. (or (eq org-agenda-use-tag-inheritance t)
  5666. (memq 'agenda org-agenda-use-tag-inheritance))))
  5667. tags (org-get-tags-at pos1 (not inherited-tags)))
  5668. (setq head (buffer-substring
  5669. (point)
  5670. (progn (skip-chars-forward "^\r\n")
  5671. (point))))
  5672. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5673. (setq timestr
  5674. (concat (substring s (match-beginning 1)) " "))
  5675. (setq timestr 'time))
  5676. (setq txt (org-agenda-format-item
  5677. (cond ((= diff 0) dl0)
  5678. ((> diff 0)
  5679. (if (functionp dl1)
  5680. (funcall dl1 diff date)
  5681. (format dl1 diff)))
  5682. (t
  5683. (if (functionp dl2)
  5684. (funcall dl2 diff date)
  5685. (format dl2 (if (string= dl2 dl1)
  5686. diff (abs diff))))))
  5687. head level category tags
  5688. (if (not (= diff 0)) nil timestr)))))
  5689. (when txt
  5690. (setq face (org-agenda-deadline-face dfrac))
  5691. (org-add-props txt props
  5692. 'org-marker (org-agenda-new-marker pos)
  5693. 'warntime warntime
  5694. 'level level
  5695. 'ts-date d2
  5696. 'org-hd-marker (org-agenda-new-marker pos1)
  5697. 'priority (+ (- diff)
  5698. (org-get-priority txt))
  5699. 'todo-state todo-state
  5700. 'type (if upcomingp "upcoming-deadline" "deadline")
  5701. 'date (if upcomingp date d2)
  5702. 'face (if donep 'org-agenda-done face)
  5703. 'undone-face face 'done-face 'org-agenda-done)
  5704. (push txt ee))))))
  5705. (nreverse ee)))
  5706. (defun org-agenda-deadline-face (fraction)
  5707. "Return the face to displaying a deadline item.
  5708. FRACTION is what fraction of the head-warning time has passed."
  5709. (let ((faces org-agenda-deadline-faces) f)
  5710. (catch 'exit
  5711. (while (setq f (pop faces))
  5712. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5713. (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
  5714. "Return the scheduled information for agenda display.
  5715. When WITH-HOUR is non-nil, only return scheduled items with
  5716. an hour specification like [h]h:mm."
  5717. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5718. 'org-todo-regexp org-todo-regexp
  5719. 'org-complex-heading-regexp org-complex-heading-regexp
  5720. 'done-face 'org-agenda-done
  5721. 'mouse-face 'highlight
  5722. 'help-echo
  5723. (format "mouse-2 or RET jump to org file %s"
  5724. (abbreviate-file-name buffer-file-name))))
  5725. (regexp (if with-hour
  5726. org-scheduled-time-hour-regexp
  5727. org-scheduled-time-regexp))
  5728. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5729. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5730. mm
  5731. (deadline-position-alist
  5732. (mapcar (lambda (a) (and (setq mm (get-text-property
  5733. 0 'org-hd-marker a))
  5734. (cons (marker-position mm) a)))
  5735. deadline-results))
  5736. d2 diff pos pos1 category level tags donep
  5737. ee txt head pastschedp todo-state face timestr s habitp show-all
  5738. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5739. ddays)
  5740. (goto-char (point-min))
  5741. (while (re-search-forward regexp nil t)
  5742. (catch :skip
  5743. (org-agenda-skip)
  5744. (setq s (match-string 1)
  5745. txt nil
  5746. pos (1- (match-beginning 1))
  5747. todo-state (save-match-data (org-get-todo-state))
  5748. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5749. (member todo-state
  5750. org-agenda-repeating-timestamp-show-all))
  5751. d2 (org-time-string-to-absolute
  5752. s d1 'past show-all (current-buffer) pos)
  5753. diff (- d2 d1)
  5754. warntime (get-text-property (point) 'org-appt-warntime))
  5755. (setq pastschedp (and todayp (< diff 0)))
  5756. (setq did-habit-check-p nil)
  5757. (setq suppress-delay
  5758. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5759. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5760. (save-match-data
  5761. (and (string-match
  5762. org-deadline-time-regexp item)
  5763. (match-string 1 item)))))))
  5764. (cond
  5765. ((not ds) nil)
  5766. ;; The current item has a deadline date (in ds), so
  5767. ;; evaluate its delay time.
  5768. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5769. ;; Use global delay time.
  5770. (- org-agenda-skip-scheduled-delay-if-deadline))
  5771. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5772. 'post-deadline)
  5773. ;; Set delay to no later than deadline.
  5774. (min (- d2 (org-time-string-to-absolute
  5775. ds d1 'past show-all (current-buffer) pos))
  5776. org-scheduled-delay-days))
  5777. (t 0))))
  5778. (setq ddays (if suppress-delay
  5779. (let ((org-scheduled-delay-days suppress-delay))
  5780. (org-get-wdays s t t))
  5781. (org-get-wdays s t)))
  5782. ;; Use a delay of 0 when there is a repeater and the delay is
  5783. ;; of the form --3d
  5784. (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5785. (< (org-time-string-to-absolute s)
  5786. (org-time-string-to-absolute
  5787. s d2 'past nil (current-buffer) pos)))
  5788. (setq ddays 0))
  5789. ;; When to show a scheduled item in the calendar:
  5790. ;; If it is on or past the date.
  5791. (when (or (and (> ddays 0) (= diff (- ddays)))
  5792. (and (zerop ddays) (= diff 0))
  5793. (and (< (+ diff ddays) 0)
  5794. (< (abs diff) org-scheduled-past-days)
  5795. (and todayp (not org-agenda-only-exact-dates)))
  5796. ;; org-is-habit-p uses org-entry-get, which is expansive
  5797. ;; so we go extra mile to only call it once
  5798. (and todayp
  5799. (boundp 'org-habit-show-all-today)
  5800. org-habit-show-all-today
  5801. (setq did-habit-check-p t)
  5802. (setq habitp (and (functionp 'org-is-habit-p)
  5803. (org-is-habit-p)))))
  5804. (save-excursion
  5805. (setq donep (member todo-state org-done-keywords))
  5806. (if (and donep
  5807. (or org-agenda-skip-scheduled-if-done
  5808. (not (= diff 0))
  5809. (and (functionp 'org-is-habit-p)
  5810. (org-is-habit-p))))
  5811. (setq txt nil)
  5812. (setq habitp (if did-habit-check-p habitp
  5813. (and (functionp 'org-is-habit-p)
  5814. (org-is-habit-p))))
  5815. (setq category (org-get-category))
  5816. (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
  5817. 'repeated-after-deadline)
  5818. (org-get-deadline-time (point))
  5819. (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
  5820. (throw :skip nil))
  5821. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5822. (throw :skip nil)
  5823. (goto-char (match-end 0))
  5824. (setq pos1 (match-beginning 0))
  5825. (if habitp
  5826. (if (or (not org-habit-show-habits)
  5827. (and (not todayp)
  5828. (boundp 'org-habit-show-habits-only-for-today)
  5829. org-habit-show-habits-only-for-today))
  5830. (throw :skip nil))
  5831. (if (and
  5832. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5833. (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
  5834. pastschedp))
  5835. (setq mm (assoc pos1 deadline-position-alist)))
  5836. (throw :skip nil)))
  5837. (setq inherited-tags
  5838. (or (eq org-agenda-show-inherited-tags 'always)
  5839. (and (listp org-agenda-show-inherited-tags)
  5840. (memq 'agenda org-agenda-show-inherited-tags))
  5841. (and (eq org-agenda-show-inherited-tags t)
  5842. (or (eq org-agenda-use-tag-inheritance t)
  5843. (memq 'agenda org-agenda-use-tag-inheritance))))
  5844. tags (org-get-tags-at nil (not inherited-tags)))
  5845. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5846. (setq head (buffer-substring
  5847. (point)
  5848. (progn (skip-chars-forward "^\r\n") (point))))
  5849. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5850. (setq timestr
  5851. (concat (substring s (match-beginning 1)) " "))
  5852. (setq timestr 'time))
  5853. (setq txt (org-agenda-format-item
  5854. (if (= diff 0)
  5855. (car org-agenda-scheduled-leaders)
  5856. (format (nth 1 org-agenda-scheduled-leaders)
  5857. (- 1 diff)))
  5858. head level category tags
  5859. (if (not (= diff 0)) nil timestr)
  5860. nil habitp))))
  5861. (when txt
  5862. (setq face
  5863. (cond
  5864. ((and (not habitp) pastschedp)
  5865. 'org-scheduled-previously)
  5866. (todayp 'org-scheduled-today)
  5867. (t 'org-scheduled))
  5868. habitp (and habitp (org-habit-parse-todo)))
  5869. (org-add-props txt props
  5870. 'undone-face face
  5871. 'face (if donep 'org-agenda-done face)
  5872. 'org-marker (org-agenda-new-marker pos)
  5873. 'org-hd-marker (org-agenda-new-marker pos1)
  5874. 'type (if pastschedp "past-scheduled" "scheduled")
  5875. 'date (if pastschedp d2 date)
  5876. 'ts-date d2
  5877. 'warntime warntime
  5878. 'level level
  5879. 'priority (if habitp
  5880. (org-habit-get-priority habitp)
  5881. (+ 94 (- 5 diff) (org-get-priority txt)))
  5882. 'org-habit-p habitp
  5883. 'todo-state todo-state)
  5884. (push txt ee))))))
  5885. (nreverse ee)))
  5886. (defun org-agenda-get-blocks ()
  5887. "Return the date-range information for agenda display."
  5888. (let* ((props (list 'face nil
  5889. 'org-not-done-regexp org-not-done-regexp
  5890. 'org-todo-regexp org-todo-regexp
  5891. 'org-complex-heading-regexp org-complex-heading-regexp
  5892. 'mouse-face 'highlight
  5893. 'help-echo
  5894. (format "mouse-2 or RET jump to org file %s"
  5895. (abbreviate-file-name buffer-file-name))))
  5896. (regexp org-tr-regexp)
  5897. (d0 (calendar-absolute-from-gregorian date))
  5898. marker hdmarker ee txt d1 d2 s1 s2 category
  5899. level todo-state tags pos head donep inherited-tags)
  5900. (goto-char (point-min))
  5901. (while (re-search-forward regexp nil t)
  5902. (catch :skip
  5903. (org-agenda-skip)
  5904. (setq pos (point))
  5905. (let ((start-time (match-string 1))
  5906. (end-time (match-string 2)))
  5907. (setq s1 (match-string 1)
  5908. s2 (match-string 2)
  5909. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5910. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5911. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5912. ;; Only allow days between the limits, because the normal
  5913. ;; date stamps will catch the limits.
  5914. (save-excursion
  5915. (setq todo-state (org-get-todo-state))
  5916. (setq donep (member todo-state org-done-keywords))
  5917. (if (and donep org-agenda-skip-timestamp-if-done)
  5918. (throw :skip t))
  5919. (setq marker (org-agenda-new-marker (point))
  5920. category (org-get-category))
  5921. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5922. (throw :skip nil)
  5923. (goto-char (match-beginning 0))
  5924. (setq hdmarker (org-agenda-new-marker (point))
  5925. inherited-tags
  5926. (or (eq org-agenda-show-inherited-tags 'always)
  5927. (and (listp org-agenda-show-inherited-tags)
  5928. (memq 'agenda org-agenda-show-inherited-tags))
  5929. (and (eq org-agenda-show-inherited-tags t)
  5930. (or (eq org-agenda-use-tag-inheritance t)
  5931. (memq 'agenda org-agenda-use-tag-inheritance))))
  5932. tags (org-get-tags-at nil (not inherited-tags)))
  5933. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5934. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5935. (setq head (match-string 1))
  5936. (let ((remove-re
  5937. (if org-agenda-remove-timeranges-from-blocks
  5938. (concat
  5939. "<" (regexp-quote s1) ".*?>"
  5940. "--"
  5941. "<" (regexp-quote s2) ".*?>")
  5942. nil)))
  5943. (setq txt (org-agenda-format-item
  5944. (format
  5945. (nth (if (= d1 d2) 0 1)
  5946. org-agenda-timerange-leaders)
  5947. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5948. head level category tags
  5949. (cond ((and (= d1 d0) (= d2 d0))
  5950. (concat "<" start-time ">--<" end-time ">"))
  5951. ((= d1 d0)
  5952. (concat "<" start-time ">"))
  5953. ((= d2 d0)
  5954. (concat "<" end-time ">")))
  5955. remove-re))))
  5956. (org-add-props txt props
  5957. 'org-marker marker 'org-hd-marker hdmarker
  5958. 'type "block" 'date date
  5959. 'level level
  5960. 'todo-state todo-state
  5961. 'priority (org-get-priority txt))
  5962. (push txt ee))))
  5963. (goto-char pos)))
  5964. ;; Sort the entries by expiration date.
  5965. (nreverse ee)))
  5966. ;;; Agenda presentation and sorting
  5967. (defvar org-prefix-has-time nil
  5968. "A flag, set by `org-compile-prefix-format'.
  5969. The flag is set if the currently compiled format contains a `%t'.")
  5970. (defvar org-prefix-has-tag nil
  5971. "A flag, set by `org-compile-prefix-format'.
  5972. The flag is set if the currently compiled format contains a `%T'.")
  5973. (defvar org-prefix-has-effort nil
  5974. "A flag, set by `org-compile-prefix-format'.
  5975. The flag is set if the currently compiled format contains a `%e'.")
  5976. (defvar org-prefix-has-breadcrumbs nil
  5977. "A flag, set by `org-compile-prefix-format'.
  5978. The flag is set if the currently compiled format contains a `%b'.")
  5979. (defvar org-prefix-category-length nil
  5980. "Used by `org-compile-prefix-format' to remember the category field width.")
  5981. (defvar org-prefix-category-max-length nil
  5982. "Used by `org-compile-prefix-format' to remember the category field width.")
  5983. (defun org-agenda-get-category-icon (category)
  5984. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5985. (dolist (entry org-agenda-category-icon-alist)
  5986. (when (org-string-match-p (car entry) category)
  5987. (if (listp (cadr entry))
  5988. (return (cadr entry))
  5989. (return (apply 'create-image (cdr entry)))))))
  5990. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5991. remove-re habitp)
  5992. "Format TXT to be inserted into the agenda buffer.
  5993. In particular, add the prefix and corresponding text properties.
  5994. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5995. LEVEL may be a string to replace the `%l' specifier.
  5996. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5997. category taken from local variable or file name. It will replace the `%c'
  5998. specifier in the format.
  5999. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6000. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6001. When DOTIME is a string, this string is searched for a time before TXT is.
  6002. TAGS can be the tags of the headline.
  6003. Any match of REMOVE-RE will be removed from TXT."
  6004. ;; We keep the org-prefix-* variable values along with a compiled
  6005. ;; formatter, so that multiple agendas existing at the same time do
  6006. ;; not step on each other toes.
  6007. ;;
  6008. ;; It was inconvenient to make these variables buffer local in
  6009. ;; Agenda buffers, because this function expects to be called with
  6010. ;; the buffer where item comes from being current, and not agenda
  6011. ;; buffer
  6012. (let* ((bindings (car org-prefix-format-compiled))
  6013. (formatter (cadr org-prefix-format-compiled)))
  6014. (loop for (var value) in bindings
  6015. do (set var value))
  6016. (save-match-data
  6017. ;; Diary entries sometimes have extra whitespace at the beginning
  6018. (setq txt (org-trim txt))
  6019. ;; Fix the tags part in txt
  6020. (setq txt (org-agenda-fix-displayed-tags
  6021. txt tags
  6022. org-agenda-show-inherited-tags
  6023. org-agenda-hide-tags-regexp))
  6024. (let* ((category (or category
  6025. (if buffer-file-name
  6026. (file-name-sans-extension
  6027. (file-name-nondirectory buffer-file-name))
  6028. "")))
  6029. (category-icon (org-agenda-get-category-icon category))
  6030. (category-icon (if category-icon
  6031. (propertize " " 'display category-icon)
  6032. ""))
  6033. (effort (and (not (string= txt ""))
  6034. (get-text-property 1 'effort txt)))
  6035. ;; time, tag, effort are needed for the eval of the prefix format
  6036. (tag (if tags (nth (1- (length tags)) tags) ""))
  6037. time
  6038. (ts (if dotime (concat
  6039. (if (stringp dotime) dotime "")
  6040. (and org-agenda-search-headline-for-time txt))))
  6041. (time-of-day (and dotime (org-get-time-of-day ts)))
  6042. stamp plain s0 s1 s2 rtn srp l
  6043. duration breadcrumbs)
  6044. (and (derived-mode-p 'org-mode) buffer-file-name
  6045. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6046. (when (and dotime time-of-day)
  6047. ;; Extract starting and ending time and move them to prefix
  6048. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6049. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6050. (setq s0 (match-string 0 ts)
  6051. srp (and stamp (match-end 3))
  6052. s1 (match-string (if plain 1 2) ts)
  6053. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6054. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6055. ;; them, we might want to remove them there to avoid duplication.
  6056. ;; The user can turn this off with a variable.
  6057. (if (and org-prefix-has-time
  6058. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6059. (string-match (concat (regexp-quote s0) " *") txt)
  6060. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6061. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6062. (= (match-beginning 0) 0)
  6063. t))
  6064. (setq txt (replace-match "" nil nil txt))))
  6065. ;; Normalize the time(s) to 24 hour
  6066. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6067. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6068. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6069. (let (org-time-clocksum-use-effort-durations)
  6070. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6071. (setq s2
  6072. (org-minutes-to-clocksum-string
  6073. (+ (org-hh:mm-string-to-minutes s1)
  6074. org-agenda-default-appointment-duration)))))
  6075. ;; Compute the duration
  6076. (when s2
  6077. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6078. (org-hh:mm-string-to-minutes s1)))))
  6079. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6080. txt)
  6081. ;; Tags are in the string
  6082. (if (or (eq org-agenda-remove-tags t)
  6083. (and org-agenda-remove-tags
  6084. org-prefix-has-tag))
  6085. (setq txt (replace-match "" t t txt))
  6086. (setq txt (replace-match
  6087. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6088. (match-string 2 txt))
  6089. t t txt))))
  6090. (when remove-re
  6091. (while (string-match remove-re txt)
  6092. (setq txt (replace-match "" t t txt))))
  6093. ;; Set org-heading property on `txt' to mark the start of the
  6094. ;; heading.
  6095. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6096. ;; Prepare the variables needed in the eval of the compiled format
  6097. (if org-prefix-has-breadcrumbs
  6098. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6099. (let ((s (org-display-outline-path nil nil "->" t)))
  6100. (if (eq "" s) "" (concat s "->"))))))
  6101. (setq time (cond (s2 (concat
  6102. (org-agenda-time-of-day-to-ampm-maybe s1)
  6103. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6104. (if org-agenda-timegrid-use-ampm " ")))
  6105. (s1 (concat
  6106. (org-agenda-time-of-day-to-ampm-maybe s1)
  6107. (if org-agenda-timegrid-use-ampm
  6108. "........ "
  6109. "......")))
  6110. (t ""))
  6111. extra (or (and (not habitp) extra) "")
  6112. category (if (symbolp category) (symbol-name category) category)
  6113. level (or level ""))
  6114. (if (string-match org-bracket-link-regexp category)
  6115. (progn
  6116. (setq l (if (match-end 3)
  6117. (- (match-end 3) (match-beginning 3))
  6118. (- (match-end 1) (match-beginning 1))))
  6119. (when (< l (or org-prefix-category-length 0))
  6120. (setq category (copy-sequence category))
  6121. (org-add-props category nil
  6122. 'extra-space (make-string
  6123. (- org-prefix-category-length l 1) ?\ ))))
  6124. (if (and org-prefix-category-max-length
  6125. (>= (length category) org-prefix-category-max-length))
  6126. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6127. ;; Evaluate the compiled format
  6128. (setq rtn (concat (eval formatter) txt))
  6129. ;; And finally add the text properties
  6130. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6131. (org-add-props rtn nil
  6132. 'org-category category
  6133. 'tags (mapcar 'org-downcase-keep-props tags)
  6134. 'org-highest-priority org-highest-priority
  6135. 'org-lowest-priority org-lowest-priority
  6136. 'time-of-day time-of-day
  6137. 'duration duration
  6138. 'breadcrumbs breadcrumbs
  6139. 'txt txt
  6140. 'level level
  6141. 'time time
  6142. 'extra extra
  6143. 'format org-prefix-format-compiled
  6144. 'dotime dotime)))))
  6145. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6146. "Remove tags string from TXT, and add a modified list of tags.
  6147. The modified list may contain inherited tags, and tags matched by
  6148. `org-agenda-hide-tags-regexp' will be removed."
  6149. (when (or add-inherited hide-re)
  6150. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6151. (setq txt (substring txt 0 (match-beginning 0))))
  6152. (setq tags
  6153. (delq nil
  6154. (mapcar (lambda (tg)
  6155. (if (or (and hide-re (string-match hide-re tg))
  6156. (and (not add-inherited)
  6157. (get-text-property 0 'inherited tg)))
  6158. nil
  6159. tg))
  6160. tags)))
  6161. (when tags
  6162. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6163. i)
  6164. (setq txt (concat txt " :"
  6165. (mapconcat
  6166. (lambda (x)
  6167. (setq i (get-text-property 0 'inherited x))
  6168. (if (and have-i (not i))
  6169. (progn
  6170. (setq have-i nil)
  6171. (concat ":" x))
  6172. x))
  6173. tags ":")
  6174. (if have-i "::" ":"))))))
  6175. txt)
  6176. (defun org-downcase-keep-props (s)
  6177. (let ((props (text-properties-at 0 s)))
  6178. (setq s (downcase s))
  6179. (add-text-properties 0 (length s) props s)
  6180. s))
  6181. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6182. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6183. "Add a time-grid for agenda items which need it.
  6184. LIST is the list of agenda items formatted by `org-agenda-list'.
  6185. NDAYS is the span of the current agenda view.
  6186. TODAYP is `t' when the current agenda view is on today."
  6187. (catch 'exit
  6188. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6189. ((and todayp (member 'today (car org-agenda-time-grid))))
  6190. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6191. ((member 'weekly (car org-agenda-time-grid)))
  6192. (t (throw 'exit list)))
  6193. (let* ((have (delq nil (mapcar
  6194. (lambda (x) (get-text-property 1 'time-of-day x))
  6195. list)))
  6196. (string (nth 1 org-agenda-time-grid))
  6197. (gridtimes (nth 2 org-agenda-time-grid))
  6198. (req (car org-agenda-time-grid))
  6199. (remove (member 'remove-match req))
  6200. new time)
  6201. (if (and (member 'require-timed req) (not have))
  6202. ;; don't show empty grid
  6203. (throw 'exit list))
  6204. (while (setq time (pop gridtimes))
  6205. (unless (and remove (member time have))
  6206. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6207. (push (org-agenda-format-item
  6208. nil string nil "" nil
  6209. (concat (substring time 0 -2) ":" (substring time -2)))
  6210. new)
  6211. (put-text-property
  6212. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6213. (when (and todayp org-agenda-show-current-time-in-grid)
  6214. (push (org-agenda-format-item
  6215. nil org-agenda-current-time-string nil "" nil
  6216. (format-time-string "%H:%M "))
  6217. new)
  6218. (put-text-property
  6219. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6220. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6221. (append new list)
  6222. (append list new)))))
  6223. (defun org-compile-prefix-format (key)
  6224. "Compile the prefix format into a Lisp form that can be evaluated.
  6225. The resulting form and associated variable bindings is returned
  6226. and stored in the variable `org-prefix-format-compiled'."
  6227. (setq org-prefix-has-time nil
  6228. org-prefix-has-tag nil
  6229. org-prefix-category-length nil
  6230. org-prefix-has-effort nil
  6231. org-prefix-has-breadcrumbs nil)
  6232. (let ((s (cond
  6233. ((stringp org-agenda-prefix-format)
  6234. org-agenda-prefix-format)
  6235. ((assq key org-agenda-prefix-format)
  6236. (cdr (assq key org-agenda-prefix-format)))
  6237. (t " %-12:c%?-12t% s")))
  6238. (start 0)
  6239. varform vars var e c f opt)
  6240. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6241. s start)
  6242. (setq var (or (cdr (assoc (match-string 4 s)
  6243. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6244. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6245. 'eval)
  6246. c (or (match-string 3 s) "")
  6247. opt (match-beginning 1)
  6248. start (1+ (match-beginning 0)))
  6249. (if (equal var 'time) (setq org-prefix-has-time t))
  6250. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6251. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6252. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6253. (setq f (concat "%" (match-string 2 s) "s"))
  6254. (when (equal var 'category)
  6255. (setq org-prefix-category-length
  6256. (floor (abs (string-to-number (match-string 2 s)))))
  6257. (setq org-prefix-category-max-length
  6258. (let ((x (match-string 2 s)))
  6259. (save-match-data
  6260. (if (string-match "\\.[0-9]+" x)
  6261. (string-to-number (substring (match-string 0 x) 1)))))))
  6262. (if (eq var 'eval)
  6263. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6264. (if opt
  6265. (setq varform
  6266. `(if (or (equal "" ,var) (equal nil ,var))
  6267. ""
  6268. (format ,f (concat ,var ,c))))
  6269. (setq varform
  6270. `(format ,f (if (or (equal ,var "")
  6271. (equal ,var nil)) ""
  6272. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6273. (setq s (replace-match "%s" t nil s))
  6274. (push varform vars))
  6275. (setq vars (nreverse vars))
  6276. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6277. (setq org-prefix-format-compiled
  6278. (list
  6279. `((org-prefix-has-time ,org-prefix-has-time)
  6280. (org-prefix-has-tag ,org-prefix-has-tag)
  6281. (org-prefix-category-length ,org-prefix-category-length)
  6282. (org-prefix-has-effort ,org-prefix-has-effort)
  6283. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6284. `(format ,s ,@vars))))))
  6285. (defun org-set-sorting-strategy (key)
  6286. (if (symbolp (car org-agenda-sorting-strategy))
  6287. ;; the old format
  6288. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6289. (setq org-agenda-sorting-strategy-selected
  6290. (or (cdr (assq key org-agenda-sorting-strategy))
  6291. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6292. '(time-up category-keep priority-down)))))
  6293. (defun org-get-time-of-day (s &optional string mod24)
  6294. "Check string S for a time of day.
  6295. If found, return it as a military time number between 0 and 2400.
  6296. If not found, return nil.
  6297. The optional STRING argument forces conversion into a 5 character wide string
  6298. HH:MM."
  6299. (save-match-data
  6300. (when
  6301. (and
  6302. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6303. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6304. (not (eq (get-text-property 1 'face s) 'org-link)))
  6305. (let* ((h (string-to-number (match-string 1 s)))
  6306. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6307. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6308. (am-p (equal ampm "am"))
  6309. (h1 (cond ((not ampm) h)
  6310. ((= h 12) (if am-p 0 12))
  6311. (t (+ h (if am-p 0 12)))))
  6312. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6313. (mod h1 24) h1))
  6314. (t0 (+ (* 100 h2) m))
  6315. (t1 (concat (if (>= h1 24) "+" " ")
  6316. (if (and org-agenda-time-leading-zero
  6317. (< t0 1000)) "0" "")
  6318. (if (< t0 100) "0" "")
  6319. (if (< t0 10) "0" "")
  6320. (int-to-string t0))))
  6321. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6322. (defvar org-agenda-before-sorting-filter-function nil
  6323. "Function to be applied to agenda items prior to sorting.
  6324. Prior to sorting also means just before they are inserted into the agenda.
  6325. To aid sorting, you may revisit the original entries and add more text
  6326. properties which will later be used by the sorting functions.
  6327. The function should take a string argument, an agenda line.
  6328. It has access to the text properties in that line, which contain among
  6329. other things, the property `org-hd-marker' that points to the entry
  6330. where the line comes from. Note that not all lines going into the agenda
  6331. have this property, only most.
  6332. The function should return the modified string. It is probably best
  6333. to ONLY change text properties.
  6334. You can also use this function as a filter, by returning nil for lines
  6335. you don't want to have in the agenda at all. For this application, you
  6336. could bind the variable in the options section of a custom command.")
  6337. (defun org-agenda-finalize-entries (list &optional type)
  6338. "Sort, limit and concatenate the LIST of agenda items.
  6339. The optional argument TYPE tells the agenda type."
  6340. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6341. (cdr (assoc type org-agenda-max-effort)))
  6342. (t org-agenda-max-effort)))
  6343. (max-todo (cond ((listp org-agenda-max-todos)
  6344. (cdr (assoc type org-agenda-max-todos)))
  6345. (t org-agenda-max-todos)))
  6346. (max-tags (cond ((listp org-agenda-max-tags)
  6347. (cdr (assoc type org-agenda-max-tags)))
  6348. (t org-agenda-max-tags)))
  6349. (max-entries (cond ((listp org-agenda-max-entries)
  6350. (cdr (assoc type org-agenda-max-entries)))
  6351. (t org-agenda-max-entries))))
  6352. (when org-agenda-before-sorting-filter-function
  6353. (setq list
  6354. (delq nil
  6355. (mapcar
  6356. org-agenda-before-sorting-filter-function list))))
  6357. (setq list (mapcar 'org-agenda-highlight-todo list)
  6358. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6359. (when max-effort
  6360. (setq list (org-agenda-limit-entries
  6361. list 'effort-minutes max-effort
  6362. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6363. 32767 -1))))))
  6364. (when max-todo
  6365. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6366. (when max-tags
  6367. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6368. (when max-entries
  6369. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6370. (mapconcat 'identity list "\n")))
  6371. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6372. "Limit the number of agenda entries."
  6373. (let ((include (and limit (< limit 0))))
  6374. (if limit
  6375. (let ((fun (or fn (lambda (p) (if p 1))))
  6376. (lim 0))
  6377. (delq nil
  6378. (mapcar
  6379. (lambda (e)
  6380. (let ((pval (funcall
  6381. fun (get-text-property (1- (length e))
  6382. prop e))))
  6383. (if pval (setq lim (+ lim pval)))
  6384. (cond ((and pval (<= lim (abs limit))) e)
  6385. ((and include (not pval)) e))))
  6386. list)))
  6387. list)))
  6388. (defun org-agenda-limit-interactively (remove)
  6389. "In agenda, interactively limit entries to various maximums."
  6390. (interactive "P")
  6391. (if remove
  6392. (progn (setq org-agenda-max-entries nil
  6393. org-agenda-max-todos nil
  6394. org-agenda-max-tags nil
  6395. org-agenda-max-effort nil)
  6396. (org-agenda-redo))
  6397. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6398. (msg (cond ((= max ?E) "How many minutes? ")
  6399. ((= max ?e) "How many entries? ")
  6400. ((= max ?t) "How many TODO entries? ")
  6401. ((= max ?T) "How many tagged entries? ")
  6402. (t (user-error "Wrong input"))))
  6403. (num (string-to-number (read-from-minibuffer msg))))
  6404. (cond ((equal max ?e)
  6405. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6406. ((equal max ?t)
  6407. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6408. ((equal max ?T)
  6409. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6410. ((equal max ?E)
  6411. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6412. (org-agenda-fit-window-to-buffer))
  6413. (defun org-agenda-highlight-todo (x)
  6414. (let ((org-done-keywords org-done-keywords-for-agenda)
  6415. (case-fold-search nil)
  6416. re)
  6417. (if (eq x 'line)
  6418. (save-excursion
  6419. (beginning-of-line 1)
  6420. (setq re (org-get-at-bol 'org-todo-regexp))
  6421. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6422. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6423. (add-text-properties (match-beginning 0) (match-end 1)
  6424. (list 'face (org-get-todo-face 1)))
  6425. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6426. (delete-region (match-beginning 1) (1- (match-end 0)))
  6427. (goto-char (match-beginning 1))
  6428. (insert (format org-agenda-todo-keyword-format s)))))
  6429. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6430. (setq re (get-text-property 0 'org-todo-regexp x))
  6431. (when (and re
  6432. ;; Test `pl' because if there's no heading content,
  6433. ;; there's no point matching to highlight. Note
  6434. ;; that if we didn't test `pl' first, and there
  6435. ;; happened to be no keyword from `org-todo-regexp'
  6436. ;; on this heading line, then the `equal' comparison
  6437. ;; afterwards would spuriously succeed in the case
  6438. ;; where `pl' is nil -- causing an args-out-of-range
  6439. ;; error when we try to add text properties to text
  6440. ;; that isn't there.
  6441. pl
  6442. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6443. x pl) pl))
  6444. (add-text-properties
  6445. (or (match-end 1) (match-end 0)) (match-end 0)
  6446. (list 'face (org-get-todo-face (match-string 2 x)))
  6447. x)
  6448. (when (match-end 1)
  6449. (setq x (concat (substring x 0 (match-end 1))
  6450. (format org-agenda-todo-keyword-format
  6451. (match-string 2 x))
  6452. (org-add-props " " (text-properties-at 0 x))
  6453. (substring x (match-end 3)))))))
  6454. x)))
  6455. (defsubst org-cmp-values (a b property)
  6456. "Compare the numeric value of text PROPERTY for string A and B."
  6457. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6458. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6459. (cond ((> pa pb) +1)
  6460. ((< pa pb) -1))))
  6461. (defsubst org-cmp-effort (a b)
  6462. "Compare the effort values of string A and B."
  6463. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6464. (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
  6465. (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
  6466. (cond ((> ea eb) +1)
  6467. ((< ea eb) -1))))
  6468. (defsubst org-cmp-category (a b)
  6469. "Compare the string values of categories of strings A and B."
  6470. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6471. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6472. (cond ((string-lessp ca cb) -1)
  6473. ((string-lessp cb ca) +1))))
  6474. (defsubst org-cmp-todo-state (a b)
  6475. "Compare the todo states of strings A and B."
  6476. (let* ((ma (or (get-text-property 1 'org-marker a)
  6477. (get-text-property 1 'org-hd-marker a)))
  6478. (mb (or (get-text-property 1 'org-marker b)
  6479. (get-text-property 1 'org-hd-marker b)))
  6480. (fa (and ma (marker-buffer ma)))
  6481. (fb (and mb (marker-buffer mb)))
  6482. (todo-kwds
  6483. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6484. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6485. (ta (or (get-text-property 1 'todo-state a) ""))
  6486. (tb (or (get-text-property 1 'todo-state b) ""))
  6487. (la (- (length (member ta todo-kwds))))
  6488. (lb (- (length (member tb todo-kwds))))
  6489. (donepa (member ta org-done-keywords-for-agenda))
  6490. (donepb (member tb org-done-keywords-for-agenda)))
  6491. (cond ((and donepa (not donepb)) -1)
  6492. ((and (not donepa) donepb) +1)
  6493. ((< la lb) -1)
  6494. ((< lb la) +1))))
  6495. (defsubst org-cmp-alpha (a b)
  6496. "Compare the headlines, alphabetically."
  6497. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6498. (plb (text-property-any 0 (length b) 'org-heading t b))
  6499. (ta (and pla (substring a pla)))
  6500. (tb (and plb (substring b plb))))
  6501. (when pla
  6502. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6503. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6504. (setq ta (substring ta (match-end 0))))
  6505. (setq ta (downcase ta)))
  6506. (when plb
  6507. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6508. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6509. (setq tb (substring tb (match-end 0))))
  6510. (setq tb (downcase tb)))
  6511. (cond ((not ta) +1)
  6512. ((not tb) -1)
  6513. ((string-lessp ta tb) -1)
  6514. ((string-lessp tb ta) +1))))
  6515. (defsubst org-cmp-tag (a b)
  6516. "Compare the string values of the first tags of A and B."
  6517. (let ((ta (car (last (get-text-property 1 'tags a))))
  6518. (tb (car (last (get-text-property 1 'tags b)))))
  6519. (cond ((not ta) +1)
  6520. ((not tb) -1)
  6521. ((string-lessp ta tb) -1)
  6522. ((string-lessp tb ta) +1))))
  6523. (defsubst org-cmp-time (a b)
  6524. "Compare the time-of-day values of strings A and B."
  6525. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6526. (ta (or (get-text-property 1 'time-of-day a) def))
  6527. (tb (or (get-text-property 1 'time-of-day b) def)))
  6528. (cond ((< ta tb) -1)
  6529. ((< tb ta) +1))))
  6530. (defsubst org-cmp-ts (a b type)
  6531. "Compare the timestamps values of entries A and B.
  6532. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6533. \"timestamp_ia\", compare within each of these type. When TYPE
  6534. is the empty string, compare all timestamps without respect of
  6535. their type."
  6536. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6537. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6538. (get-text-property 1 'ts-date a))
  6539. def))
  6540. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6541. (get-text-property 1 'ts-date b))
  6542. def)))
  6543. (cond ((< ta tb) -1)
  6544. ((< tb ta) +1))))
  6545. (defsubst org-cmp-habit-p (a b)
  6546. "Compare the todo states of strings A and B."
  6547. (let ((ha (get-text-property 1 'org-habit-p a))
  6548. (hb (get-text-property 1 'org-habit-p b)))
  6549. (cond ((and ha (not hb)) -1)
  6550. ((and (not ha) hb) +1))))
  6551. (defun org-entries-lessp (a b)
  6552. "Predicate for sorting agenda entries."
  6553. ;; The following variables will be used when the form is evaluated.
  6554. ;; So even though the compiler complains, keep them.
  6555. (let* ((ss org-agenda-sorting-strategy-selected)
  6556. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6557. (org-cmp-ts a b "")))
  6558. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6559. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6560. (org-cmp-ts a b "scheduled")))
  6561. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6562. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6563. (org-cmp-ts a b "deadline")))
  6564. (deadline-down (if deadline-up (- deadline-up) nil))
  6565. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6566. (org-cmp-ts a b "timestamp_ia")))
  6567. (tsia-down (if tsia-up (- tsia-up) nil))
  6568. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6569. (org-cmp-ts a b "timestamp")))
  6570. (ts-down (if ts-up (- ts-up) nil))
  6571. (time-up (and (org-em 'time-up 'time-down ss)
  6572. (org-cmp-time a b)))
  6573. (time-down (if time-up (- time-up) nil))
  6574. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6575. (org-cmp-values a b 'org-stats)))
  6576. (stats-down (if stats-up (- stats-up) nil))
  6577. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6578. (org-cmp-values a b 'priority)))
  6579. (priority-down (if priority-up (- priority-up) nil))
  6580. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6581. (org-cmp-effort a b)))
  6582. (effort-down (if effort-up (- effort-up) nil))
  6583. (category-up (and (or (org-em 'category-up 'category-down ss)
  6584. (memq 'category-keep ss))
  6585. (org-cmp-category a b)))
  6586. (category-down (if category-up (- category-up) nil))
  6587. (category-keep (if category-up +1 nil))
  6588. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6589. (org-cmp-tag a b)))
  6590. (tag-down (if tag-up (- tag-up) nil))
  6591. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6592. (org-cmp-todo-state a b)))
  6593. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6594. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6595. (org-cmp-habit-p a b)))
  6596. (habit-down (if habit-up (- habit-up) nil))
  6597. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6598. (org-cmp-alpha a b)))
  6599. (alpha-down (if alpha-up (- alpha-up) nil))
  6600. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6601. user-defined-up user-defined-down)
  6602. (if (and need-user-cmp org-agenda-cmp-user-defined
  6603. (functionp org-agenda-cmp-user-defined))
  6604. (setq user-defined-up
  6605. (funcall org-agenda-cmp-user-defined a b)
  6606. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6607. (cdr (assoc
  6608. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6609. '((-1 . t) (1 . nil) (nil . nil))))))
  6610. ;;; Agenda restriction lock
  6611. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6612. "Overlay to mark the headline to which agenda commands are restricted.")
  6613. (overlay-put org-agenda-restriction-lock-overlay
  6614. 'face 'org-agenda-restriction-lock)
  6615. (overlay-put org-agenda-restriction-lock-overlay
  6616. 'help-echo "Agendas are currently limited to this subtree.")
  6617. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6618. ;;;###autoload
  6619. (defun org-agenda-set-restriction-lock (&optional type)
  6620. "Set restriction lock for agenda, to current subtree or file.
  6621. Restriction will be the file if TYPE is `file', or if type is the
  6622. universal prefix '(4), or if the cursor is before the first headline
  6623. in the file. Otherwise, restriction will be to the current subtree."
  6624. (interactive "P")
  6625. (org-agenda-remove-restriction-lock 'noupdate)
  6626. (and (equal type '(4)) (setq type 'file))
  6627. (setq type (cond
  6628. (type type)
  6629. ((org-at-heading-p) 'subtree)
  6630. ((condition-case nil (org-back-to-heading t) (error nil))
  6631. 'subtree)
  6632. (t 'file)))
  6633. (if (eq type 'subtree)
  6634. (progn
  6635. (setq org-agenda-restrict (current-buffer))
  6636. (setq org-agenda-overriding-restriction 'subtree)
  6637. (put 'org-agenda-files 'org-restrict
  6638. (list (buffer-file-name (buffer-base-buffer))))
  6639. (org-back-to-heading t)
  6640. (move-overlay org-agenda-restriction-lock-overlay
  6641. (point)
  6642. (if org-agenda-restriction-lock-highlight-subtree
  6643. (save-excursion (org-end-of-subtree t t) (point))
  6644. (point-at-eol)))
  6645. (move-marker org-agenda-restrict-begin (point))
  6646. (move-marker org-agenda-restrict-end
  6647. (save-excursion (org-end-of-subtree t t)))
  6648. (message "Locking agenda restriction to subtree"))
  6649. (put 'org-agenda-files 'org-restrict
  6650. (list (buffer-file-name (buffer-base-buffer))))
  6651. (setq org-agenda-restrict nil)
  6652. (setq org-agenda-overriding-restriction 'file)
  6653. (move-marker org-agenda-restrict-begin nil)
  6654. (move-marker org-agenda-restrict-end nil)
  6655. (message "Locking agenda restriction to file"))
  6656. (setq current-prefix-arg nil)
  6657. (org-agenda-maybe-redo))
  6658. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6659. "Remove the agenda restriction lock."
  6660. (interactive "P")
  6661. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6662. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6663. (setq org-agenda-overriding-restriction nil)
  6664. (setq org-agenda-restrict nil)
  6665. (put 'org-agenda-files 'org-restrict nil)
  6666. (move-marker org-agenda-restrict-begin nil)
  6667. (move-marker org-agenda-restrict-end nil)
  6668. (setq current-prefix-arg nil)
  6669. (message "Agenda restriction lock removed")
  6670. (or noupdate (org-agenda-maybe-redo)))
  6671. (defun org-agenda-maybe-redo ()
  6672. "If there is any window showing the agenda view, update it."
  6673. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6674. (w0 (selected-window)))
  6675. (when w
  6676. (select-window w)
  6677. (org-agenda-redo)
  6678. (select-window w0)
  6679. (if org-agenda-overriding-restriction
  6680. (message "Agenda view shifted to new %s restriction"
  6681. org-agenda-overriding-restriction)
  6682. (message "Agenda restriction lock removed")))))
  6683. ;;; Agenda commands
  6684. (defun org-agenda-check-type (error &rest types)
  6685. "Check if agenda buffer is of allowed type.
  6686. If ERROR is non-nil, throw an error, otherwise just return nil.
  6687. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6688. (if (not org-agenda-type)
  6689. (error "No Org agenda currently displayed")
  6690. (if (memq org-agenda-type types)
  6691. t
  6692. (if error
  6693. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6694. nil))))
  6695. (defun org-agenda-Quit ()
  6696. "Exit the agenda, killing the agenda buffer.
  6697. Like `org-agenda-quit', but kill the buffer even when
  6698. `org-agenda-sticky' is non-nil."
  6699. (interactive)
  6700. (org-agenda--quit))
  6701. (defun org-agenda-quit ()
  6702. "Exit the agenda.
  6703. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6704. instead of killing it.
  6705. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6706. the pre-agenda window configuration.
  6707. When column view is active, exit column view instead of the
  6708. agenda."
  6709. (interactive)
  6710. (org-agenda--quit org-agenda-sticky))
  6711. (defun org-agenda--quit (&optional bury)
  6712. (if org-agenda-columns-active
  6713. (org-columns-quit)
  6714. (let ((buf (current-buffer))
  6715. (wconf org-agenda-pre-window-conf)
  6716. (org-agenda-last-indirect-window
  6717. (and (eq org-indirect-buffer-display 'other-window)
  6718. org-agenda-last-indirect-buffer
  6719. (get-buffer-window org-agenda-last-indirect-buffer))))
  6720. (cond
  6721. ((eq org-agenda-window-setup 'other-frame)
  6722. (delete-frame))
  6723. ((and org-agenda-restore-windows-after-quit
  6724. wconf)
  6725. ;; Maybe restore the pre-agenda window configuration. Reset
  6726. ;; `org-agenda-pre-window-conf' before running
  6727. ;; `set-window-configuration', which loses the current buffer.
  6728. (setq org-agenda-pre-window-conf nil)
  6729. (set-window-configuration wconf))
  6730. (t
  6731. (when org-agenda-last-indirect-window
  6732. (delete-window org-agenda-last-indirect-window))
  6733. (and (not (eq org-agenda-window-setup 'current-window))
  6734. (not (one-window-p))
  6735. (delete-window))))
  6736. (if bury
  6737. (bury-buffer buf)
  6738. (kill-buffer buf)
  6739. (setq org-agenda-archives-mode nil
  6740. org-agenda-buffer nil)))))
  6741. (defun org-agenda-exit ()
  6742. "Exit the agenda, killing Org buffers loaded by the agenda.
  6743. Like `org-agenda-Quit', but kill any buffers that were created by
  6744. the agenda. Org buffers visited directly by the user will not be
  6745. touched. Also, exit the agenda even if it is in column view."
  6746. (interactive)
  6747. (when org-agenda-columns-active
  6748. (org-columns-quit))
  6749. (org-release-buffers org-agenda-new-buffers)
  6750. (setq org-agenda-new-buffers nil)
  6751. (org-agenda-Quit))
  6752. (defun org-agenda-kill-all-agenda-buffers ()
  6753. "Kill all buffers in `org-agenda-mode'.
  6754. This is used when toggling sticky agendas.
  6755. You can also explicitly invoke it with `C-c a C-k'."
  6756. (interactive)
  6757. (let (blist)
  6758. (dolist (buf (buffer-list))
  6759. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6760. (push buf blist)))
  6761. (mapc 'kill-buffer blist)))
  6762. (defun org-agenda-execute (arg)
  6763. "Execute another agenda command, keeping same window.
  6764. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6765. in the agenda."
  6766. (interactive "P")
  6767. (let ((org-agenda-window-setup 'current-window))
  6768. (org-agenda arg)))
  6769. (defun org-agenda-redo (&optional all)
  6770. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6771. (interactive "P")
  6772. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6773. (cpa (unless (eq all t) current-prefix-arg))
  6774. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6775. (org-agenda-sticky nil)
  6776. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6777. org-agenda-buffer-name))
  6778. (org-agenda-keep-modes t)
  6779. (tag-filter org-agenda-tag-filter)
  6780. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6781. (top-hl-filter org-agenda-top-headline-filter)
  6782. (cat-filter org-agenda-category-filter)
  6783. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6784. (re-filter org-agenda-regexp-filter)
  6785. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6786. (effort-filter org-agenda-effort-filter)
  6787. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6788. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6789. (cols org-agenda-columns-active)
  6790. (line (org-current-line))
  6791. (window-line (- line (org-current-line (window-start))))
  6792. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6793. (redo-cmd (get-text-property p 'org-redo-cmd))
  6794. (last-args (get-text-property p 'org-last-args))
  6795. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6796. (org-agenda-overriding-cmd-arguments
  6797. (unless (eq all t)
  6798. (cond ((listp last-args)
  6799. (cons (or cpa (car last-args)) (cdr last-args)))
  6800. ((stringp last-args)
  6801. last-args))))
  6802. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6803. (put 'org-agenda-tag-filter :preset-filter nil)
  6804. (put 'org-agenda-category-filter :preset-filter nil)
  6805. (put 'org-agenda-regexp-filter :preset-filter nil)
  6806. (put 'org-agenda-effort-filter :preset-filter nil)
  6807. (and cols (org-columns-quit))
  6808. (message "Rebuilding agenda buffer...")
  6809. (if series-redo-cmd
  6810. (eval series-redo-cmd)
  6811. (org-let lprops redo-cmd))
  6812. (setq org-agenda-undo-list nil
  6813. org-agenda-pending-undo-list nil
  6814. org-agenda-tag-filter tag-filter
  6815. org-agenda-category-filter cat-filter
  6816. org-agenda-regexp-filter re-filter
  6817. org-agenda-effort-filter effort-filter
  6818. org-agenda-top-headline-filter top-hl-filter)
  6819. (message "Rebuilding agenda buffer...done")
  6820. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6821. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6822. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6823. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6824. (let ((tag (or tag-filter tag-preset))
  6825. (cat (or cat-filter cat-preset))
  6826. (effort (or effort-filter effort-preset))
  6827. (re (or re-filter re-preset)))
  6828. (when tag (org-agenda-filter-apply tag 'tag))
  6829. (when cat (org-agenda-filter-apply cat 'category))
  6830. (when effort (org-agenda-filter-apply effort 'effort))
  6831. (when re (org-agenda-filter-apply re 'regexp)))
  6832. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6833. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6834. (org-goto-line line)
  6835. (recenter window-line)))
  6836. (defvar org-global-tags-completion-table nil)
  6837. (defvar org-agenda-filter-form nil)
  6838. (defvar org-agenda-filtered-by-category nil)
  6839. (defun org-agenda-filter-by-category (strip)
  6840. "Keep only those lines in the agenda buffer that have a specific category.
  6841. The category is that of the current line."
  6842. (interactive "P")
  6843. (if (and org-agenda-filtered-by-category
  6844. org-agenda-category-filter)
  6845. (org-agenda-filter-show-all-cat)
  6846. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6847. (cond
  6848. ((and cat strip)
  6849. (org-agenda-filter-apply
  6850. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6851. ((and cat)
  6852. (org-agenda-filter-apply
  6853. (setq org-agenda-category-filter
  6854. (list (concat "+" cat))) 'category))
  6855. (t (error "No category at point"))))))
  6856. (defun org-find-top-headline (&optional pos)
  6857. "Find the topmost parent headline and return it."
  6858. (save-excursion
  6859. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6860. (if pos (goto-char pos))
  6861. ;; Skip up to the topmost parent
  6862. (while (ignore-errors (outline-up-heading 1) t))
  6863. (ignore-errors
  6864. (nth 4 (org-heading-components))))))
  6865. (defvar org-agenda-filtered-by-top-headline nil)
  6866. (defun org-agenda-filter-by-top-headline (strip)
  6867. "Keep only those lines that are descendants from the same top headline.
  6868. The top headline is that of the current line."
  6869. (interactive "P")
  6870. (if org-agenda-filtered-by-top-headline
  6871. (progn
  6872. (setq org-agenda-filtered-by-top-headline nil
  6873. org-agenda-top-headline-filter nil)
  6874. (org-agenda-filter-show-all-top-filter))
  6875. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6876. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6877. (error "No top-level headline at point")))))
  6878. (defvar org-agenda-regexp-filter nil)
  6879. (defun org-agenda-filter-by-regexp (strip)
  6880. "Filter agenda entries by a regular expression.
  6881. Regexp filters are cumulative.
  6882. With no prefix argument, keep entries matching the regexp.
  6883. With one prefix argument, filter out entries matching the regexp.
  6884. With two prefix arguments, remove the regexp filters."
  6885. (interactive "P")
  6886. (if (not (equal strip '(16)))
  6887. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6888. (read-from-minibuffer
  6889. (if (equal strip '(4))
  6890. "Filter out entries matching regexp: "
  6891. "Narrow to entries matching regexp: ")))))
  6892. (push flt org-agenda-regexp-filter)
  6893. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6894. (org-agenda-filter-show-all-re)
  6895. (message "Regexp filter removed")))
  6896. (defvar org-agenda-effort-filter nil)
  6897. (defun org-agenda-filter-by-effort (strip)
  6898. "Filter agenda entries by effort.
  6899. With no prefix argument, keep entries matching the effort condition.
  6900. With one prefix argument, filter out entries matching the condition.
  6901. With two prefix arguments, remove the effort filters."
  6902. (interactive "P")
  6903. (cond ((member strip '(nil 4))
  6904. (let ((efforts (org-split-string
  6905. (or (cdr (assoc (concat org-effort-property "_ALL")
  6906. org-global-properties))
  6907. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6908. "")))
  6909. (eff -1)
  6910. effort-prompt op)
  6911. (while (not (member op '(?< ?> ?=)))
  6912. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6913. (loop for i from 0 to 9 do
  6914. (setq effort-prompt
  6915. (concat
  6916. effort-prompt " ["
  6917. (if (= i 9) "0" (int-to-string (1+ i)))
  6918. "]" (nth i efforts))))
  6919. (message "Effort %s%s" (char-to-string op) effort-prompt)
  6920. (while (or (< eff 0) (> eff 9))
  6921. (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
  6922. (setq org-agenda-effort-filter
  6923. (list (concat (if strip "-" "+")
  6924. (char-to-string op) (nth (1- eff) efforts))))
  6925. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6926. (t (org-agenda-filter-show-all-effort)
  6927. (message "Effort filter removed"))))
  6928. (defun org-agenda-filter-remove-all ()
  6929. "Remove all filters from the current agenda buffer."
  6930. (interactive)
  6931. (when org-agenda-tag-filter
  6932. (org-agenda-filter-show-all-tag))
  6933. (when org-agenda-category-filter
  6934. (org-agenda-filter-show-all-cat))
  6935. (when org-agenda-regexp-filter
  6936. (org-agenda-filter-show-all-re))
  6937. (when org-agenda-top-headline-filter
  6938. (org-agenda-filter-show-all-top-filter))
  6939. (when org-agenda-effort-filter
  6940. (org-agenda-filter-show-all-effort))
  6941. (org-agenda-finalize))
  6942. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6943. "Keep only those lines in the agenda buffer that have a specific tag.
  6944. The tag is selected with its fast selection letter, as configured.
  6945. With prefix argument STRIP, remove all lines that do have the tag.
  6946. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6947. used to narrow the search - the interactive user can also press `-' or `+'
  6948. to switch to narrowing."
  6949. (interactive "P")
  6950. (let* ((alist org-tag-alist-for-agenda)
  6951. (tag-chars (mapconcat
  6952. (lambda (x) (if (and (not (symbolp (car x)))
  6953. (cdr x))
  6954. (char-to-string (cdr x))
  6955. ""))
  6956. alist ""))
  6957. (inhibit-read-only t)
  6958. (current org-agenda-tag-filter)
  6959. a n tag)
  6960. (unless char
  6961. (message
  6962. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow"
  6963. (if narrow "Narrow" "Filter") tag-chars
  6964. (if org-agenda-auto-exclude-function "[RET], " ""))
  6965. (setq char (read-char-exclusive)))
  6966. (when (member char '(?+ ?-))
  6967. ;; Narrowing down
  6968. (cond ((equal char ?-) (setq strip t narrow t))
  6969. ((equal char ?+) (setq strip nil narrow t)))
  6970. (message
  6971. "Narrow by tag [%s ], [TAB], [/]:off" tag-chars)
  6972. (setq char (read-char-exclusive)))
  6973. (when (equal char ?\t)
  6974. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6975. (org-set-local 'org-global-tags-completion-table
  6976. (org-global-tags-completion-table)))
  6977. (let ((completion-ignore-case t))
  6978. (setq tag (org-icompleting-read
  6979. "Tag: " org-global-tags-completion-table))))
  6980. (cond
  6981. ((equal char ?\r)
  6982. (org-agenda-filter-show-all-tag)
  6983. (when org-agenda-auto-exclude-function
  6984. (setq org-agenda-tag-filter nil)
  6985. (dolist (tag (org-agenda-get-represented-tags))
  6986. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6987. (if modifier
  6988. (push modifier org-agenda-tag-filter))))
  6989. (if (not (null org-agenda-tag-filter))
  6990. (org-agenda-filter-apply org-agenda-tag-filter 'tag))))
  6991. ((equal char ?/)
  6992. (org-agenda-filter-show-all-tag)
  6993. (when (get 'org-agenda-tag-filter :preset-filter)
  6994. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6995. ((equal char ?. )
  6996. (setq org-agenda-tag-filter
  6997. (mapcar (lambda(tag) (concat "+" tag))
  6998. (org-get-at-bol 'tags)))
  6999. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  7000. ((or (equal char ?\ )
  7001. (setq a (rassoc char alist))
  7002. (and tag (setq a (cons tag nil))))
  7003. (org-agenda-filter-show-all-tag)
  7004. (setq tag (car a))
  7005. (setq org-agenda-tag-filter
  7006. (cons (concat (if strip "-" "+") tag)
  7007. (if narrow current nil)))
  7008. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  7009. (t (error "Invalid tag selection character %c" char)))))
  7010. (defun org-agenda-get-represented-tags ()
  7011. "Get a list of all tags currently represented in the agenda."
  7012. (let (p tags)
  7013. (save-excursion
  7014. (goto-char (point-min))
  7015. (while (setq p (next-single-property-change (point) 'tags))
  7016. (goto-char p)
  7017. (mapc (lambda (x) (add-to-list 'tags x))
  7018. (get-text-property (point) 'tags))))
  7019. tags))
  7020. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  7021. "Refine the current filter. See `org-agenda-filter-by-tag'."
  7022. (interactive "P")
  7023. (org-agenda-filter-by-tag strip char 'refine))
  7024. (defun org-agenda-filter-make-matcher (filter type)
  7025. "Create the form that tests a line for agenda filter."
  7026. (let (f f1)
  7027. (cond
  7028. ;; Tag filter
  7029. ((eq type 'tag)
  7030. (setq filter
  7031. (delete-dups
  7032. (append (get 'org-agenda-tag-filter :preset-filter)
  7033. filter)))
  7034. (dolist (x filter)
  7035. (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
  7036. (ffunc
  7037. (lambda (nf0 nf01 fltr notgroup op)
  7038. (dolist (x fltr)
  7039. (if (member x '("-" "+"))
  7040. (setq nf01 (if (equal x "-") 'tags '(not tags)))
  7041. (setq nf01 (list 'member (downcase (substring x 1))
  7042. 'tags))
  7043. (when (equal (string-to-char x) ?-)
  7044. (setq nf01 (list 'not nf01))
  7045. (when (not notgroup) (setq op 'and))))
  7046. (push nf01 nf0))
  7047. (if notgroup
  7048. (push (cons 'and nf0) f)
  7049. (push (cons (or op 'or) nf0) f)))))
  7050. (cond ((equal filter '("+"))
  7051. (setq f (list (list 'not 'tags))))
  7052. ((equal nfilter filter)
  7053. (funcall ffunc f1 f filter t nil))
  7054. (t (funcall ffunc nf1 nf nfilter nil nil))))))
  7055. ;; Category filter
  7056. ((eq type 'category)
  7057. (setq filter
  7058. (delete-dups
  7059. (append (get 'org-agenda-category-filter :preset-filter)
  7060. filter)))
  7061. (dolist (x filter)
  7062. (if (equal "-" (substring x 0 1))
  7063. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7064. (setq f1 (list 'equal (substring x 1) 'cat)))
  7065. (push f1 f)))
  7066. ;; Regexp filter
  7067. ((eq type 'regexp)
  7068. (setq filter
  7069. (delete-dups
  7070. (append (get 'org-agenda-regexp-filter :preset-filter)
  7071. filter)))
  7072. (dolist (x filter)
  7073. (if (equal "-" (substring x 0 1))
  7074. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7075. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7076. (push f1 f)))
  7077. ;; Effort filter
  7078. ((eq type 'effort)
  7079. (setq filter
  7080. (delete-dups
  7081. (append (get 'org-agenda-effort-filter :preset-filter)
  7082. filter)))
  7083. (dolist (x filter)
  7084. (push (org-agenda-filter-effort-form x) f))))
  7085. (cons 'and (nreverse f))))
  7086. (defun org-agenda-filter-effort-form (e)
  7087. "Return the form to compare the effort of the current line with what E says.
  7088. E looks like \"+<2:25\"."
  7089. (let (op)
  7090. (setq e (substring e 1))
  7091. (setq op (string-to-char e) e (substring e 1))
  7092. (setq op (cond ((equal op ?<) '<=)
  7093. ((equal op ?>) '>=)
  7094. ((equal op ??) op)
  7095. (t '=)))
  7096. (list 'org-agenda-compare-effort (list 'quote op)
  7097. (org-duration-string-to-minutes e))))
  7098. (defun org-agenda-compare-effort (op value)
  7099. "Compare the effort of the current line with VALUE, using OP.
  7100. If the line does not have an effort defined, return nil."
  7101. (let ((eff (org-get-at-eol 'effort-minutes 1)))
  7102. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
  7103. value)))
  7104. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7105. "Expand group tags in FILTER for the agenda.
  7106. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7107. (if org-group-tags
  7108. (let ((case-fold-search t) rtn)
  7109. (mapc
  7110. (lambda (f)
  7111. (let (f0 dir)
  7112. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7113. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7114. (setq dir (if no-operator "" "+") f0 f))
  7115. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7116. (org-tags-expand f0 t t))
  7117. rtn))))
  7118. filter)
  7119. (reverse rtn))
  7120. filter))
  7121. (defun org-agenda-filter-apply (filter type)
  7122. "Set FILTER as the new agenda filter and apply it."
  7123. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7124. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7125. (let (tags cat txt)
  7126. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type))
  7127. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7128. ;; category is used as the filter:
  7129. (setq org-agenda-filtered-by-category
  7130. (and (eq type 'category)
  7131. (not (equal (substring (car filter) 0 1) "-"))))
  7132. (org-agenda-set-mode-name)
  7133. (save-excursion
  7134. (goto-char (point-min))
  7135. (while (not (eobp))
  7136. (if (org-get-at-bol 'org-marker)
  7137. (progn
  7138. (setq tags ; used in eval
  7139. (apply 'append
  7140. (mapcar (lambda (f)
  7141. (org-agenda-filter-expand-tags (list f) t))
  7142. (org-get-at-bol 'tags)))
  7143. cat (org-get-at-eol 'org-category 1)
  7144. txt (org-get-at-eol 'txt 1))
  7145. (if (not (eval org-agenda-filter-form))
  7146. (org-agenda-filter-hide-line type))
  7147. (beginning-of-line 2))
  7148. (beginning-of-line 2))))
  7149. (if (get-char-property (point) 'invisible)
  7150. (ignore-errors (org-agenda-previous-line)))))
  7151. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7152. "Filter by top headline HL."
  7153. (org-agenda-set-mode-name)
  7154. (save-excursion
  7155. (goto-char (point-min))
  7156. (while (not (eobp))
  7157. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7158. (tophl (and pos (org-find-top-headline pos))))
  7159. (if (and tophl (funcall (if negative 'identity 'not)
  7160. (string= hl tophl)))
  7161. (org-agenda-filter-hide-line 'top-headline)))
  7162. (beginning-of-line 2)))
  7163. (if (get-char-property (point) 'invisible)
  7164. (org-agenda-previous-line))
  7165. (setq org-agenda-top-headline-filter hl
  7166. org-agenda-filtered-by-top-headline t))
  7167. (defun org-agenda-filter-hide-line (type)
  7168. "Hide lines with TYPE in the agenda buffer."
  7169. (let* ((b (max (point-min) (1- (point-at-bol))))
  7170. (e (point-at-eol)))
  7171. (let ((inhibit-read-only t))
  7172. (add-text-properties
  7173. b e `(invisible org-filtered org-filter-type ,type)))))
  7174. (defun org-agenda-remove-filter (type)
  7175. (interactive)
  7176. "Remove filter of type TYPE from the agenda buffer."
  7177. (save-excursion
  7178. (goto-char (point-min))
  7179. (let ((inhibit-read-only t) pos)
  7180. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7181. (goto-char pos)
  7182. (remove-text-properties
  7183. (point) (next-single-property-change (point) 'org-filter-type)
  7184. `(invisible org-filtered org-filter-type ,type))))
  7185. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7186. (setq org-agenda-filter-form nil)
  7187. (org-agenda-set-mode-name)
  7188. (org-agenda-finalize)))
  7189. (defun org-agenda-filter-show-all-tag nil
  7190. (org-agenda-remove-filter 'tag))
  7191. (defun org-agenda-filter-show-all-re nil
  7192. (org-agenda-remove-filter 'regexp))
  7193. (defun org-agenda-filter-show-all-effort nil
  7194. (org-agenda-remove-filter 'effort))
  7195. (defun org-agenda-filter-show-all-cat nil
  7196. (org-agenda-remove-filter 'category))
  7197. (defun org-agenda-filter-show-all-top-filter nil
  7198. (org-agenda-remove-filter 'top-headline))
  7199. (defun org-agenda-manipulate-query-add ()
  7200. "Manipulate the query by adding a search term with positive selection.
  7201. Positive selection means the term must be matched for selection of an entry."
  7202. (interactive)
  7203. (org-agenda-manipulate-query ?\[))
  7204. (defun org-agenda-manipulate-query-subtract ()
  7205. "Manipulate the query by adding a search term with negative selection.
  7206. Negative selection means term must not be matched for selection of an entry."
  7207. (interactive)
  7208. (org-agenda-manipulate-query ?\]))
  7209. (defun org-agenda-manipulate-query-add-re ()
  7210. "Manipulate the query by adding a search regexp with positive selection.
  7211. Positive selection means the regexp must match for selection of an entry."
  7212. (interactive)
  7213. (org-agenda-manipulate-query ?\{))
  7214. (defun org-agenda-manipulate-query-subtract-re ()
  7215. "Manipulate the query by adding a search regexp with negative selection.
  7216. Negative selection means regexp must not match for selection of an entry."
  7217. (interactive)
  7218. (org-agenda-manipulate-query ?\}))
  7219. (defun org-agenda-manipulate-query (char)
  7220. (cond
  7221. ((memq org-agenda-type '(timeline agenda))
  7222. (let ((org-agenda-include-inactive-timestamps t))
  7223. (org-agenda-redo))
  7224. (message "Display now includes inactive timestamps as well"))
  7225. ((eq org-agenda-type 'search)
  7226. (org-add-to-string
  7227. 'org-agenda-query-string
  7228. (if org-agenda-last-search-view-search-was-boolean
  7229. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7230. (?\{ . " +{}") (?\} . " -{}"))))
  7231. " "))
  7232. (setq org-agenda-redo-command
  7233. (list 'org-search-view
  7234. (car (get-text-property (min (1- (point-max)) (point))
  7235. 'org-last-args))
  7236. org-agenda-query-string
  7237. (+ (length org-agenda-query-string)
  7238. (if (member char '(?\{ ?\})) 0 1))))
  7239. (set-register org-agenda-query-register org-agenda-query-string)
  7240. (let ((org-agenda-overriding-arguments
  7241. (cdr org-agenda-redo-command)))
  7242. (org-agenda-redo)))
  7243. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7244. org-agenda-type))))
  7245. (defun org-add-to-string (var string)
  7246. (set var (concat (symbol-value var) string)))
  7247. (defun org-agenda-goto-date (span)
  7248. "Jump to DATE in agenda."
  7249. (interactive "P")
  7250. (let* ((org-read-date-prefer-future
  7251. (eval org-agenda-jump-prefer-future))
  7252. (date (org-read-date))
  7253. (day (time-to-days (org-time-string-to-time date)))
  7254. (org-agenda-sticky-orig org-agenda-sticky)
  7255. (org-agenda-buffer-tmp-name (buffer-name))
  7256. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7257. (0-arg (or current-prefix-arg (car args)))
  7258. (2-arg (nth 2 args))
  7259. (with-hour-p (nth 4 org-agenda-redo-command))
  7260. (newcmd (list 'org-agenda-list 0-arg date
  7261. (org-agenda-span-to-ndays
  7262. 2-arg (org-time-string-to-absolute date))
  7263. with-hour-p))
  7264. (newargs (cdr newcmd))
  7265. (inhibit-read-only t)
  7266. org-agenda-sticky)
  7267. (if (not (org-agenda-check-type t 'agenda))
  7268. (error "Not available in non-agenda views")
  7269. (add-text-properties (point-min) (point-max)
  7270. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7271. (org-agenda-redo)
  7272. (goto-char (point-min))
  7273. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7274. (save-excursion (move-beginning-of-line 2) (eobp))))
  7275. (move-beginning-of-line 2))
  7276. (setq org-agenda-sticky org-agenda-sticky-orig
  7277. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7278. (defun org-agenda-goto-today ()
  7279. "Go to today."
  7280. (interactive)
  7281. (org-agenda-check-type t 'timeline 'agenda)
  7282. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7283. (curspan (nth 2 args))
  7284. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7285. (cond
  7286. (tdpos (goto-char tdpos))
  7287. ((eq org-agenda-type 'agenda)
  7288. (let* ((sd (org-agenda-compute-starting-span
  7289. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7290. (org-agenda-overriding-arguments args))
  7291. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7292. (org-agenda-redo)
  7293. (org-agenda-find-same-or-today-or-agenda)))
  7294. (t (error "Cannot find today")))))
  7295. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7296. (goto-char
  7297. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7298. (text-property-any (point-min) (point-max) 'org-today t)
  7299. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7300. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7301. (org-agenda-backward-block))
  7302. (point-min))))
  7303. (defun org-agenda-backward-block ()
  7304. "Move backward by one agenda block."
  7305. (interactive)
  7306. (org-agenda-forward-block 'backward))
  7307. (defun org-agenda-forward-block (&optional backward)
  7308. "Move forward by one agenda block.
  7309. When optional argument BACKWARD is set, go backward"
  7310. (interactive)
  7311. (cond ((not (derived-mode-p 'org-agenda-mode))
  7312. (user-error
  7313. "Cannot execute this command outside of org-agenda-mode buffers"))
  7314. ((looking-at (if backward "\\`" "\\'"))
  7315. (message "Already at the %s block" (if backward "first" "last")))
  7316. (t (let ((pos (prog1 (point)
  7317. (ignore-errors (if backward (backward-char 1)
  7318. (move-end-of-line 1)))))
  7319. (f (if backward
  7320. 'previous-single-property-change
  7321. 'next-single-property-change))
  7322. moved dest)
  7323. (while (and (setq dest (funcall
  7324. f (point) 'org-agenda-structural-header))
  7325. (not (get-text-property
  7326. (point) 'org-agenda-structural-header)))
  7327. (setq moved t)
  7328. (goto-char dest))
  7329. (if moved (move-beginning-of-line 1)
  7330. (goto-char (if backward (point-min) (point-max)))
  7331. (move-beginning-of-line 1)
  7332. (message "No %s block" (if backward "previous" "further")))))))
  7333. (defun org-agenda-later (arg)
  7334. "Go forward in time by the current span.
  7335. With prefix ARG, go forward that many times the current span."
  7336. (interactive "p")
  7337. (org-agenda-check-type t 'agenda)
  7338. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7339. (span (or (nth 2 args) org-agenda-current-span))
  7340. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7341. (greg (calendar-gregorian-from-absolute sd))
  7342. (cnt (org-get-at-bol 'org-day-cnt))
  7343. greg2)
  7344. (cond
  7345. ((numberp span)
  7346. (setq sd (+ (* span arg) sd)))
  7347. ((eq span 'day)
  7348. (setq sd (+ arg sd)))
  7349. ((eq span 'week)
  7350. (setq sd (+ (* 7 arg) sd)))
  7351. ((eq span 'fortnight)
  7352. (setq sd (+ (* 14 arg) sd)))
  7353. ((eq span 'month)
  7354. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7355. sd (calendar-absolute-from-gregorian greg2))
  7356. (setcar greg2 (1+ (car greg2))))
  7357. ((eq span 'year)
  7358. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7359. sd (calendar-absolute-from-gregorian greg2))
  7360. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7361. (t
  7362. (setq sd (+ (* span arg) sd))))
  7363. (let ((org-agenda-overriding-cmd
  7364. ;; `cmd' may have been set by `org-agenda-run-series' which
  7365. ;; uses `org-agenda-overriding-cmd' to decide whether
  7366. ;; overriding is allowed for `cmd'
  7367. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7368. (org-agenda-overriding-arguments
  7369. (list (car args) sd span)))
  7370. (org-agenda-redo)
  7371. (org-agenda-find-same-or-today-or-agenda cnt))))
  7372. (defun org-agenda-earlier (arg)
  7373. "Go backward in time by the current span.
  7374. With prefix ARG, go backward that many times the current span."
  7375. (interactive "p")
  7376. (org-agenda-later (- arg)))
  7377. (defun org-agenda-view-mode-dispatch ()
  7378. "Call one of the view mode commands."
  7379. (interactive)
  7380. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7381. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7382. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7383. (let ((a (read-char-exclusive)))
  7384. (case a
  7385. (?\ (call-interactively 'org-agenda-reset-view))
  7386. (?d (call-interactively 'org-agenda-day-view))
  7387. (?w (call-interactively 'org-agenda-week-view))
  7388. (?t (call-interactively 'org-agenda-fortnight-view))
  7389. (?m (call-interactively 'org-agenda-month-view))
  7390. (?y (call-interactively 'org-agenda-year-view))
  7391. (?l (call-interactively 'org-agenda-log-mode))
  7392. (?L (org-agenda-log-mode '(4)))
  7393. (?c (org-agenda-log-mode 'clockcheck))
  7394. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7395. (?a (call-interactively 'org-agenda-archives-mode))
  7396. (?A (org-agenda-archives-mode 'files))
  7397. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7398. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7399. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7400. (?D (call-interactively 'org-agenda-toggle-diary))
  7401. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7402. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7403. (org-agenda-check-type t 'timeline 'agenda)
  7404. (org-agenda-redo))
  7405. (message "Display now includes inactive timestamps as well"))
  7406. (?q (message "Abort"))
  7407. (otherwise (error "Invalid key" )))))
  7408. (defun org-agenda-reset-view ()
  7409. "Switch to default view for agenda."
  7410. (interactive)
  7411. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7412. (defun org-agenda-day-view (&optional day-of-month)
  7413. "Switch to daily view for agenda.
  7414. With argument DAY-OF-MONTH, switch to that day of the month."
  7415. (interactive "P")
  7416. (org-agenda-change-time-span 'day day-of-month))
  7417. (defun org-agenda-week-view (&optional iso-week)
  7418. "Switch to daily view for agenda.
  7419. With argument ISO-WEEK, switch to the corresponding ISO week.
  7420. If ISO-WEEK has more then 2 digits, only the last two encode the
  7421. week. Any digits before this encode a year. So 200712 means
  7422. week 12 of year 2007. Years in the range 1938-2037 can also be
  7423. written as 2-digit years."
  7424. (interactive "P")
  7425. (org-agenda-change-time-span 'week iso-week))
  7426. (defun org-agenda-fortnight-view (&optional iso-week)
  7427. "Switch to daily view for agenda.
  7428. With argument ISO-WEEK, switch to the corresponding ISO week.
  7429. If ISO-WEEK has more then 2 digits, only the last two encode the
  7430. week. Any digits before this encode a year. So 200712 means
  7431. week 12 of year 2007. Years in the range 1938-2037 can also be
  7432. written as 2-digit years."
  7433. (interactive "P")
  7434. (org-agenda-change-time-span 'fortnight iso-week))
  7435. (defun org-agenda-month-view (&optional month)
  7436. "Switch to monthly view for agenda.
  7437. With argument MONTH, switch to that month."
  7438. (interactive "P")
  7439. (org-agenda-change-time-span 'month month))
  7440. (defun org-agenda-year-view (&optional year)
  7441. "Switch to yearly view for agenda.
  7442. With argument YEAR, switch to that year.
  7443. If MONTH has more then 2 digits, only the last two encode the
  7444. month. Any digits before this encode a year. So 200712 means
  7445. December year 2007. Years in the range 1938-2037 can also be
  7446. written as 2-digit years."
  7447. (interactive "P")
  7448. (when year
  7449. (setq year (org-small-year-to-year year)))
  7450. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7451. (org-agenda-change-time-span 'year year)
  7452. (error "Abort")))
  7453. (defun org-agenda-change-time-span (span &optional n)
  7454. "Change the agenda view to SPAN.
  7455. SPAN may be `day', `week', `fortnight', `month', `year'."
  7456. (org-agenda-check-type t 'agenda)
  7457. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7458. (curspan (nth 2 args)))
  7459. (if (and (not n) (equal curspan span))
  7460. (error "Viewing span is already \"%s\"" span))
  7461. (let* ((sd (or (org-get-at-bol 'day)
  7462. (nth 1 args)
  7463. org-starting-day))
  7464. (sd (org-agenda-compute-starting-span sd span n))
  7465. (org-agenda-overriding-cmd
  7466. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7467. (org-agenda-overriding-arguments
  7468. (list (car args) sd span)))
  7469. (org-agenda-redo)
  7470. (org-agenda-find-same-or-today-or-agenda))
  7471. (org-agenda-set-mode-name)
  7472. (message "Switched to %s view" span)))
  7473. (defun org-agenda-compute-starting-span (sd span &optional n)
  7474. "Compute starting date for agenda.
  7475. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7476. is a cons cell with the starting date and the number of days,
  7477. so that the date SD will be in that range."
  7478. (let* ((greg (calendar-gregorian-from-absolute sd))
  7479. (dg (nth 1 greg))
  7480. (mg (car greg))
  7481. (yg (nth 2 greg)))
  7482. (cond
  7483. ((eq span 'day)
  7484. (when n
  7485. (setq sd (+ (calendar-absolute-from-gregorian
  7486. (list mg 1 yg))
  7487. n -1))))
  7488. ((or (eq span 'week) (eq span 'fortnight))
  7489. (let* ((nt (calendar-day-of-week
  7490. (calendar-gregorian-from-absolute sd)))
  7491. (d (if org-agenda-start-on-weekday
  7492. (- nt org-agenda-start-on-weekday)
  7493. 0))
  7494. y1)
  7495. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7496. (when n
  7497. (require 'cal-iso)
  7498. (when (> n 99)
  7499. (setq y1 (org-small-year-to-year (/ n 100))
  7500. n (mod n 100)))
  7501. (setq sd
  7502. (calendar-iso-to-absolute
  7503. (list n 1
  7504. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7505. ((eq span 'month)
  7506. (let (y1)
  7507. (when (and n (> n 99))
  7508. (setq y1 (org-small-year-to-year (/ n 100))
  7509. n (mod n 100)))
  7510. (setq sd (calendar-absolute-from-gregorian
  7511. (list (or n mg) 1 (or y1 yg))))))
  7512. ((eq span 'year)
  7513. (setq sd (calendar-absolute-from-gregorian
  7514. (list 1 1 (or n yg))))))
  7515. sd))
  7516. (defun org-agenda-next-date-line (&optional arg)
  7517. "Jump to the next line indicating a date in agenda buffer."
  7518. (interactive "p")
  7519. (org-agenda-check-type t 'agenda 'timeline)
  7520. (beginning-of-line 1)
  7521. ;; This does not work if user makes date format that starts with a blank
  7522. (if (looking-at "^\\S-") (forward-char 1))
  7523. (if (not (re-search-forward "^\\S-" nil t arg))
  7524. (progn
  7525. (backward-char 1)
  7526. (error "No next date after this line in this buffer")))
  7527. (goto-char (match-beginning 0)))
  7528. (defun org-agenda-previous-date-line (&optional arg)
  7529. "Jump to the previous line indicating a date in agenda buffer."
  7530. (interactive "p")
  7531. (org-agenda-check-type t 'agenda 'timeline)
  7532. (beginning-of-line 1)
  7533. (if (not (re-search-backward "^\\S-" nil t arg))
  7534. (error "No previous date before this line in this buffer")))
  7535. ;; Initialize the highlight
  7536. (defvar org-hl (make-overlay 1 1))
  7537. (overlay-put org-hl 'face 'highlight)
  7538. (defun org-highlight (begin end &optional buffer)
  7539. "Highlight a region with overlay."
  7540. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7541. (defun org-unhighlight ()
  7542. "Detach overlay INDEX."
  7543. (org-detach-overlay org-hl))
  7544. (defun org-unhighlight-once ()
  7545. "Remove the highlight from its position, and this function from the hook."
  7546. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7547. (org-unhighlight))
  7548. (defvar org-agenda-pre-follow-window-conf nil)
  7549. (defun org-agenda-follow-mode ()
  7550. "Toggle follow mode in an agenda buffer."
  7551. (interactive)
  7552. (unless org-agenda-follow-mode
  7553. (setq org-agenda-pre-follow-window-conf
  7554. (current-window-configuration)))
  7555. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7556. (unless org-agenda-follow-mode
  7557. (set-window-configuration org-agenda-pre-follow-window-conf))
  7558. (org-agenda-set-mode-name)
  7559. (org-agenda-do-context-action)
  7560. (message "Follow mode is %s"
  7561. (if org-agenda-follow-mode "on" "off")))
  7562. (defun org-agenda-entry-text-mode (&optional arg)
  7563. "Toggle entry text mode in an agenda buffer."
  7564. (interactive "P")
  7565. (if (or org-agenda-tag-filter
  7566. org-agenda-category-filter
  7567. org-agenda-regexp-filter
  7568. org-agenda-top-headline-filter)
  7569. (user-error "Can't show entry text in filtered views")
  7570. (setq org-agenda-entry-text-mode (or (integerp arg)
  7571. (not org-agenda-entry-text-mode)))
  7572. (org-agenda-entry-text-hide)
  7573. (and org-agenda-entry-text-mode
  7574. (let ((org-agenda-entry-text-maxlines
  7575. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7576. (org-agenda-entry-text-show)))
  7577. (org-agenda-set-mode-name)
  7578. (message "Entry text mode is %s%s"
  7579. (if org-agenda-entry-text-mode "on" "off")
  7580. (if (not org-agenda-entry-text-mode) ""
  7581. (format " (maximum number of lines is %d)"
  7582. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7583. (defun org-agenda-clockreport-mode ()
  7584. "Toggle clocktable mode in an agenda buffer."
  7585. (interactive)
  7586. (org-agenda-check-type t 'agenda)
  7587. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7588. (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
  7589. (org-agenda-set-mode-name)
  7590. (org-agenda-redo)
  7591. (message "Clocktable mode is %s"
  7592. (if org-agenda-clockreport-mode "on" "off")))
  7593. (defun org-agenda-log-mode (&optional special)
  7594. "Toggle log mode in an agenda buffer.
  7595. With argument SPECIAL, show all possible log items, not only the ones
  7596. configured in `org-agenda-log-mode-items'.
  7597. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7598. (interactive "P")
  7599. (org-agenda-check-type t 'agenda 'timeline)
  7600. (setq org-agenda-show-log
  7601. (cond
  7602. ((equal special '(16)) 'only)
  7603. ((eq special 'clockcheck)
  7604. (if (eq org-agenda-show-log 'clockcheck)
  7605. nil 'clockcheck))
  7606. (special '(closed clock state))
  7607. (t (not org-agenda-show-log))))
  7608. (setq org-agenda-start-with-log-mode org-agenda-show-log)
  7609. (org-agenda-set-mode-name)
  7610. (org-agenda-redo)
  7611. (message "Log mode is %s"
  7612. (if org-agenda-show-log "on" "off")))
  7613. (defun org-agenda-archives-mode (&optional with-files)
  7614. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7615. When called with a prefix argument, include all archive files as well."
  7616. (interactive "P")
  7617. (setq org-agenda-archives-mode
  7618. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7619. (org-agenda-set-mode-name)
  7620. (org-agenda-redo)
  7621. (message
  7622. "%s"
  7623. (cond
  7624. ((eq org-agenda-archives-mode nil)
  7625. "No archives are included")
  7626. ((eq org-agenda-archives-mode 'trees)
  7627. (format "Trees with :%s: tag are included" org-archive-tag))
  7628. ((eq org-agenda-archives-mode t)
  7629. (format "Trees with :%s: tag and all active archive files are included"
  7630. org-archive-tag)))))
  7631. (defun org-agenda-toggle-diary ()
  7632. "Toggle diary inclusion in an agenda buffer."
  7633. (interactive)
  7634. (org-agenda-check-type t 'agenda)
  7635. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7636. (org-agenda-redo)
  7637. (org-agenda-set-mode-name)
  7638. (message "Diary inclusion turned %s"
  7639. (if org-agenda-include-diary "on" "off")))
  7640. (defun org-agenda-toggle-deadlines ()
  7641. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7642. (interactive)
  7643. (org-agenda-check-type t 'agenda)
  7644. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7645. (org-agenda-redo)
  7646. (org-agenda-set-mode-name)
  7647. (message "Deadlines inclusion turned %s"
  7648. (if org-agenda-include-deadlines "on" "off")))
  7649. (defun org-agenda-toggle-time-grid ()
  7650. "Toggle time grid in an agenda buffer."
  7651. (interactive)
  7652. (org-agenda-check-type t 'agenda)
  7653. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7654. (org-agenda-redo)
  7655. (org-agenda-set-mode-name)
  7656. (message "Time-grid turned %s"
  7657. (if org-agenda-use-time-grid "on" "off")))
  7658. (defun org-agenda-set-mode-name ()
  7659. "Set the mode name to indicate all the small mode settings."
  7660. (setq mode-name
  7661. (list "Org-Agenda"
  7662. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7663. " "
  7664. '(:eval (org-agenda-span-name org-agenda-current-span))
  7665. (if org-agenda-follow-mode " Follow" "")
  7666. (if org-agenda-entry-text-mode " ETxt" "")
  7667. (if org-agenda-include-diary " Diary" "")
  7668. (if org-agenda-include-deadlines " Ddl" "")
  7669. (if org-agenda-use-time-grid " Grid" "")
  7670. (if (and (boundp 'org-habit-show-habits)
  7671. org-habit-show-habits) " Habit" "")
  7672. (cond
  7673. ((consp org-agenda-show-log) " LogAll")
  7674. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7675. (org-agenda-show-log " Log")
  7676. (t ""))
  7677. (if (or org-agenda-category-filter
  7678. (get 'org-agenda-category-filter :preset-filter))
  7679. '(:eval (org-propertize
  7680. (concat " <"
  7681. (mapconcat
  7682. 'identity
  7683. (append
  7684. (get 'org-agenda-category-filter :preset-filter)
  7685. org-agenda-category-filter)
  7686. "")
  7687. ">")
  7688. 'face 'org-agenda-filter-category
  7689. 'help-echo "Category used in filtering")) "")
  7690. (if (or org-agenda-tag-filter
  7691. (get 'org-agenda-tag-filter :preset-filter))
  7692. '(:eval (org-propertize
  7693. (concat " {"
  7694. (mapconcat
  7695. 'identity
  7696. (append
  7697. (get 'org-agenda-tag-filter :preset-filter)
  7698. org-agenda-tag-filter)
  7699. "")
  7700. "}")
  7701. 'face 'org-agenda-filter-tags
  7702. 'help-echo "Tags used in filtering")) "")
  7703. (if (or org-agenda-effort-filter
  7704. (get 'org-agenda-effort-filter :preset-filter))
  7705. '(:eval (org-propertize
  7706. (concat " {"
  7707. (mapconcat
  7708. 'identity
  7709. (append
  7710. (get 'org-agenda-effort-filter :preset-filter)
  7711. org-agenda-effort-filter)
  7712. "")
  7713. "}")
  7714. 'face 'org-agenda-filter-effort
  7715. 'help-echo "Effort conditions used in filtering")) "")
  7716. (if (or org-agenda-regexp-filter
  7717. (get 'org-agenda-regexp-filter :preset-filter))
  7718. '(:eval (org-propertize
  7719. (concat " ["
  7720. (mapconcat
  7721. 'identity
  7722. (append
  7723. (get 'org-agenda-regexp-filter :preset-filter)
  7724. org-agenda-regexp-filter)
  7725. "")
  7726. "]")
  7727. 'face 'org-agenda-filter-regexp
  7728. 'help-echo "Regexp used in filtering")) "")
  7729. (if org-agenda-archives-mode
  7730. (if (eq org-agenda-archives-mode t)
  7731. " Archives"
  7732. (format " :%s:" org-archive-tag))
  7733. "")
  7734. (if org-agenda-clockreport-mode " Clock" "")))
  7735. (force-mode-line-update))
  7736. (define-obsolete-function-alias
  7737. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7738. (defun org-agenda-update-agenda-type ()
  7739. "Update the agenda type after each command."
  7740. (setq org-agenda-type
  7741. (or (get-text-property (point) 'org-agenda-type)
  7742. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7743. (defun org-agenda-next-line ()
  7744. "Move cursor to the next line, and show if follow mode is active."
  7745. (interactive)
  7746. (call-interactively 'next-line)
  7747. (org-agenda-do-context-action))
  7748. (defun org-agenda-previous-line ()
  7749. "Move cursor to the previous line, and show if follow-mode is active."
  7750. (interactive)
  7751. (call-interactively 'previous-line)
  7752. (org-agenda-do-context-action))
  7753. (defun org-agenda-next-item (n)
  7754. "Move cursor to next agenda item."
  7755. (interactive "p")
  7756. (let ((col (current-column)))
  7757. (dotimes (c n)
  7758. (when (next-single-property-change (point-at-eol) 'org-marker)
  7759. (move-end-of-line 1)
  7760. (goto-char (next-single-property-change (point) 'org-marker))))
  7761. (org-move-to-column col))
  7762. (org-agenda-do-context-action))
  7763. (defun org-agenda-previous-item (n)
  7764. "Move cursor to next agenda item."
  7765. (interactive "p")
  7766. (dotimes (c n)
  7767. (let ((col (current-column))
  7768. (goto (save-excursion
  7769. (move-end-of-line 0)
  7770. (previous-single-property-change (point) 'org-marker))))
  7771. (if goto (goto-char goto))
  7772. (org-move-to-column col)))
  7773. (org-agenda-do-context-action))
  7774. (defun org-agenda-do-context-action ()
  7775. "Show outline path and, maybe, follow mode window."
  7776. (let ((m (org-get-at-bol 'org-marker)))
  7777. (when (and (markerp m) (marker-buffer m))
  7778. (and org-agenda-follow-mode
  7779. (if org-agenda-follow-indirect
  7780. (org-agenda-tree-to-indirect-buffer nil)
  7781. (org-agenda-show)))
  7782. (and org-agenda-show-outline-path
  7783. (org-with-point-at m (org-display-outline-path t))))))
  7784. (defun org-agenda-show-tags ()
  7785. "Show the tags applicable to the current item."
  7786. (interactive)
  7787. (let* ((tags (org-get-at-bol 'tags)))
  7788. (if tags
  7789. (message "Tags are :%s:"
  7790. (org-no-properties (mapconcat 'identity tags ":")))
  7791. (message "No tags associated with this line"))))
  7792. (defun org-agenda-goto (&optional highlight)
  7793. "Go to the entry at point in the corresponding Org-mode file."
  7794. (interactive)
  7795. (let* ((marker (or (org-get-at-bol 'org-marker)
  7796. (org-agenda-error)))
  7797. (buffer (marker-buffer marker))
  7798. (pos (marker-position marker)))
  7799. (switch-to-buffer-other-window buffer)
  7800. (widen)
  7801. (push-mark)
  7802. (goto-char pos)
  7803. (when (derived-mode-p 'org-mode)
  7804. (org-show-context 'agenda)
  7805. (save-excursion
  7806. (and (outline-next-heading)
  7807. (org-flag-heading nil)))) ; show the next heading
  7808. (when (outline-invisible-p)
  7809. (show-entry)) ; display invisible text
  7810. (recenter (/ (window-height) 2))
  7811. (org-back-to-heading t)
  7812. (if (re-search-forward org-complex-heading-regexp nil t)
  7813. (goto-char (match-beginning 4)))
  7814. (run-hooks 'org-agenda-after-show-hook)
  7815. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7816. (defvar org-agenda-after-show-hook nil
  7817. "Normal hook run after an item has been shown from the agenda.
  7818. Point is in the buffer where the item originated.")
  7819. (defun org-agenda-kill ()
  7820. "Kill the entry or subtree belonging to the current agenda entry."
  7821. (interactive)
  7822. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7823. (let* ((bufname-orig (buffer-name))
  7824. (marker (or (org-get-at-bol 'org-marker)
  7825. (org-agenda-error)))
  7826. (buffer (marker-buffer marker))
  7827. (pos (marker-position marker))
  7828. (type (org-get-at-bol 'type))
  7829. dbeg dend (n 0) conf)
  7830. (org-with-remote-undo buffer
  7831. (with-current-buffer buffer
  7832. (save-excursion
  7833. (goto-char pos)
  7834. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7835. (setq dbeg (progn (org-back-to-heading t) (point))
  7836. dend (org-end-of-subtree t t))
  7837. (setq dbeg (point-at-bol)
  7838. dend (min (point-max) (1+ (point-at-eol)))))
  7839. (goto-char dbeg)
  7840. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7841. (setq conf (or (eq t org-agenda-confirm-kill)
  7842. (and (numberp org-agenda-confirm-kill)
  7843. (> n org-agenda-confirm-kill))))
  7844. (and conf
  7845. (not (y-or-n-p
  7846. (format "Delete entry with %d lines in buffer \"%s\"? "
  7847. n (buffer-name buffer))))
  7848. (error "Abort"))
  7849. (let ((org-agenda-buffer-name bufname-orig))
  7850. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7851. (with-current-buffer buffer (delete-region dbeg dend))
  7852. (message "Agenda item and source killed"))))
  7853. (defvar org-archive-default-command) ; defined in org-archive.el
  7854. (defun org-agenda-archive-default ()
  7855. "Archive the entry or subtree belonging to the current agenda entry."
  7856. (interactive)
  7857. (require 'org-archive)
  7858. (org-agenda-archive-with org-archive-default-command))
  7859. (defun org-agenda-archive-default-with-confirmation ()
  7860. "Archive the entry or subtree belonging to the current agenda entry."
  7861. (interactive)
  7862. (require 'org-archive)
  7863. (org-agenda-archive-with org-archive-default-command 'confirm))
  7864. (defun org-agenda-archive ()
  7865. "Archive the entry or subtree belonging to the current agenda entry."
  7866. (interactive)
  7867. (org-agenda-archive-with 'org-archive-subtree))
  7868. (defun org-agenda-archive-to-archive-sibling ()
  7869. "Move the entry to the archive sibling."
  7870. (interactive)
  7871. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7872. (defun org-agenda-archive-with (cmd &optional confirm)
  7873. "Move the entry to the archive sibling."
  7874. (interactive)
  7875. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7876. (let* ((bufname-orig (buffer-name))
  7877. (marker (or (org-get-at-bol 'org-marker)
  7878. (org-agenda-error)))
  7879. (buffer (marker-buffer marker))
  7880. (pos (marker-position marker)))
  7881. (org-with-remote-undo buffer
  7882. (with-current-buffer buffer
  7883. (if (derived-mode-p 'org-mode)
  7884. (if (and confirm
  7885. (not (y-or-n-p "Archive this subtree or entry? ")))
  7886. (error "Abort")
  7887. (save-window-excursion
  7888. (goto-char pos)
  7889. (let ((org-agenda-buffer-name bufname-orig))
  7890. (org-remove-subtree-entries-from-agenda))
  7891. (org-back-to-heading t)
  7892. (funcall cmd)))
  7893. (error "Archiving works only in Org-mode files"))))))
  7894. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7895. "Remove all lines in the agenda that correspond to a given subtree.
  7896. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7897. If this information is not given, the function uses the tree at point."
  7898. (let ((buf (or buf (current-buffer))) m p)
  7899. (save-excursion
  7900. (unless (and beg end)
  7901. (org-back-to-heading t)
  7902. (setq beg (point))
  7903. (org-end-of-subtree t)
  7904. (setq end (point)))
  7905. (set-buffer (get-buffer org-agenda-buffer-name))
  7906. (save-excursion
  7907. (goto-char (point-max))
  7908. (beginning-of-line 1)
  7909. (while (not (bobp))
  7910. (when (and (setq m (org-get-at-bol 'org-marker))
  7911. (equal buf (marker-buffer m))
  7912. (setq p (marker-position m))
  7913. (>= p beg)
  7914. (< p end))
  7915. (let ((inhibit-read-only t))
  7916. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7917. (beginning-of-line 0))))))
  7918. (defun org-agenda-refile (&optional goto rfloc no-update)
  7919. "Refile the item at point.
  7920. When GOTO is 0 or '(64) or \\[universal-argument] \\[universal-argument] \\[universal-argument], clear the refile cache.
  7921. When GOTO is '(16) or \\[universal-argument] \\[universal-argument], go to the location of the last refiled item.
  7922. RFLOC can be a refile location obtained in a different way.
  7923. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7924. (interactive "P")
  7925. (cond
  7926. ((member goto '(0 (64)))
  7927. (org-refile-cache-clear))
  7928. ((equal goto '(16))
  7929. (org-refile-goto-last-stored))
  7930. (t
  7931. (let* ((buffer-orig (buffer-name))
  7932. (marker (or (org-get-at-bol 'org-hd-marker)
  7933. (org-agenda-error)))
  7934. (buffer (marker-buffer marker))
  7935. (pos (marker-position marker))
  7936. (rfloc (or rfloc
  7937. (org-refile-get-location
  7938. (if goto "Goto" "Refile to") buffer
  7939. org-refile-allow-creating-parent-nodes))))
  7940. (with-current-buffer buffer
  7941. (save-excursion
  7942. (save-restriction
  7943. (widen)
  7944. (goto-char marker)
  7945. (let ((org-agenda-buffer-name buffer-orig))
  7946. (org-remove-subtree-entries-from-agenda))
  7947. (org-refile goto buffer rfloc)))))
  7948. (unless no-update (org-agenda-redo)))))
  7949. (defun org-agenda-open-link (&optional arg)
  7950. "Open the link(s) in the current entry, if any.
  7951. This looks for a link in the displayed line in the agenda.
  7952. It also looks at the text of the entry itself."
  7953. (interactive "P")
  7954. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7955. (org-get-at-bol 'org-marker)))
  7956. (buffer (and marker (marker-buffer marker)))
  7957. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7958. (lkall (and buffer (org-offer-links-in-entry
  7959. buffer marker arg prefix)))
  7960. (lk0 (car lkall))
  7961. (lk (if (stringp lk0) (list lk0) lk0))
  7962. (lkend (cdr lkall))
  7963. trg)
  7964. (cond
  7965. ((and buffer lk)
  7966. (mapcar (lambda(l)
  7967. (with-current-buffer buffer
  7968. (setq trg (and (string-match org-bracket-link-regexp l)
  7969. (match-string 1 l)))
  7970. (if (or (not trg) (string-match org-any-link-re trg))
  7971. (save-excursion
  7972. (save-restriction
  7973. (widen)
  7974. (goto-char marker)
  7975. (when (search-forward l nil lkend)
  7976. (goto-char (match-beginning 0))
  7977. (org-open-at-point))))
  7978. ;; This is an internal link, widen the buffer
  7979. (switch-to-buffer-other-window buffer)
  7980. (widen)
  7981. (goto-char marker)
  7982. (when (search-forward l nil lkend)
  7983. (goto-char (match-beginning 0))
  7984. (org-open-at-point)))))
  7985. lk))
  7986. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7987. (save-excursion
  7988. (beginning-of-line 1)
  7989. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7990. (org-open-link-from-string (match-string 1)))
  7991. (t (message "No link to open here")))))
  7992. (defun org-agenda-copy-local-variable (var)
  7993. "Get a variable from a referenced buffer and install it here."
  7994. (let ((m (org-get-at-bol 'org-marker)))
  7995. (when (and m (buffer-live-p (marker-buffer m)))
  7996. (org-set-local var (with-current-buffer (marker-buffer m)
  7997. (symbol-value var))))))
  7998. (defun org-agenda-switch-to (&optional delete-other-windows)
  7999. "Go to the Org-mode file which contains the item at point."
  8000. (interactive)
  8001. (if (and org-return-follows-link
  8002. (not (org-get-at-bol 'org-marker))
  8003. (org-in-regexp org-bracket-link-regexp))
  8004. (org-open-link-from-string (match-string 0))
  8005. (let* ((marker (or (org-get-at-bol 'org-marker)
  8006. (org-agenda-error)))
  8007. (buffer (marker-buffer marker))
  8008. (pos (marker-position marker)))
  8009. (org-pop-to-buffer-same-window buffer)
  8010. (and delete-other-windows (delete-other-windows))
  8011. (widen)
  8012. (goto-char pos)
  8013. (org-back-to-heading t)
  8014. (when (derived-mode-p 'org-mode)
  8015. (org-show-context 'agenda)
  8016. (save-excursion
  8017. (and (outline-next-heading)
  8018. (org-flag-heading nil))) ; show the next heading
  8019. (when (outline-invisible-p)
  8020. (show-entry)) ; display invisible text
  8021. (run-hooks 'org-agenda-after-show-hook)))))
  8022. (defun org-agenda-goto-mouse (ev)
  8023. "Go to the Org-mode file which contains the item at the mouse click."
  8024. (interactive "e")
  8025. (mouse-set-point ev)
  8026. (org-agenda-goto))
  8027. (defun org-agenda-show (&optional full-entry)
  8028. "Display the Org-mode file which contains the item at point.
  8029. With prefix argument FULL-ENTRY, make the entire entry visible
  8030. if it was hidden in the outline."
  8031. (interactive "P")
  8032. (let ((win (selected-window)))
  8033. (if full-entry
  8034. (let ((org-show-entry-below t))
  8035. (org-agenda-goto t))
  8036. (org-agenda-goto t))
  8037. (select-window win)))
  8038. (defvar org-agenda-show-window nil)
  8039. (defun org-agenda-show-and-scroll-up (&optional arg)
  8040. "Display the Org-mode file which contains the item at point.
  8041. When called repeatedly, scroll the window that is displaying the buffer.
  8042. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  8043. `show-subtree' to display the item, so that drawers and logbooks stay
  8044. folded."
  8045. (interactive "P")
  8046. (let ((win (selected-window)))
  8047. (if (and (window-live-p org-agenda-show-window)
  8048. (eq this-command last-command))
  8049. (progn
  8050. (select-window org-agenda-show-window)
  8051. (ignore-errors (scroll-up)))
  8052. (org-agenda-goto t)
  8053. (if arg (org-show-entry) (show-subtree))
  8054. (setq org-agenda-show-window (selected-window)))
  8055. (select-window win)))
  8056. (defun org-agenda-show-scroll-down ()
  8057. "Scroll down the window showing the agenda."
  8058. (interactive)
  8059. (let ((win (selected-window)))
  8060. (when (window-live-p org-agenda-show-window)
  8061. (select-window org-agenda-show-window)
  8062. (ignore-errors (scroll-down))
  8063. (select-window win))))
  8064. (defun org-agenda-show-1 (&optional more)
  8065. "Display the Org-mode file which contains the item at point.
  8066. The prefix arg selects the amount of information to display:
  8067. 0 hide the subtree
  8068. 1 just show the entry according to defaults.
  8069. 2 show the children view
  8070. 3 show the subtree view
  8071. 4 show the entire subtree and any LOGBOOK drawers
  8072. 5 show the entire subtree and any drawers
  8073. With prefix argument FULL-ENTRY, make the entire entry visible
  8074. if it was hidden in the outline."
  8075. (interactive "p")
  8076. (let ((win (selected-window)))
  8077. (org-agenda-goto t)
  8078. (org-back-to-heading)
  8079. (set-window-start (selected-window) (point-at-bol))
  8080. (cond
  8081. ((= more 0)
  8082. (hide-subtree)
  8083. (save-excursion
  8084. (org-back-to-heading)
  8085. (run-hook-with-args 'org-cycle-hook 'folded))
  8086. (message "Remote: FOLDED"))
  8087. ((and (org-called-interactively-p 'any) (= more 1))
  8088. (message "Remote: show with default settings"))
  8089. ((= more 2)
  8090. (show-entry)
  8091. (show-children)
  8092. (save-excursion
  8093. (org-back-to-heading)
  8094. (run-hook-with-args 'org-cycle-hook 'children))
  8095. (message "Remote: CHILDREN"))
  8096. ((= more 3)
  8097. (show-subtree)
  8098. (save-excursion
  8099. (org-back-to-heading)
  8100. (run-hook-with-args 'org-cycle-hook 'subtree))
  8101. (message "Remote: SUBTREE"))
  8102. ((= more 4)
  8103. (show-subtree)
  8104. (save-excursion
  8105. (org-back-to-heading)
  8106. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8107. (message "Remote: SUBTREE AND LOGBOOK"))
  8108. ((> more 4)
  8109. (show-subtree)
  8110. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8111. (select-window win)))
  8112. (defvar org-agenda-cycle-counter nil)
  8113. (defun org-agenda-cycle-show (&optional n)
  8114. "Show the current entry in another window, with default settings.
  8115. Default settings are taken from `org-show-hierarchy-above' and siblings.
  8116. When use repeatedly in immediate succession, the remote entry will cycle
  8117. through visibility
  8118. children -> subtree -> folded
  8119. When called with a numeric prefix arg, that arg will be passed through to
  8120. `org-agenda-show-1'. For the interpretation of that argument, see the
  8121. docstring of `org-agenda-show-1'."
  8122. (interactive "P")
  8123. (if (integerp n)
  8124. (setq org-agenda-cycle-counter n)
  8125. (if (not (eq last-command this-command))
  8126. (setq org-agenda-cycle-counter 1)
  8127. (if (equal org-agenda-cycle-counter 0)
  8128. (setq org-agenda-cycle-counter 2)
  8129. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8130. (if (> org-agenda-cycle-counter 3)
  8131. (setq org-agenda-cycle-counter 0)))))
  8132. (org-agenda-show-1 org-agenda-cycle-counter))
  8133. (defun org-agenda-recenter (arg)
  8134. "Display the Org-mode file which contains the item at point and recenter."
  8135. (interactive "P")
  8136. (let ((win (selected-window)))
  8137. (org-agenda-goto t)
  8138. (recenter arg)
  8139. (select-window win)))
  8140. (defun org-agenda-show-mouse (ev)
  8141. "Display the Org-mode file which contains the item at the mouse click."
  8142. (interactive "e")
  8143. (mouse-set-point ev)
  8144. (org-agenda-show))
  8145. (defun org-agenda-check-no-diary ()
  8146. "Check if the entry is a diary link and abort if yes."
  8147. (if (org-get-at-bol 'org-agenda-diary-link)
  8148. (org-agenda-error)))
  8149. (defun org-agenda-error ()
  8150. "Throw an error when a command is not allowed in the agenda."
  8151. (user-error "Command not allowed in this line"))
  8152. (defun org-agenda-tree-to-indirect-buffer (arg)
  8153. "Show the subtree corresponding to the current entry in an indirect buffer.
  8154. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8155. With a numerical prefix ARG, go up to this level and then take that tree.
  8156. With a negative numeric ARG, go up by this number of levels.
  8157. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8158. use the dedicated frame)."
  8159. (interactive "P")
  8160. (if current-prefix-arg
  8161. (org-agenda-do-tree-to-indirect-buffer arg)
  8162. (let ((agenda-buffer (buffer-name))
  8163. (agenda-window (selected-window))
  8164. (indirect-window
  8165. (and org-last-indirect-buffer
  8166. (get-buffer-window org-last-indirect-buffer))))
  8167. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8168. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8169. (eq org-indirect-buffer-display 'dedicated-frame))
  8170. (unwind-protect
  8171. (unless (and indirect-window (window-live-p indirect-window))
  8172. (setq indirect-window (split-window agenda-window)))
  8173. (and indirect-window (select-window indirect-window))
  8174. (switch-to-buffer org-last-indirect-buffer :norecord)
  8175. (fit-window-to-buffer indirect-window)))
  8176. (select-window (get-buffer-window agenda-buffer))
  8177. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8178. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8179. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8180. (org-agenda-check-no-diary)
  8181. (let* ((marker (or (org-get-at-bol 'org-marker)
  8182. (org-agenda-error)))
  8183. (buffer (marker-buffer marker))
  8184. (pos (marker-position marker)))
  8185. (with-current-buffer buffer
  8186. (save-excursion
  8187. (goto-char pos)
  8188. (funcall 'org-tree-to-indirect-buffer arg)))))
  8189. (defvar org-last-heading-marker (make-marker)
  8190. "Marker pointing to the headline that last changed its TODO state
  8191. by a remote command from the agenda.")
  8192. (defun org-agenda-todo-nextset ()
  8193. "Switch TODO entry to next sequence."
  8194. (interactive)
  8195. (org-agenda-todo 'nextset))
  8196. (defun org-agenda-todo-previousset ()
  8197. "Switch TODO entry to previous sequence."
  8198. (interactive)
  8199. (org-agenda-todo 'previousset))
  8200. (defun org-agenda-todo (&optional arg)
  8201. "Cycle TODO state of line at point, also in Org-mode file.
  8202. This changes the line at point, all other lines in the agenda referring to
  8203. the same tree node, and the headline of the tree node in the Org-mode file."
  8204. (interactive "P")
  8205. (org-agenda-check-no-diary)
  8206. (let* ((col (current-column))
  8207. (marker (or (org-get-at-bol 'org-marker)
  8208. (org-agenda-error)))
  8209. (buffer (marker-buffer marker))
  8210. (pos (marker-position marker))
  8211. (hdmarker (org-get-at-bol 'org-hd-marker))
  8212. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8213. (inhibit-read-only t)
  8214. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8215. (org-with-remote-undo buffer
  8216. (with-current-buffer buffer
  8217. (widen)
  8218. (goto-char pos)
  8219. (org-show-context 'agenda)
  8220. (save-excursion
  8221. (and (outline-next-heading)
  8222. (org-flag-heading nil))) ; show the next heading
  8223. (let ((current-prefix-arg arg))
  8224. (call-interactively 'org-todo))
  8225. (and (bolp) (forward-char 1))
  8226. (setq newhead (org-get-heading))
  8227. (when (and (org-bound-and-true-p
  8228. org-agenda-headline-snapshot-before-repeat)
  8229. (not (equal org-agenda-headline-snapshot-before-repeat
  8230. newhead))
  8231. todayp)
  8232. (setq newhead org-agenda-headline-snapshot-before-repeat
  8233. just-one t))
  8234. (save-excursion
  8235. (org-back-to-heading)
  8236. (move-marker org-last-heading-marker (point))))
  8237. (beginning-of-line 1)
  8238. (save-window-excursion
  8239. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8240. (when (org-bound-and-true-p org-clock-out-when-done)
  8241. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8242. newhead)
  8243. (org-agenda-unmark-clocking-task))
  8244. (org-move-to-column col)
  8245. (org-agenda-mark-clocking-task))))
  8246. (defun org-agenda-add-note (&optional arg)
  8247. "Add a time-stamped note to the entry at point."
  8248. (interactive "P")
  8249. (org-agenda-check-no-diary)
  8250. (let* ((marker (or (org-get-at-bol 'org-marker)
  8251. (org-agenda-error)))
  8252. (buffer (marker-buffer marker))
  8253. (pos (marker-position marker))
  8254. (hdmarker (org-get-at-bol 'org-hd-marker))
  8255. (inhibit-read-only t))
  8256. (with-current-buffer buffer
  8257. (widen)
  8258. (goto-char pos)
  8259. (org-show-context 'agenda)
  8260. (save-excursion
  8261. (and (outline-next-heading)
  8262. (org-flag-heading nil))) ; show the next heading
  8263. (org-add-note))))
  8264. (defun org-agenda-change-all-lines (newhead hdmarker
  8265. &optional fixface just-this)
  8266. "Change all lines in the agenda buffer which match HDMARKER.
  8267. The new content of the line will be NEWHEAD (as modified by
  8268. `org-agenda-format-item'). HDMARKER is checked with
  8269. `equal' against all `org-hd-marker' text properties in the file.
  8270. If FIXFACE is non-nil, the face of each item is modified according to
  8271. the new TODO state.
  8272. If JUST-THIS is non-nil, change just the current line, not all.
  8273. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8274. (let* ((inhibit-read-only t)
  8275. (line (org-current-line))
  8276. (org-agenda-buffer (current-buffer))
  8277. (thetags (with-current-buffer (marker-buffer hdmarker)
  8278. (save-excursion (save-restriction (widen)
  8279. (goto-char hdmarker)
  8280. (org-get-tags-at)))))
  8281. props m pl undone-face done-face finish new dotime level cat tags)
  8282. (save-excursion
  8283. (goto-char (point-max))
  8284. (beginning-of-line 1)
  8285. (while (not finish)
  8286. (setq finish (bobp))
  8287. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8288. (or (not just-this) (= (org-current-line) line))
  8289. (equal m hdmarker))
  8290. (setq props (text-properties-at (point))
  8291. dotime (org-get-at-bol 'dotime)
  8292. cat (org-get-at-eol 'org-category 1)
  8293. level (org-get-at-bol 'level)
  8294. tags thetags
  8295. new
  8296. (let ((org-prefix-format-compiled
  8297. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8298. org-prefix-format-compiled))
  8299. (extra (org-get-at-bol 'extra)))
  8300. (with-current-buffer (marker-buffer hdmarker)
  8301. (save-excursion
  8302. (save-restriction
  8303. (widen)
  8304. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8305. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8306. undone-face (org-get-at-bol 'undone-face)
  8307. done-face (org-get-at-bol 'done-face))
  8308. (beginning-of-line 1)
  8309. (cond
  8310. ((equal new "")
  8311. (and (looking-at ".*\n?") (replace-match "")))
  8312. ((looking-at ".*")
  8313. (replace-match new t t)
  8314. (beginning-of-line 1)
  8315. (add-text-properties (point-at-bol) (point-at-eol) props)
  8316. (when fixface
  8317. (add-text-properties
  8318. (point-at-bol) (point-at-eol)
  8319. (list 'face
  8320. (if org-last-todo-state-is-todo
  8321. undone-face done-face))))
  8322. (org-agenda-highlight-todo 'line)
  8323. (beginning-of-line 1))
  8324. (t (error "Line update did not work")))
  8325. (save-restriction
  8326. (narrow-to-region (point-at-bol) (point-at-eol))
  8327. (org-agenda-finalize)))
  8328. (beginning-of-line 0)))))
  8329. (defun org-agenda-align-tags (&optional line)
  8330. "Align all tags in agenda items to `org-agenda-tags-column'."
  8331. (let ((inhibit-read-only t) l c)
  8332. (save-excursion
  8333. (goto-char (if line (point-at-bol) (point-min)))
  8334. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8335. (if line (point-at-eol) nil) t)
  8336. (add-text-properties
  8337. (match-beginning 2) (match-end 2)
  8338. (list 'face (delq nil (let ((prop (get-text-property
  8339. (match-beginning 2) 'face)))
  8340. (or (listp prop) (setq prop (list prop)))
  8341. (if (memq 'org-tag prop)
  8342. prop
  8343. (cons 'org-tag prop))))))
  8344. (setq l (- (match-end 2) (match-beginning 2))
  8345. c (if (< org-agenda-tags-column 0)
  8346. (- (abs org-agenda-tags-column) l)
  8347. org-agenda-tags-column))
  8348. (delete-region (match-beginning 1) (match-end 1))
  8349. (goto-char (match-beginning 1))
  8350. (insert (org-add-props
  8351. (make-string (max 1 (- c (current-column))) ?\ )
  8352. (plist-put (copy-sequence (text-properties-at (point)))
  8353. 'face nil))))
  8354. (goto-char (point-min))
  8355. (org-font-lock-add-tag-faces (point-max)))))
  8356. (defun org-agenda-priority-up ()
  8357. "Increase the priority of line at point, also in Org-mode file."
  8358. (interactive)
  8359. (org-agenda-priority 'up))
  8360. (defun org-agenda-priority-down ()
  8361. "Decrease the priority of line at point, also in Org-mode file."
  8362. (interactive)
  8363. (org-agenda-priority 'down))
  8364. (defun org-agenda-priority (&optional force-direction)
  8365. "Set the priority of line at point, also in Org-mode file.
  8366. This changes the line at point, all other lines in the agenda referring to
  8367. the same tree node, and the headline of the tree node in the Org-mode file.
  8368. Called with a universal prefix arg, show the priority instead of setting it."
  8369. (interactive "P")
  8370. (if (equal force-direction '(4))
  8371. (org-show-priority)
  8372. (unless org-enable-priority-commands
  8373. (error "Priority commands are disabled"))
  8374. (org-agenda-check-no-diary)
  8375. (let* ((col (current-column))
  8376. (marker (or (org-get-at-bol 'org-marker)
  8377. (org-agenda-error)))
  8378. (hdmarker (org-get-at-bol 'org-hd-marker))
  8379. (buffer (marker-buffer hdmarker))
  8380. (pos (marker-position hdmarker))
  8381. (inhibit-read-only t)
  8382. newhead)
  8383. (org-with-remote-undo buffer
  8384. (with-current-buffer buffer
  8385. (widen)
  8386. (goto-char pos)
  8387. (org-show-context 'agenda)
  8388. (save-excursion
  8389. (and (outline-next-heading)
  8390. (org-flag-heading nil))) ; show the next heading
  8391. (funcall 'org-priority force-direction)
  8392. (end-of-line 1)
  8393. (setq newhead (org-get-heading)))
  8394. (org-agenda-change-all-lines newhead hdmarker)
  8395. (org-move-to-column col)))))
  8396. ;; FIXME: should fix the tags property of the agenda line.
  8397. (defun org-agenda-set-tags (&optional tag onoff)
  8398. "Set tags for the current headline."
  8399. (interactive)
  8400. (org-agenda-check-no-diary)
  8401. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8402. (call-interactively 'org-change-tag-in-region)
  8403. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8404. (org-agenda-error)))
  8405. (buffer (marker-buffer hdmarker))
  8406. (pos (marker-position hdmarker))
  8407. (inhibit-read-only t)
  8408. newhead)
  8409. (org-with-remote-undo buffer
  8410. (with-current-buffer buffer
  8411. (widen)
  8412. (goto-char pos)
  8413. (save-excursion
  8414. (org-show-context 'agenda))
  8415. (save-excursion
  8416. (and (outline-next-heading)
  8417. (org-flag-heading nil))) ; show the next heading
  8418. (goto-char pos)
  8419. (if tag
  8420. (org-toggle-tag tag onoff)
  8421. (call-interactively 'org-set-tags))
  8422. (end-of-line 1)
  8423. (setq newhead (org-get-heading)))
  8424. (org-agenda-change-all-lines newhead hdmarker)
  8425. (beginning-of-line 1)))))
  8426. (defun org-agenda-set-property ()
  8427. "Set a property for the current headline."
  8428. (interactive)
  8429. (org-agenda-check-no-diary)
  8430. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8431. (org-agenda-error)))
  8432. (buffer (marker-buffer hdmarker))
  8433. (pos (marker-position hdmarker))
  8434. (inhibit-read-only t)
  8435. newhead)
  8436. (org-with-remote-undo buffer
  8437. (with-current-buffer buffer
  8438. (widen)
  8439. (goto-char pos)
  8440. (save-excursion
  8441. (org-show-context 'agenda))
  8442. (save-excursion
  8443. (and (outline-next-heading)
  8444. (org-flag-heading nil))) ; show the next heading
  8445. (goto-char pos)
  8446. (call-interactively 'org-set-property)))))
  8447. (defun org-agenda-set-effort ()
  8448. "Set the effort property for the current headline."
  8449. (interactive)
  8450. (org-agenda-check-no-diary)
  8451. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8452. (org-agenda-error)))
  8453. (buffer (marker-buffer hdmarker))
  8454. (pos (marker-position hdmarker))
  8455. (inhibit-read-only t)
  8456. newhead)
  8457. (org-with-remote-undo buffer
  8458. (with-current-buffer buffer
  8459. (widen)
  8460. (goto-char pos)
  8461. (save-excursion
  8462. (org-show-context 'agenda))
  8463. (save-excursion
  8464. (and (outline-next-heading)
  8465. (org-flag-heading nil))) ; show the next heading
  8466. (goto-char pos)
  8467. (call-interactively 'org-set-effort)
  8468. (end-of-line 1)
  8469. (setq newhead (org-get-heading)))
  8470. (org-agenda-change-all-lines newhead hdmarker))))
  8471. (defun org-agenda-toggle-archive-tag ()
  8472. "Toggle the archive tag for the current entry."
  8473. (interactive)
  8474. (org-agenda-check-no-diary)
  8475. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8476. (org-agenda-error)))
  8477. (buffer (marker-buffer hdmarker))
  8478. (pos (marker-position hdmarker))
  8479. (inhibit-read-only t)
  8480. newhead)
  8481. (org-with-remote-undo buffer
  8482. (with-current-buffer buffer
  8483. (widen)
  8484. (goto-char pos)
  8485. (org-show-context 'agenda)
  8486. (save-excursion
  8487. (and (outline-next-heading)
  8488. (org-flag-heading nil))) ; show the next heading
  8489. (call-interactively 'org-toggle-archive-tag)
  8490. (end-of-line 1)
  8491. (setq newhead (org-get-heading)))
  8492. (org-agenda-change-all-lines newhead hdmarker)
  8493. (beginning-of-line 1))))
  8494. (defun org-agenda-do-date-later (arg)
  8495. (interactive "P")
  8496. (cond
  8497. ((or (equal arg '(16))
  8498. (memq last-command
  8499. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8500. (setq this-command 'org-agenda-date-later-minutes)
  8501. (org-agenda-date-later-minutes 1))
  8502. ((or (equal arg '(4))
  8503. (memq last-command
  8504. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8505. (setq this-command 'org-agenda-date-later-hours)
  8506. (org-agenda-date-later-hours 1))
  8507. (t
  8508. (org-agenda-date-later (prefix-numeric-value arg)))))
  8509. (defun org-agenda-do-date-earlier (arg)
  8510. (interactive "P")
  8511. (cond
  8512. ((or (equal arg '(16))
  8513. (memq last-command
  8514. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8515. (setq this-command 'org-agenda-date-earlier-minutes)
  8516. (org-agenda-date-earlier-minutes 1))
  8517. ((or (equal arg '(4))
  8518. (memq last-command
  8519. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8520. (setq this-command 'org-agenda-date-earlier-hours)
  8521. (org-agenda-date-earlier-hours 1))
  8522. (t
  8523. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8524. (defun org-agenda-date-later (arg &optional what)
  8525. "Change the date of this item to ARG day(s) later."
  8526. (interactive "p")
  8527. (org-agenda-check-type t 'agenda 'timeline)
  8528. (org-agenda-check-no-diary)
  8529. (let* ((marker (or (org-get-at-bol 'org-marker)
  8530. (org-agenda-error)))
  8531. (buffer (marker-buffer marker))
  8532. (pos (marker-position marker))
  8533. cdate today)
  8534. (org-with-remote-undo buffer
  8535. (with-current-buffer buffer
  8536. (widen)
  8537. (goto-char pos)
  8538. (if (not (org-at-timestamp-p))
  8539. (error "Cannot find time stamp"))
  8540. (when (and org-agenda-move-date-from-past-immediately-to-today
  8541. (equal arg 1)
  8542. (or (not what) (eq what 'day))
  8543. (not (save-match-data (org-at-date-range-p))))
  8544. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8545. cdate (calendar-absolute-from-gregorian
  8546. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8547. today (org-today))
  8548. (if (> today cdate)
  8549. ;; immediately shift to today
  8550. (setq arg (- today cdate))))
  8551. (org-timestamp-change arg (or what 'day))
  8552. (when (and (org-at-date-range-p)
  8553. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8554. (let ((end org-last-changed-timestamp))
  8555. (org-timestamp-change arg (or what 'day))
  8556. (setq org-last-changed-timestamp
  8557. (concat org-last-changed-timestamp "--" end)))))
  8558. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8559. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8560. (defun org-agenda-date-earlier (arg &optional what)
  8561. "Change the date of this item to ARG day(s) earlier."
  8562. (interactive "p")
  8563. (org-agenda-date-later (- arg) what))
  8564. (defun org-agenda-date-later-minutes (arg)
  8565. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8566. (interactive "p")
  8567. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8568. (org-agenda-date-later arg 'minute))
  8569. (defun org-agenda-date-earlier-minutes (arg)
  8570. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8571. (interactive "p")
  8572. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8573. (org-agenda-date-earlier arg 'minute))
  8574. (defun org-agenda-date-later-hours (arg)
  8575. "Change the time of this item, in hour steps."
  8576. (interactive "p")
  8577. (org-agenda-date-later arg 'hour))
  8578. (defun org-agenda-date-earlier-hours (arg)
  8579. "Change the time of this item, in hour steps."
  8580. (interactive "p")
  8581. (org-agenda-date-earlier arg 'hour))
  8582. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8583. "Show new date stamp via text properties."
  8584. ;; We use text properties to make this undoable
  8585. (let ((inhibit-read-only t))
  8586. (setq stamp (concat prefix " => " stamp " "))
  8587. (save-excursion
  8588. (goto-char (point-max))
  8589. (while (not (bobp))
  8590. (when (equal marker (org-get-at-bol 'org-marker))
  8591. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8592. (org-move-to-column (- (window-width) (length stamp)) t)
  8593. (if (featurep 'xemacs)
  8594. ;; Use `duplicable' property to trigger undo recording
  8595. (let ((ex (make-extent nil nil))
  8596. (gl (make-glyph stamp)))
  8597. (set-glyph-face gl 'secondary-selection)
  8598. (set-extent-properties
  8599. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8600. (insert-extent ex (1- (point)) (point-at-eol)))
  8601. (add-text-properties
  8602. (1- (point)) (point-at-eol)
  8603. (list 'display (org-add-props stamp nil
  8604. 'face '(secondary-selection default)))))
  8605. (beginning-of-line 1))
  8606. (beginning-of-line 0)))))
  8607. (defun org-agenda-date-prompt (arg)
  8608. "Change the date of this item. Date is prompted for, with default today.
  8609. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8610. be used to request time specification in the time stamp."
  8611. (interactive "P")
  8612. (org-agenda-check-type t 'agenda 'timeline)
  8613. (org-agenda-check-no-diary)
  8614. (let* ((marker (or (org-get-at-bol 'org-marker)
  8615. (org-agenda-error)))
  8616. (buffer (marker-buffer marker))
  8617. (pos (marker-position marker)))
  8618. (org-with-remote-undo buffer
  8619. (with-current-buffer buffer
  8620. (widen)
  8621. (goto-char pos)
  8622. (if (not (org-at-timestamp-p t))
  8623. (error "Cannot find time stamp"))
  8624. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8625. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8626. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8627. (defun org-agenda-schedule (arg &optional time)
  8628. "Schedule the item at point.
  8629. ARG is passed through to `org-schedule'."
  8630. (interactive "P")
  8631. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8632. (org-agenda-check-no-diary)
  8633. (let* ((marker (or (org-get-at-bol 'org-marker)
  8634. (org-agenda-error)))
  8635. (type (marker-insertion-type marker))
  8636. (buffer (marker-buffer marker))
  8637. (pos (marker-position marker))
  8638. ts)
  8639. (set-marker-insertion-type marker t)
  8640. (org-with-remote-undo buffer
  8641. (with-current-buffer buffer
  8642. (widen)
  8643. (goto-char pos)
  8644. (setq ts (org-schedule arg time)))
  8645. (org-agenda-show-new-time marker ts " S"))
  8646. (message "%s" ts)))
  8647. (defun org-agenda-deadline (arg &optional time)
  8648. "Schedule the item at point.
  8649. ARG is passed through to `org-deadline'."
  8650. (interactive "P")
  8651. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8652. (org-agenda-check-no-diary)
  8653. (let* ((marker (or (org-get-at-bol 'org-marker)
  8654. (org-agenda-error)))
  8655. (buffer (marker-buffer marker))
  8656. (pos (marker-position marker))
  8657. ts)
  8658. (org-with-remote-undo buffer
  8659. (with-current-buffer buffer
  8660. (widen)
  8661. (goto-char pos)
  8662. (setq ts (org-deadline arg time)))
  8663. (org-agenda-show-new-time marker ts " D"))
  8664. (message "%s" ts)))
  8665. (defun org-agenda-clock-in (&optional arg)
  8666. "Start the clock on the currently selected item."
  8667. (interactive "P")
  8668. (org-agenda-check-no-diary)
  8669. (if (equal arg '(4))
  8670. (org-clock-in arg)
  8671. (let* ((marker (or (org-get-at-bol 'org-marker)
  8672. (org-agenda-error)))
  8673. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8674. (pos (marker-position marker))
  8675. (col (current-column))
  8676. newhead)
  8677. (org-with-remote-undo (marker-buffer marker)
  8678. (with-current-buffer (marker-buffer marker)
  8679. (widen)
  8680. (goto-char pos)
  8681. (org-show-context 'agenda)
  8682. (org-show-entry)
  8683. (org-cycle-hide-drawers 'children)
  8684. (org-clock-in arg)
  8685. (setq newhead (org-get-heading)))
  8686. (org-agenda-change-all-lines newhead hdmarker))
  8687. (org-move-to-column col))))
  8688. (defun org-agenda-clock-out ()
  8689. "Stop the currently running clock."
  8690. (interactive)
  8691. (unless (marker-buffer org-clock-marker)
  8692. (error "No running clock"))
  8693. (let ((marker (make-marker)) (col (current-column)) newhead)
  8694. (org-with-remote-undo (marker-buffer org-clock-marker)
  8695. (with-current-buffer (marker-buffer org-clock-marker)
  8696. (save-excursion
  8697. (save-restriction
  8698. (widen)
  8699. (goto-char org-clock-marker)
  8700. (org-back-to-heading t)
  8701. (move-marker marker (point))
  8702. (org-clock-out)
  8703. (setq newhead (org-get-heading))))))
  8704. (org-agenda-change-all-lines newhead marker)
  8705. (move-marker marker nil)
  8706. (org-move-to-column col)
  8707. (org-agenda-unmark-clocking-task)))
  8708. (defun org-agenda-clock-cancel (&optional arg)
  8709. "Cancel the currently running clock."
  8710. (interactive "P")
  8711. (unless (marker-buffer org-clock-marker)
  8712. (user-error "No running clock"))
  8713. (org-with-remote-undo (marker-buffer org-clock-marker)
  8714. (org-clock-cancel)))
  8715. (defun org-agenda-clock-goto ()
  8716. "Jump to the currently clocked in task within the agenda.
  8717. If the currently clocked in task is not listed in the agenda
  8718. buffer, display it in another window."
  8719. (interactive)
  8720. (let (pos)
  8721. (mapc (lambda (o)
  8722. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8723. (setq pos (overlay-start o))))
  8724. (overlays-in (point-min) (point-max)))
  8725. (cond (pos (goto-char pos))
  8726. ;; If the currently clocked entry is not in the agenda
  8727. ;; buffer, we visit it in another window:
  8728. (org-clock-current-task
  8729. (org-switch-to-buffer-other-window (org-clock-goto)))
  8730. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8731. (defun org-agenda-diary-entry-in-org-file ()
  8732. "Make a diary entry in the file `org-agenda-diary-file'."
  8733. (let (d1 d2 char (text "") dp1 dp2)
  8734. (if (equal (buffer-name) "*Calendar*")
  8735. (setq d1 (calendar-cursor-to-date t)
  8736. d2 (car calendar-mark-ring))
  8737. (setq dp1 (get-text-property (point-at-bol) 'day))
  8738. (unless dp1 (user-error "No date defined in current line"))
  8739. (setq d1 (calendar-gregorian-from-absolute dp1)
  8740. d2 (and (ignore-errors (mark))
  8741. (save-excursion
  8742. (goto-char (mark))
  8743. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8744. (calendar-gregorian-from-absolute dp2))))
  8745. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8746. (setq char (read-char-exclusive))
  8747. (cond
  8748. ((equal char ?d)
  8749. (setq text (read-string "Day entry: "))
  8750. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8751. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8752. ((equal char ?a)
  8753. (setq d1 (list (car d1) (nth 1 d1)
  8754. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8755. (nth 2 d1))))
  8756. (setq text (read-string "Anniversary (use %d to show years): "))
  8757. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8758. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8759. ((equal char ?b)
  8760. (setq text (read-string "Block entry: "))
  8761. (unless (and d1 d2 (not (equal d1 d2)))
  8762. (user-error "No block of days selected"))
  8763. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8764. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8765. ((equal char ?j)
  8766. (org-switch-to-buffer-other-window
  8767. (find-file-noselect org-agenda-diary-file))
  8768. (require 'org-datetree)
  8769. (org-datetree-find-date-create d1)
  8770. (org-reveal t))
  8771. (t (user-error "Invalid selection character `%c'" char)))))
  8772. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8773. "Where in `org-agenda-diary-file' should new entries be added?
  8774. Valid values:
  8775. date-tree in the date tree, as child of the date
  8776. top-level as top-level entries at the end of the file."
  8777. :group 'org-agenda
  8778. :type '(choice
  8779. (const :tag "in a date tree" date-tree)
  8780. (const :tag "as top level at end of file" top-level)))
  8781. (defcustom org-agenda-insert-diary-extract-time nil
  8782. "Non-nil means extract any time specification from the diary entry."
  8783. :group 'org-agenda
  8784. :version "24.1"
  8785. :type 'boolean)
  8786. (defcustom org-agenda-bulk-mark-char ">"
  8787. "A single-character string to be used as the bulk mark."
  8788. :group 'org-agenda
  8789. :version "24.1"
  8790. :type 'string)
  8791. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8792. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8793. If TEXT is not empty, it will become the headline of the new entry, and
  8794. the resulting entry will not be shown. When TEXT is empty, switch to
  8795. `org-agenda-diary-file' and let the user finish the entry there."
  8796. (let ((cw (current-window-configuration)))
  8797. (org-switch-to-buffer-other-window
  8798. (find-file-noselect org-agenda-diary-file))
  8799. (widen)
  8800. (goto-char (point-min))
  8801. (cond
  8802. ((eq type 'anniversary)
  8803. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8804. (progn
  8805. (or (org-at-heading-p t)
  8806. (progn
  8807. (outline-next-heading)
  8808. (insert "* Anniversaries\n\n")
  8809. (beginning-of-line -1)))))
  8810. (outline-next-heading)
  8811. (org-back-over-empty-lines)
  8812. (backward-char 1)
  8813. (insert "\n")
  8814. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8815. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8816. ((eq type 'day)
  8817. (let ((org-prefix-has-time t)
  8818. (org-agenda-time-leading-zero t)
  8819. fmt time time2)
  8820. (if org-agenda-insert-diary-extract-time
  8821. ;; Use org-agenda-format-item to parse text for a time-range and
  8822. ;; remove it. FIXME: This is a hack, we should refactor
  8823. ;; that function to make time extraction available separately
  8824. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8825. time (get-text-property 0 'time fmt)
  8826. time2 (if (> (length time) 0)
  8827. ;; split-string removes trailing ...... if
  8828. ;; no end time given. First space
  8829. ;; separates time from date.
  8830. (concat " " (car (split-string time "\\.")))
  8831. nil)
  8832. text (get-text-property 0 'txt fmt)))
  8833. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8834. (org-agenda-insert-diary-as-top-level text)
  8835. (require 'org-datetree)
  8836. (org-datetree-find-date-create d1)
  8837. (org-agenda-insert-diary-make-new-entry text))
  8838. (org-insert-time-stamp (org-time-from-absolute
  8839. (calendar-absolute-from-gregorian d1))
  8840. nil nil nil nil time2))
  8841. (end-of-line 0))
  8842. ((eq type 'block)
  8843. (if (> (calendar-absolute-from-gregorian d1)
  8844. (calendar-absolute-from-gregorian d2))
  8845. (setq d1 (prog1 d2 (setq d2 d1))))
  8846. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8847. (org-agenda-insert-diary-as-top-level text)
  8848. (require 'org-datetree)
  8849. (org-datetree-find-date-create d1)
  8850. (org-agenda-insert-diary-make-new-entry text))
  8851. (org-insert-time-stamp (org-time-from-absolute
  8852. (calendar-absolute-from-gregorian d1)))
  8853. (insert "--")
  8854. (org-insert-time-stamp (org-time-from-absolute
  8855. (calendar-absolute-from-gregorian d2)))
  8856. (end-of-line 0)))
  8857. (if (string-match "\\S-" text)
  8858. (progn
  8859. (set-window-configuration cw)
  8860. (message "%s entry added to %s"
  8861. (capitalize (symbol-name type))
  8862. (abbreviate-file-name org-agenda-diary-file)))
  8863. (org-reveal t)
  8864. (message "Please finish entry here"))))
  8865. (defun org-agenda-insert-diary-as-top-level (text)
  8866. "Make new entry as a top-level entry at the end of the file.
  8867. Add TEXT as headline, and position the cursor in the second line so that
  8868. a timestamp can be added there."
  8869. (widen)
  8870. (goto-char (point-max))
  8871. (unless (bolp) (insert "\n"))
  8872. (org-insert-heading nil t t)
  8873. (insert text)
  8874. (org-end-of-meta-data)
  8875. (unless (bolp) (insert "\n"))
  8876. (when org-adapt-indentation (org-indent-to-column 2)))
  8877. (defun org-agenda-insert-diary-make-new-entry (text)
  8878. "Make a new entry with TEXT as the first child of the current subtree.
  8879. Position the point in the heading's first body line so that
  8880. a timestamp can be added there."
  8881. (outline-next-heading)
  8882. (org-back-over-empty-lines)
  8883. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8884. (org-insert-heading nil t)
  8885. (org-do-demote)
  8886. (let ((col (current-column)))
  8887. (insert text)
  8888. (org-end-of-meta-data)
  8889. ;; Ensure point is left on a blank line, at proper indentation.
  8890. (unless (bolp) (insert "\n"))
  8891. (unless (org-looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8892. (when org-adapt-indentation (org-indent-to-column col)))
  8893. (let ((org-show-following-heading t)
  8894. (org-show-siblings t)
  8895. (org-show-hierarchy-above t)
  8896. (org-show-entry-below t))
  8897. (org-show-context)))
  8898. (defun org-agenda-diary-entry ()
  8899. "Make a diary entry, like the `i' command from the calendar.
  8900. All the standard commands work: block, weekly etc.
  8901. When `org-agenda-diary-file' points to a file,
  8902. `org-agenda-diary-entry-in-org-file' is called instead to create
  8903. entries in that Org-mode file."
  8904. (interactive)
  8905. (if (not (eq org-agenda-diary-file 'diary-file))
  8906. (org-agenda-diary-entry-in-org-file)
  8907. (require 'diary-lib)
  8908. (let* ((char (progn
  8909. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8910. (read-char-exclusive)))
  8911. (cmd (cdr (assoc char
  8912. '((?d . diary-insert-entry)
  8913. (?w . diary-insert-weekly-entry)
  8914. (?m . diary-insert-monthly-entry)
  8915. (?y . diary-insert-yearly-entry)
  8916. (?a . diary-insert-anniversary-entry)
  8917. (?b . diary-insert-block-entry)
  8918. (?c . diary-insert-cyclic-entry)))))
  8919. (oldf (symbol-function 'calendar-cursor-to-date))
  8920. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8921. (point (point))
  8922. (mark (or (mark t) (point))))
  8923. (unless cmd
  8924. (user-error "No command associated with <%c>" char))
  8925. (unless (and (get-text-property point 'day)
  8926. (or (not (equal ?b char))
  8927. (get-text-property mark 'day)))
  8928. (user-error "Don't know which date to use for diary entry"))
  8929. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8930. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8931. (let ((calendar-mark-ring
  8932. (list (calendar-gregorian-from-absolute
  8933. (or (get-text-property mark 'day)
  8934. (get-text-property point 'day))))))
  8935. (unwind-protect
  8936. (progn
  8937. (fset 'calendar-cursor-to-date
  8938. (lambda (&optional error dummy)
  8939. (calendar-gregorian-from-absolute
  8940. (get-text-property point 'day))))
  8941. (call-interactively cmd))
  8942. (fset 'calendar-cursor-to-date oldf))))))
  8943. (defun org-agenda-execute-calendar-command (cmd)
  8944. "Execute a calendar command from the agenda with date from cursor."
  8945. (org-agenda-check-type t 'agenda 'timeline)
  8946. (require 'diary-lib)
  8947. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8948. (user-error "Don't know which date to use for the calendar command"))
  8949. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8950. (point (point))
  8951. (date (calendar-gregorian-from-absolute
  8952. (get-text-property point 'day)))
  8953. ;; the following 2 vars are needed in the calendar
  8954. (displayed-month (car date))
  8955. (displayed-year (nth 2 date)))
  8956. (unwind-protect
  8957. (progn
  8958. (fset 'calendar-cursor-to-date
  8959. (lambda (&optional error dummy)
  8960. (calendar-gregorian-from-absolute
  8961. (get-text-property point 'day))))
  8962. (call-interactively cmd))
  8963. (fset 'calendar-cursor-to-date oldf))))
  8964. (defun org-agenda-phases-of-moon ()
  8965. "Display the phases of the moon for the 3 months around the cursor date."
  8966. (interactive)
  8967. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  8968. (defun org-agenda-holidays ()
  8969. "Display the holidays for the 3 months around the cursor date."
  8970. (interactive)
  8971. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  8972. (defvar calendar-longitude) ; defined in calendar.el
  8973. (defvar calendar-latitude) ; defined in calendar.el
  8974. (defvar calendar-location-name) ; defined in calendar.el
  8975. (defun org-agenda-sunrise-sunset (arg)
  8976. "Display sunrise and sunset for the cursor date.
  8977. Latitude and longitude can be specified with the variables
  8978. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8979. argument, latitude and longitude will be prompted for."
  8980. (interactive "P")
  8981. (require 'solar)
  8982. (let ((calendar-longitude (if arg nil calendar-longitude))
  8983. (calendar-latitude (if arg nil calendar-latitude))
  8984. (calendar-location-name
  8985. (if arg "the given coordinates" calendar-location-name)))
  8986. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8987. (defun org-agenda-goto-calendar ()
  8988. "Open the Emacs calendar with the date at the cursor."
  8989. (interactive)
  8990. (org-agenda-check-type t 'agenda 'timeline)
  8991. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8992. (user-error "Don't know which date to open in calendar")))
  8993. (date (calendar-gregorian-from-absolute day))
  8994. (calendar-move-hook nil)
  8995. (calendar-view-holidays-initially-flag nil)
  8996. (calendar-view-diary-initially-flag nil))
  8997. (calendar)
  8998. (calendar-goto-date date)))
  8999. ;;;###autoload
  9000. (defun org-calendar-goto-agenda ()
  9001. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  9002. This is a command that has to be installed in `calendar-mode-map'."
  9003. (interactive)
  9004. ;; Temporarily disable sticky agenda since user clearly wants to
  9005. ;; refresh view anyway.
  9006. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9007. (org-agenda-sticky nil))
  9008. (org-agenda-list nil (calendar-absolute-from-gregorian
  9009. (calendar-cursor-to-date))
  9010. nil)))
  9011. (defun org-agenda-convert-date ()
  9012. (interactive)
  9013. (org-agenda-check-type t 'agenda 'timeline)
  9014. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9015. date s)
  9016. (unless day
  9017. (user-error "Don't know which date to convert"))
  9018. (setq date (calendar-gregorian-from-absolute day))
  9019. (setq s (concat
  9020. "Gregorian: " (calendar-date-string date) "\n"
  9021. "ISO: " (calendar-iso-date-string date) "\n"
  9022. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9023. "Julian: " (calendar-julian-date-string date) "\n"
  9024. "Astron. JD: " (calendar-astro-date-string date)
  9025. " (Julian date number at noon UTC)\n"
  9026. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9027. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9028. "French: " (calendar-french-date-string date) "\n"
  9029. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  9030. "Mayan: " (calendar-mayan-date-string date) "\n"
  9031. "Coptic: " (calendar-coptic-date-string date) "\n"
  9032. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9033. "Persian: " (calendar-persian-date-string date) "\n"
  9034. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9035. (with-output-to-temp-buffer "*Dates*"
  9036. (princ s))
  9037. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9038. ;;; Bulk commands
  9039. (defun org-agenda-bulk-marked-p ()
  9040. (eq (get-char-property (point-at-bol) 'type)
  9041. 'org-marked-entry-overlay))
  9042. (defun org-agenda-bulk-mark (&optional arg)
  9043. "Mark the entry at point for future bulk action."
  9044. (interactive "p")
  9045. (dotimes (i (or arg 1))
  9046. (unless (org-get-at-bol 'org-agenda-diary-link)
  9047. (let* ((m (org-get-at-bol 'org-hd-marker))
  9048. ov)
  9049. (unless (org-agenda-bulk-marked-p)
  9050. (unless m (user-error "Nothing to mark at point"))
  9051. (push m org-agenda-bulk-marked-entries)
  9052. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9053. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9054. (org-get-todo-face "TODO")
  9055. 'evaporate)
  9056. (overlay-put ov 'type 'org-marked-entry-overlay))
  9057. (end-of-line 1)
  9058. (or (ignore-errors
  9059. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9060. (beginning-of-line 2))
  9061. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9062. (beginning-of-line 2))
  9063. (message "%d entries marked for bulk action"
  9064. (length org-agenda-bulk-marked-entries))))))
  9065. (defun org-agenda-bulk-mark-all ()
  9066. "Mark all entries for future agenda bulk action."
  9067. (interactive)
  9068. (org-agenda-bulk-mark-regexp "."))
  9069. (defun org-agenda-bulk-mark-regexp (regexp)
  9070. "Mark entries matching REGEXP for future agenda bulk action."
  9071. (interactive "sMark entries matching regexp: ")
  9072. (let ((entries-marked 0) txt-at-point)
  9073. (save-excursion
  9074. (goto-char (point-min))
  9075. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9076. (while (and (re-search-forward regexp nil t)
  9077. (setq txt-at-point (get-text-property (point) 'txt)))
  9078. (when (string-match regexp txt-at-point)
  9079. (setq entries-marked (1+ entries-marked))
  9080. (call-interactively 'org-agenda-bulk-mark))))
  9081. (if (not entries-marked)
  9082. (message "No entry matching this regexp."))))
  9083. (defun org-agenda-bulk-unmark (&optional arg)
  9084. "Unmark the entry at point for future bulk action."
  9085. (interactive "P")
  9086. (if arg
  9087. (org-agenda-bulk-unmark-all)
  9088. (cond ((org-agenda-bulk-marked-p)
  9089. (org-agenda-bulk-remove-overlays
  9090. (point-at-bol) (+ 2 (point-at-bol)))
  9091. (setq org-agenda-bulk-marked-entries
  9092. (delete (org-get-at-bol 'org-hd-marker)
  9093. org-agenda-bulk-marked-entries))
  9094. (end-of-line 1)
  9095. (or (ignore-errors
  9096. (goto-char (next-single-property-change (point) 'txt)))
  9097. (beginning-of-line 2))
  9098. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9099. (beginning-of-line 2))
  9100. (message "%d entries left marked for bulk action"
  9101. (length org-agenda-bulk-marked-entries)))
  9102. (t (message "No entry to unmark here")))))
  9103. (defun org-agenda-bulk-toggle-all ()
  9104. "Toggle all marks for bulk action."
  9105. (interactive)
  9106. (save-excursion
  9107. (goto-char (point-min))
  9108. (while (ignore-errors
  9109. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9110. (org-agenda-bulk-toggle))))
  9111. (defun org-agenda-bulk-toggle ()
  9112. "Toggle the mark at point for bulk action."
  9113. (interactive)
  9114. (if (org-agenda-bulk-marked-p)
  9115. (org-agenda-bulk-unmark)
  9116. (org-agenda-bulk-mark)))
  9117. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9118. "Remove the mark overlays between BEG and END in the agenda buffer.
  9119. BEG and END default to the buffer limits.
  9120. This only removes the overlays, it does not remove the markers
  9121. from the list in `org-agenda-bulk-marked-entries'."
  9122. (interactive)
  9123. (mapc (lambda (ov)
  9124. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9125. (delete-overlay ov)))
  9126. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9127. (defun org-agenda-bulk-unmark-all ()
  9128. "Remove all marks in the agenda buffer.
  9129. This will remove the markers and the overlays."
  9130. (interactive)
  9131. (if (null org-agenda-bulk-marked-entries)
  9132. (message "No entry to unmark")
  9133. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9134. (setq org-agenda-bulk-marked-entries nil)
  9135. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9136. (defcustom org-agenda-persistent-marks nil
  9137. "Non-nil means marked items will stay marked after a bulk action.
  9138. You can toggle this interactively by typing `p' when prompted for a
  9139. bulk action."
  9140. :group 'org-agenda
  9141. :version "24.1"
  9142. :type 'boolean)
  9143. (defun org-agenda-bulk-action (&optional arg)
  9144. "Execute an remote-editing action on all marked entries.
  9145. The prefix arg is passed through to the command if possible."
  9146. (interactive "P")
  9147. ;; Make sure we have markers, and only valid ones
  9148. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9149. (mapc
  9150. (lambda (m)
  9151. (unless (and (markerp m)
  9152. (marker-buffer m)
  9153. (buffer-live-p (marker-buffer m))
  9154. (marker-position m))
  9155. (user-error "Marker %s for bulk command is invalid" m)))
  9156. org-agenda-bulk-marked-entries)
  9157. ;; Prompt for the bulk command
  9158. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9159. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9160. "[S]catter [f]unction "
  9161. (when org-agenda-bulk-custom-functions
  9162. (concat " Custom: ["
  9163. (mapconcat (lambda(f) (char-to-string (car f)))
  9164. org-agenda-bulk-custom-functions "")
  9165. "]"))))
  9166. (catch 'exit
  9167. (let* ((action (read-char-exclusive))
  9168. (org-log-refile (if org-log-refile 'time nil))
  9169. (entries (reverse org-agenda-bulk-marked-entries))
  9170. (org-overriding-default-time
  9171. (if (get-text-property (point) 'org-agenda-date-header)
  9172. (org-get-cursor-date)))
  9173. redo-at-end
  9174. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9175. (cond
  9176. ((equal action ?p)
  9177. (let ((org-agenda-persistent-marks
  9178. (not org-agenda-persistent-marks)))
  9179. (org-agenda-bulk-action)
  9180. (throw 'exit nil)))
  9181. ((equal action ?$)
  9182. (setq cmd '(org-agenda-archive)))
  9183. ((equal action ?A)
  9184. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9185. ((member action '(?r ?w))
  9186. (setq rfloc (org-refile-get-location
  9187. "Refile to"
  9188. (marker-buffer (car entries))
  9189. org-refile-allow-creating-parent-nodes))
  9190. (if (nth 3 rfloc)
  9191. (setcar (nthcdr 3 rfloc)
  9192. (move-marker (make-marker) (nth 3 rfloc)
  9193. (or (get-file-buffer (nth 1 rfloc))
  9194. (find-buffer-visiting (nth 1 rfloc))
  9195. (error "This should not happen")))))
  9196. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9197. redo-at-end t))
  9198. ((equal action ?t)
  9199. (setq state (org-icompleting-read
  9200. "Todo state: "
  9201. (with-current-buffer (marker-buffer (car entries))
  9202. (mapcar 'list org-todo-keywords-1))))
  9203. (setq cmd `(let ((org-inhibit-blocking t)
  9204. (org-inhibit-logging 'note))
  9205. (org-agenda-todo ,state))))
  9206. ((memq action '(?- ?+))
  9207. (setq tag (org-icompleting-read
  9208. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9209. (with-current-buffer (marker-buffer (car entries))
  9210. (delq nil
  9211. (mapcar (lambda (x)
  9212. (if (stringp (car x)) x)) org-tag-alist)))))
  9213. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9214. ((memq action '(?s ?d))
  9215. (let* ((time
  9216. (unless arg
  9217. (org-read-date
  9218. nil nil nil
  9219. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9220. org-overriding-default-time)))
  9221. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9222. (setq cmd `(eval '(,c1 arg ,time)))))
  9223. ((equal action ?S)
  9224. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9225. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9226. (let ((days (read-number
  9227. (format "Scatter tasks across how many %sdays: "
  9228. (if arg "week" "")) 7)))
  9229. (setq cmd
  9230. `(let ((distance (1+ (random ,days))))
  9231. (if arg
  9232. (let ((dist distance)
  9233. (day-of-week
  9234. (calendar-day-of-week
  9235. (calendar-gregorian-from-absolute (org-today)))))
  9236. (dotimes (i (1+ dist))
  9237. (while (member day-of-week org-agenda-weekend-days)
  9238. (incf distance)
  9239. (incf day-of-week)
  9240. (if (= day-of-week 7)
  9241. (setq day-of-week 0)))
  9242. (incf day-of-week)
  9243. (if (= day-of-week 7)
  9244. (setq day-of-week 0)))))
  9245. ;; silently fail when try to replan a sexp entry
  9246. (condition-case nil
  9247. (let* ((date (calendar-gregorian-from-absolute
  9248. (+ (org-today) distance)))
  9249. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9250. (nth 2 date))))
  9251. (org-agenda-schedule nil time))
  9252. (error nil)))))))
  9253. ((assoc action org-agenda-bulk-custom-functions)
  9254. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9255. redo-at-end t))
  9256. ((equal action ?f)
  9257. (setq cmd (list (intern
  9258. (org-icompleting-read "Function: "
  9259. obarray 'fboundp t nil nil)))))
  9260. (t (user-error "Invalid bulk action")))
  9261. ;; Sort the markers, to make sure that parents are handled before children
  9262. (setq entries (sort entries
  9263. (lambda (a b)
  9264. (cond
  9265. ((equal (marker-buffer a) (marker-buffer b))
  9266. (< (marker-position a) (marker-position b)))
  9267. (t
  9268. (string< (buffer-name (marker-buffer a))
  9269. (buffer-name (marker-buffer b))))))))
  9270. ;; Now loop over all markers and apply cmd
  9271. (while (setq e (pop entries))
  9272. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9273. (if (not pos)
  9274. (progn (message "Skipping removed entry at %s" e)
  9275. (setq cntskip (1+ cntskip)))
  9276. (goto-char pos)
  9277. (let (org-loop-over-headlines-in-active-region)
  9278. (eval cmd))
  9279. ;; `post-command-hook' is not run yet. We make sure any
  9280. ;; pending log note is processed.
  9281. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9282. (memq 'org-add-log-note post-command-hook))
  9283. (org-add-log-note))
  9284. (setq cnt (1+ cnt))))
  9285. (when redo-at-end (org-agenda-redo))
  9286. (unless org-agenda-persistent-marks
  9287. (org-agenda-bulk-unmark-all))
  9288. (message "Acted on %d entries%s%s"
  9289. cnt
  9290. (if (= cntskip 0)
  9291. ""
  9292. (format ", skipped %d (disappeared before their turn)"
  9293. cntskip))
  9294. (if (not org-agenda-persistent-marks)
  9295. "" " (kept marked)"))))))
  9296. (defun org-agenda-capture (&optional with-time)
  9297. "Call `org-capture' with the date at point.
  9298. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9299. current HH:MM time."
  9300. (interactive "P")
  9301. (if (not (eq major-mode 'org-agenda-mode))
  9302. (user-error "You cannot do this outside of agenda buffers")
  9303. (let ((org-overriding-default-time
  9304. (org-get-cursor-date (equal with-time 1))))
  9305. (call-interactively 'org-capture))))
  9306. ;;; Dragging agenda lines forward/backward
  9307. (defun org-agenda-reapply-filters ()
  9308. "Re-apply all agenda filters."
  9309. (mapcar
  9310. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f))))
  9311. `((,org-agenda-tag-filter tag)
  9312. (,org-agenda-category-filter category)
  9313. (,org-agenda-regexp-filter regexp)
  9314. (,org-agenda-effort-filter effort)
  9315. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9316. (,(get 'org-agenda-category-filter :preset-filter) category)
  9317. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9318. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9319. (defun org-agenda-drag-line-forward (arg &optional backward)
  9320. "Drag an agenda line forward by ARG lines.
  9321. When the optional argument `backward' is non-nil, move backward."
  9322. (interactive "p")
  9323. (let ((inhibit-read-only t) lst line)
  9324. (if (or (not (get-text-property (point) 'txt))
  9325. (save-excursion
  9326. (dotimes (n arg)
  9327. (move-beginning-of-line (if backward 0 2))
  9328. (push (not (get-text-property (point) 'txt)) lst))
  9329. (delq nil lst)))
  9330. (message "Cannot move line forward")
  9331. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9332. (move-beginning-of-line 1)
  9333. (setq line (buffer-substring (point) end))
  9334. (delete-region (point) end)
  9335. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9336. (insert line)
  9337. (org-agenda-reapply-filters)
  9338. (org-agenda-mark-clocking-task)
  9339. (move-beginning-of-line 0)))))
  9340. (defun org-agenda-drag-line-backward (arg)
  9341. "Drag an agenda line backward by ARG lines."
  9342. (interactive "p")
  9343. (org-agenda-drag-line-forward arg t))
  9344. ;;; Flagging notes
  9345. (defun org-agenda-show-the-flagging-note ()
  9346. "Display the flagging note in the other window.
  9347. When called a second time in direct sequence, offer to remove the FLAGGING
  9348. tag and (if present) the flagging note."
  9349. (interactive)
  9350. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9351. (win (selected-window))
  9352. note heading newhead)
  9353. (unless hdmarker
  9354. (user-error "No linked entry at point"))
  9355. (if (and (eq this-command last-command)
  9356. (y-or-n-p "Unflag and remove any flagging note? "))
  9357. (progn
  9358. (org-agenda-remove-flag hdmarker)
  9359. (let ((win (get-buffer-window "*Flagging Note*")))
  9360. (and win (delete-window win)))
  9361. (message "Entry unflagged"))
  9362. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9363. (unless note
  9364. (user-error "No flagging note"))
  9365. (org-kill-new note)
  9366. (org-switch-to-buffer-other-window "*Flagging Note*")
  9367. (erase-buffer)
  9368. (insert note)
  9369. (goto-char (point-min))
  9370. (while (re-search-forward "\\\\n" nil t)
  9371. (replace-match "\n" t t))
  9372. (goto-char (point-min))
  9373. (select-window win)
  9374. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9375. (defun org-agenda-remove-flag (marker)
  9376. "Remove the FLAGGED tag and any flagging note in the entry."
  9377. (let (newhead)
  9378. (org-with-point-at marker
  9379. (org-toggle-tag "FLAGGED" 'off)
  9380. (org-entry-delete nil "THEFLAGGINGNOTE")
  9381. (setq newhead (org-get-heading)))
  9382. (org-agenda-change-all-lines newhead marker)
  9383. (message "Entry unflagged")))
  9384. (defun org-agenda-get-any-marker (&optional pos)
  9385. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9386. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9387. ;;; Appointment reminders
  9388. (defvar appt-time-msg-list) ; defined in appt.el
  9389. ;;;###autoload
  9390. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9391. "Activate appointments found in `org-agenda-files'.
  9392. With a \\[universal-argument] prefix, refresh the list of
  9393. appointments.
  9394. If FILTER is t, interactively prompt the user for a regular
  9395. expression, and filter out entries that don't match it.
  9396. If FILTER is a string, use this string as a regular expression
  9397. for filtering entries out.
  9398. If FILTER is a function, filter out entries against which
  9399. calling the function returns nil. This function takes one
  9400. argument: an entry from `org-agenda-get-day-entries'.
  9401. FILTER can also be an alist with the car of each cell being
  9402. either 'headline or 'category. For example:
  9403. '((headline \"IMPORTANT\")
  9404. (category \"Work\"))
  9405. will only add headlines containing IMPORTANT or headlines
  9406. belonging to the \"Work\" category.
  9407. ARGS are symbols indicating what kind of entries to consider.
  9408. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9409. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9410. and :timestamp entries. See the docstring of `org-diary' for
  9411. details and examples.
  9412. If an entry has a APPT_WARNTIME property, its value will be used
  9413. to override `appt-message-warning-time'."
  9414. (interactive "P")
  9415. (if refresh (setq appt-time-msg-list nil))
  9416. (if (eq filter t)
  9417. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9418. (let* ((cnt 0) ; count added events
  9419. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9420. (org-agenda-new-buffers nil)
  9421. (org-deadline-warning-days 0)
  9422. ;; Do not use `org-today' here because appt only takes
  9423. ;; time and without date as argument, so it may pass wrong
  9424. ;; information otherwise
  9425. (today (org-date-to-gregorian
  9426. (time-to-days (current-time))))
  9427. (org-agenda-restrict nil)
  9428. (files (org-agenda-files 'unrestricted)) entries file
  9429. (org-agenda-buffer nil))
  9430. ;; Get all entries which may contain an appt
  9431. (org-agenda-prepare-buffers files)
  9432. (while (setq file (pop files))
  9433. (setq entries
  9434. (delq nil
  9435. (append entries
  9436. (apply 'org-agenda-get-day-entries
  9437. file today scope)))))
  9438. ;; Map thru entries and find if we should filter them out
  9439. (mapc
  9440. (lambda(x)
  9441. (let* ((evt (org-trim
  9442. (replace-regexp-in-string
  9443. org-bracket-link-regexp "\\3"
  9444. (or (get-text-property 1 'txt x) ""))))
  9445. (cat (get-text-property (1- (length x)) 'org-category x))
  9446. (tod (get-text-property 1 'time-of-day x))
  9447. (ok (or (null filter)
  9448. (and (stringp filter) (string-match filter evt))
  9449. (and (functionp filter) (funcall filter x))
  9450. (and (listp filter)
  9451. (let ((cat-filter (cadr (assoc 'category filter)))
  9452. (evt-filter (cadr (assoc 'headline filter))))
  9453. (or (and (stringp cat-filter)
  9454. (string-match cat-filter cat))
  9455. (and (stringp evt-filter)
  9456. (string-match evt-filter evt)))))))
  9457. (wrn (get-text-property 1 'warntime x)))
  9458. ;; FIXME: Shall we remove text-properties for the appt text?
  9459. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9460. (when (and ok tod)
  9461. (setq tod (concat "00" (number-to-string tod))
  9462. tod (when (string-match
  9463. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9464. (concat (match-string 1 tod) ":"
  9465. (match-string 2 tod))))
  9466. (if (version< emacs-version "23.3")
  9467. (appt-add tod evt)
  9468. (appt-add tod evt wrn))
  9469. (setq cnt (1+ cnt))))) entries)
  9470. (org-release-buffers org-agenda-new-buffers)
  9471. (if (eq cnt 0)
  9472. (message "No event to add")
  9473. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9474. (defun org-agenda-todayp (date)
  9475. "Does DATE mean today, when considering `org-extend-today-until'?"
  9476. (let ((today (org-today))
  9477. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9478. date)))
  9479. (eq date today)))
  9480. (defun org-agenda-todo-yesterday (&optional arg)
  9481. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9482. (interactive "P")
  9483. (let* ((org-use-effective-time t)
  9484. (hour (third (decode-time
  9485. (org-current-time))))
  9486. (org-extend-today-until (1+ hour)))
  9487. (org-agenda-todo arg)))
  9488. (provide 'org-agenda)
  9489. ;;; org-agenda.el ends here