org-agenda.el 412 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2020 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'cl-lib)
  42. (require 'ol)
  43. (require 'org)
  44. (require 'org-macs)
  45. (require 'org-refile)
  46. (declare-function diary-add-to-list "diary-lib"
  47. (date string specifier &optional marker globcolor literal))
  48. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  49. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  50. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  51. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  52. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  54. (declare-function calendar-french-date-string "cal-french" (&optional date))
  55. (declare-function calendar-goto-date "cal-move" (date))
  56. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  57. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  58. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  59. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  60. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  61. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  62. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  63. (declare-function calendar-check-holidays "holidays" (date))
  64. (declare-function org-columns-remove-overlays "org-colview" ())
  65. (declare-function org-datetree-find-date-create "org-datetree"
  66. (date &optional keep-restriction))
  67. (declare-function org-columns-quit "org-colview" ())
  68. (declare-function diary-date-display-form "diary-lib" (&optional type))
  69. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  70. (declare-function org-habit-insert-consistency-graphs
  71. "org-habit" (&optional line))
  72. (declare-function org-is-habit-p "org-habit" (&optional pom))
  73. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  74. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  79. (defvar calendar-mode-map)
  80. (defvar org-clock-current-task)
  81. (defvar org-current-tag-alist)
  82. (defvar org-mobile-force-id-on-agenda-items)
  83. (defvar org-habit-show-habits)
  84. (defvar org-habit-show-habits-only-for-today)
  85. (defvar org-habit-show-all-today)
  86. (defvar org-habit-scheduled-past-days)
  87. ;; Defined somewhere in this file, but used before definition.
  88. (defvar org-agenda-buffer-name "*Org Agenda*")
  89. (defvar org-agenda-overriding-header nil)
  90. (defvar org-agenda-title-append nil)
  91. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  92. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  93. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  94. (defvar org-agenda-undo-list nil
  95. "List of undoable operations in the agenda since last refresh.")
  96. (defvar org-agenda-pending-undo-list nil
  97. "In a series of undo commands, this is the list of remaining undo items.")
  98. (defcustom org-agenda-confirm-kill 1
  99. "When set, remote killing from the agenda buffer needs confirmation.
  100. When t, a confirmation is always needed. When a number N, confirmation is
  101. only needed when the text to be killed contains more than N non-white lines."
  102. :group 'org-agenda
  103. :type '(choice
  104. (const :tag "Never" nil)
  105. (const :tag "Always" t)
  106. (integer :tag "When more than N lines")))
  107. (defcustom org-agenda-compact-blocks nil
  108. "Non-nil means make the block agenda more compact.
  109. This is done globally by leaving out lines like the agenda span
  110. name and week number or the separator lines."
  111. :group 'org-agenda
  112. :type 'boolean)
  113. (defcustom org-agenda-block-separator ?=
  114. "The separator between blocks in the agenda.
  115. If this is a string, it will be used as the separator, with a newline added.
  116. If it is a character, it will be repeated to fill the window width.
  117. If nil the separator is disabled. In `org-agenda-custom-commands' this
  118. addresses the separator between the current and the previous block."
  119. :group 'org-agenda
  120. :type '(choice
  121. (const :tag "Disabled" nil)
  122. (character)
  123. (string)))
  124. (defgroup org-agenda-export nil
  125. "Options concerning exporting agenda views in Org mode."
  126. :tag "Org Agenda Export"
  127. :group 'org-agenda)
  128. (defcustom org-agenda-with-colors t
  129. "Non-nil means use colors in agenda views."
  130. :group 'org-agenda-export
  131. :type 'boolean)
  132. (defcustom org-agenda-exporter-settings nil
  133. "Alist of variable/value pairs that should be active during agenda export.
  134. This is a good place to set options for ps-print and for htmlize.
  135. Note that the way this is implemented, the values will be evaluated
  136. before assigned to the variables. So make sure to quote values you do
  137. *not* want evaluated, for example
  138. (setq org-agenda-exporter-settings
  139. \\='((ps-print-color-p \\='black-white)))"
  140. :group 'org-agenda-export
  141. :type '(repeat
  142. (list
  143. (variable)
  144. (sexp :tag "Value"))))
  145. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  146. "Hook run in a temporary buffer before writing the agenda to an export file.
  147. A useful function for this hook is `org-agenda-add-entry-text'."
  148. :group 'org-agenda-export
  149. :type 'hook
  150. :options '(org-agenda-add-entry-text))
  151. (defcustom org-agenda-add-entry-text-maxlines 0
  152. "Maximum number of entry text lines to be added to agenda.
  153. This is only relevant when `org-agenda-add-entry-text' is part of
  154. `org-agenda-before-write-hook', which is the default.
  155. When this is 0, nothing will happen. When it is greater than 0, it
  156. specifies the maximum number of lines that will be added for each entry
  157. that is listed in the agenda view.
  158. Note that this variable is not used during display, only when exporting
  159. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  160. and `org-agenda-entry-text-maxlines'."
  161. :group 'org-agenda
  162. :type 'integer)
  163. (defcustom org-agenda-add-entry-text-descriptive-links t
  164. "Non-nil means export org-links as descriptive links in agenda added text.
  165. This variable applies to the text added to the agenda when
  166. `org-agenda-add-entry-text-maxlines' is larger than 0.
  167. When this variable nil, the URL will (also) be shown."
  168. :group 'org-agenda
  169. :type 'boolean)
  170. (defcustom org-agenda-export-html-style nil
  171. "The style specification for exported HTML Agenda files.
  172. If this variable contains a string, it will replace the default <style>
  173. section as produced by `htmlize'.
  174. Since there are different ways of setting style information, this variable
  175. needs to contain the full HTML structure to provide a style, including the
  176. surrounding HTML tags. The style specifications should include definitions
  177. the fonts used by the agenda, here is an example:
  178. <style type=\"text/css\">
  179. p { font-weight: normal; color: gray; }
  180. .org-agenda-structure {
  181. font-size: 110%;
  182. color: #003399;
  183. font-weight: 600;
  184. }
  185. .org-todo {
  186. color: #cc6666;
  187. font-weight: bold;
  188. }
  189. .org-agenda-done {
  190. color: #339933;
  191. }
  192. .org-done {
  193. color: #339933;
  194. }
  195. .title { text-align: center; }
  196. .todo, .deadline { color: red; }
  197. .done { color: green; }
  198. </style>
  199. or, if you want to keep the style in a file,
  200. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  201. As the value of this option simply gets inserted into the HTML <head> header,
  202. you can \"misuse\" it to also add other text to the header."
  203. :group 'org-agenda-export
  204. :group 'org-export-html
  205. :type '(choice
  206. (const nil)
  207. (string)))
  208. (defcustom org-agenda-persistent-filter nil
  209. "When set, keep filters from one agenda view to the next."
  210. :group 'org-agenda
  211. :type 'boolean)
  212. (defgroup org-agenda-custom-commands nil
  213. "Options concerning agenda views in Org mode."
  214. :tag "Org Agenda Custom Commands"
  215. :group 'org-agenda)
  216. (defconst org-sorting-choice
  217. '(choice
  218. (const time-up) (const time-down)
  219. (const timestamp-up) (const timestamp-down)
  220. (const scheduled-up) (const scheduled-down)
  221. (const deadline-up) (const deadline-down)
  222. (const ts-up) (const ts-down)
  223. (const tsia-up) (const tsia-down)
  224. (const category-keep) (const category-up) (const category-down)
  225. (const tag-down) (const tag-up)
  226. (const priority-up) (const priority-down)
  227. (const todo-state-up) (const todo-state-down)
  228. (const effort-up) (const effort-down)
  229. (const habit-up) (const habit-down)
  230. (const alpha-up) (const alpha-down)
  231. (const user-defined-up) (const user-defined-down))
  232. "Sorting choices.")
  233. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  234. ;; the new variable `org-agenda-tag-filter-preset'.
  235. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  236. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  237. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  238. "List of types searched for when creating the daily/weekly agenda.
  239. This variable is a list of symbols that controls the types of
  240. items that appear in the daily/weekly agenda. Allowed symbols in this
  241. list are
  242. :timestamp List items containing a date stamp or date range matching
  243. the selected date. This includes sexp entries in angular
  244. brackets.
  245. :sexp List entries resulting from plain diary-like sexps.
  246. :deadline List deadline due on that date. When the date is today,
  247. also list any deadlines past due, or due within
  248. `org-deadline-warning-days'.
  249. :deadline* Same as above, but only include the deadline if it has an
  250. hour specification as [h]h:mm.
  251. :scheduled List all items which are scheduled for the given date.
  252. The diary for *today* also contains items which were
  253. scheduled earlier and are not yet marked DONE.
  254. :scheduled* Same as above, but only include the scheduled item if it
  255. has an hour specification as [h]h:mm.
  256. By default, all four non-starred types are turned on.
  257. When :scheduled* or :deadline* are included, :schedule or :deadline
  258. will be ignored.
  259. Never set this variable globally using `setq', because then it
  260. will apply to all future agenda commands. Instead, bind it with
  261. `let' to scope it dynamically into the agenda-constructing
  262. command. A good way to set it is through options in
  263. `org-agenda-custom-commands'. For a more flexible (though
  264. somewhat less efficient) way of determining what is included in
  265. the daily/weekly agenda, see `org-agenda-skip-function'.")
  266. (defconst org-agenda-custom-commands-local-options
  267. `(repeat :tag "Local settings for this command. Remember to quote values"
  268. (choice :tag "Setting"
  269. (list :tag "Heading for this block"
  270. (const org-agenda-overriding-header)
  271. (string :tag "Headline"))
  272. (list :tag "Files to be searched"
  273. (const org-agenda-files)
  274. (list
  275. (const :format "" quote)
  276. (repeat (file))))
  277. (list :tag "Sorting strategy"
  278. (const org-agenda-sorting-strategy)
  279. (list
  280. (const :format "" quote)
  281. (repeat
  282. ,org-sorting-choice)))
  283. (list :tag "Prefix format"
  284. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  285. (string))
  286. (list :tag "Number of days in agenda"
  287. (const org-agenda-span)
  288. (list
  289. (const :format "" quote)
  290. (choice (const :tag "Day" day)
  291. (const :tag "Week" week)
  292. (const :tag "Fortnight" fortnight)
  293. (const :tag "Month" month)
  294. (const :tag "Year" year)
  295. (integer :tag "Custom"))))
  296. (list :tag "Fixed starting date"
  297. (const org-agenda-start-day)
  298. (string :value "2007-11-01"))
  299. (list :tag "Start on day of week"
  300. (const org-agenda-start-on-weekday)
  301. (choice :value 1
  302. (const :tag "Today" nil)
  303. (integer :tag "Weekday No.")))
  304. (list :tag "Include data from diary"
  305. (const org-agenda-include-diary)
  306. (boolean))
  307. (list :tag "Deadline Warning days"
  308. (const org-deadline-warning-days)
  309. (integer :value 1))
  310. (list :tag "Category filter preset"
  311. (const org-agenda-category-filter-preset)
  312. (list
  313. (const :format "" quote)
  314. (repeat
  315. (string :tag "+category or -category"))))
  316. (list :tag "Tags filter preset"
  317. (const org-agenda-tag-filter-preset)
  318. (list
  319. (const :format "" quote)
  320. (repeat
  321. (string :tag "+tag or -tag"))))
  322. (list :tag "Effort filter preset"
  323. (const org-agenda-effort-filter-preset)
  324. (list
  325. (const :format "" quote)
  326. (repeat
  327. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  328. (list :tag "Regexp filter preset"
  329. (const org-agenda-regexp-filter-preset)
  330. (list
  331. (const :format "" quote)
  332. (repeat
  333. (string :tag "+regexp or -regexp"))))
  334. (list :tag "Set daily/weekly entry types"
  335. (const org-agenda-entry-types)
  336. (list
  337. (const :format "" quote)
  338. (set :greedy t :value ,org-agenda-entry-types
  339. (const :deadline)
  340. (const :scheduled)
  341. (const :deadline*)
  342. (const :scheduled*)
  343. (const :timestamp)
  344. (const :sexp))))
  345. (list :tag "Columns format"
  346. (const org-overriding-columns-format)
  347. (string :tag "Format"))
  348. (list :tag "Standard skipping condition"
  349. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  350. (const org-agenda-skip-function)
  351. (list
  352. (const :format "" quote)
  353. (list
  354. (choice
  355. :tag "Skipping range"
  356. (const :tag "Skip entry" org-agenda-skip-entry-if)
  357. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  358. (repeat :inline t :tag "Conditions for skipping"
  359. (choice
  360. :tag "Condition type"
  361. (list :tag "Regexp matches" :inline t
  362. (const :format "" regexp)
  363. (regexp))
  364. (list :tag "Regexp does not match" :inline t
  365. (const :format "" notregexp)
  366. (regexp))
  367. (list :tag "TODO state is" :inline t
  368. (const todo)
  369. (choice
  370. (const :tag "Any not-done state" todo)
  371. (const :tag "Any done state" done)
  372. (const :tag "Any state" any)
  373. (list :tag "Keyword list"
  374. (const :format "" quote)
  375. (repeat (string :tag "Keyword")))))
  376. (list :tag "TODO state is not" :inline t
  377. (const nottodo)
  378. (choice
  379. (const :tag "Any not-done state" todo)
  380. (const :tag "Any done state" done)
  381. (const :tag "Any state" any)
  382. (list :tag "Keyword list"
  383. (const :format "" quote)
  384. (repeat (string :tag "Keyword")))))
  385. (const :tag "scheduled" scheduled)
  386. (const :tag "not scheduled" notscheduled)
  387. (const :tag "deadline" deadline)
  388. (const :tag "no deadline" notdeadline)
  389. (const :tag "timestamp" timestamp)
  390. (const :tag "no timestamp" nottimestamp))))))
  391. (list :tag "Non-standard skipping condition"
  392. :value (org-agenda-skip-function)
  393. (const org-agenda-skip-function)
  394. (sexp :tag "Function or form (quoted!)"))
  395. (list :tag "Any variable"
  396. (variable :tag "Variable")
  397. (sexp :tag "Value (sexp)"))))
  398. "Selection of examples for agenda command settings.
  399. This will be spliced into the custom type of
  400. `org-agenda-custom-commands'.")
  401. (defcustom org-agenda-custom-commands
  402. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  403. "Custom commands for the agenda.
  404. \\<org-mode-map>
  405. These commands will be offered on the splash screen displayed by the
  406. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  407. (key desc type match settings files)
  408. key The key (one or more characters as a string) to be associated
  409. with the command.
  410. desc A description of the command, when omitted or nil, a default
  411. description is built using MATCH.
  412. type The command type, any of the following symbols:
  413. agenda The daily/weekly agenda.
  414. todo Entries with a specific TODO keyword, in all agenda files.
  415. search Entries containing search words entry or headline.
  416. tags Tags/Property/TODO match in all agenda files.
  417. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  418. todo-tree Sparse tree of specific TODO keyword in *current* file.
  419. tags-tree Sparse tree with all tags matches in *current* file.
  420. occur-tree Occur sparse tree for *current* file.
  421. ... A user-defined function.
  422. match What to search for:
  423. - a single keyword for TODO keyword searches
  424. - a tags/property/todo match expression for searches
  425. - a word search expression for text searches.
  426. - a regular expression for occur searches
  427. For all other commands, this should be the empty string.
  428. settings A list of option settings, similar to that in a let form, so like
  429. this: ((opt1 val1) (opt2 val2) ...). The values will be
  430. evaluated at the moment of execution, so quote them when needed.
  431. files A list of files to write the produced agenda buffer to with
  432. the command `org-store-agenda-views'.
  433. If a file name ends in \".html\", an HTML version of the buffer
  434. is written out. If it ends in \".ps\", a postscript version is
  435. produced. Otherwise, only the plain text is written to the file.
  436. You can also define a set of commands, to create a composite agenda buffer.
  437. In this case, an entry looks like this:
  438. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  439. where
  440. desc A description string to be displayed in the dispatcher menu.
  441. cmd An agenda command, similar to the above. However, tree commands
  442. are not allowed, but instead you can get agenda and global todo list.
  443. So valid commands for a set are:
  444. (agenda \"\" settings)
  445. (alltodo \"\" settings)
  446. (stuck \"\" settings)
  447. (todo \"match\" settings files)
  448. (search \"match\" settings files)
  449. (tags \"match\" settings files)
  450. (tags-todo \"match\" settings files)
  451. Each command can carry a list of options, and another set of options can be
  452. given for the whole set of commands. Individual command options take
  453. precedence over the general options.
  454. When using several characters as key to a command, the first characters
  455. are prefix commands. For the dispatcher to display useful information, you
  456. should provide a description for the prefix, like
  457. (setq org-agenda-custom-commands
  458. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  459. (\"hl\" tags \"+HOME+Lisa\")
  460. (\"hp\" tags \"+HOME+Peter\")
  461. (\"hk\" tags \"+HOME+Kim\")))"
  462. :group 'org-agenda-custom-commands
  463. :type `(repeat
  464. (choice :value ("x" "Describe command here" tags "" nil)
  465. (list :tag "Single command"
  466. (string :tag "Access Key(s) ")
  467. (option (string :tag "Description"))
  468. (choice
  469. (const :tag "Agenda" agenda)
  470. (const :tag "TODO list" alltodo)
  471. (const :tag "Search words" search)
  472. (const :tag "Stuck projects" stuck)
  473. (const :tag "Tags/Property match (all agenda files)" tags)
  474. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  475. (const :tag "TODO keyword search (all agenda files)" todo)
  476. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  477. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  478. (const :tag "Occur tree (current buffer)" occur-tree)
  479. (sexp :tag "Other, user-defined function"))
  480. (string :tag "Match (only for some commands)")
  481. ,org-agenda-custom-commands-local-options
  482. (option (repeat :tag "Export" (file :tag "Export to"))))
  483. (list :tag "Command series, all agenda files"
  484. (string :tag "Access Key(s)")
  485. (string :tag "Description ")
  486. (repeat :tag "Component"
  487. (choice
  488. (list :tag "Agenda"
  489. (const :format "" agenda)
  490. (const :tag "" :format "" "")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "TODO list (all keywords)"
  493. (const :format "" alltodo)
  494. (const :tag "" :format "" "")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "Search words"
  497. (const :format "" search)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "Stuck projects"
  501. (const :format "" stuck)
  502. (const :tag "" :format "" "")
  503. ,org-agenda-custom-commands-local-options)
  504. (list :tag "Tags/Property match (all agenda files)"
  505. (const :format "" tags)
  506. (string :tag "Match")
  507. ,org-agenda-custom-commands-local-options)
  508. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  509. (const :format "" tags-todo)
  510. (string :tag "Match")
  511. ,org-agenda-custom-commands-local-options)
  512. (list :tag "TODO keyword search"
  513. (const :format "" todo)
  514. (string :tag "Match")
  515. ,org-agenda-custom-commands-local-options)
  516. (list :tag "Other, user-defined function"
  517. (symbol :tag "function")
  518. (string :tag "Match")
  519. ,org-agenda-custom-commands-local-options)))
  520. (repeat :tag "Settings for entire command set"
  521. (list (variable :tag "Any variable")
  522. (sexp :tag "Value")))
  523. (option (repeat :tag "Export" (file :tag "Export to"))))
  524. (cons :tag "Prefix key documentation"
  525. (string :tag "Access Key(s)")
  526. (string :tag "Description ")))))
  527. (defcustom org-agenda-query-register ?o
  528. "The register holding the current query string.
  529. The purpose of this is that if you construct a query string interactively,
  530. you can then use it to define a custom command."
  531. :group 'org-agenda-custom-commands
  532. :type 'character)
  533. (defcustom org-stuck-projects
  534. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  535. "How to identify stuck projects.
  536. This is a list of four items:
  537. 1. A tags/todo/property matcher string that is used to identify a project.
  538. See the manual for a description of tag and property searches.
  539. The entire tree below a headline matched by this is considered one project.
  540. 2. A list of TODO keywords identifying non-stuck projects.
  541. If the project subtree contains any headline with one of these todo
  542. keywords, the project is considered to be not stuck. If you specify
  543. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  544. 3. A list of tags identifying non-stuck projects.
  545. If the project subtree contains any headline with one of these tags,
  546. the project is considered to be not stuck. If you specify \"*\" as
  547. a tag, any tag will mark the project unstuck. Note that this is about
  548. the explicit presence of a tag somewhere in the subtree, inherited
  549. tags do not count here. If inherited tags make a project not stuck,
  550. use \"-TAG\" in the tags part of the matcher under (1.) above.
  551. 4. An arbitrary regular expression matching non-stuck projects.
  552. If the project turns out to be not stuck, search continues also in the
  553. subtree to see if any of the subtasks have project status.
  554. See also the variable `org-tags-match-list-sublevels' which applies
  555. to projects matched by this search as well.
  556. After defining this variable, you may use `org-agenda-list-stuck-projects'
  557. \(bound to `\\[org-agenda] #') to produce the list."
  558. :group 'org-agenda-custom-commands
  559. :type '(list
  560. (string :tag "Tags/TODO match to identify a project")
  561. (repeat :tag "Projects are *not* stuck if they have an entry with \
  562. TODO keyword any of" (string))
  563. (repeat :tag "Projects are *not* stuck if they have an entry with \
  564. TAG being any of" (string))
  565. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  566. the subtree")))
  567. (defgroup org-agenda-skip nil
  568. "Options concerning skipping parts of agenda files."
  569. :tag "Org Agenda Skip"
  570. :group 'org-agenda)
  571. (defcustom org-agenda-skip-function-global nil
  572. "Function to be called at each match during agenda construction.
  573. If this function returns nil, the current match should not be skipped.
  574. If the function decided to skip an agenda match, is must return the
  575. buffer position from which the search should be continued.
  576. This may also be a Lisp form, which will be evaluated.
  577. This variable will be applied to every agenda match, including
  578. tags/property searches and TODO lists. So try to make the test function
  579. do its checking as efficiently as possible. To implement a skipping
  580. condition just for specific agenda commands, use the variable
  581. `org-agenda-skip-function' which can be set in the options section
  582. of custom agenda commands."
  583. :group 'org-agenda-skip
  584. :type 'sexp)
  585. (defgroup org-agenda-daily/weekly nil
  586. "Options concerning the daily/weekly agenda."
  587. :tag "Org Agenda Daily/Weekly"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-todo-list nil
  590. "Options concerning the global todo list agenda view."
  591. :tag "Org Agenda Todo List"
  592. :group 'org-agenda)
  593. (defgroup org-agenda-match-view nil
  594. "Options concerning the general tags/property/todo match agenda view."
  595. :tag "Org Agenda Match View"
  596. :group 'org-agenda)
  597. (defgroup org-agenda-search-view nil
  598. "Options concerning the search agenda view."
  599. :tag "Org Agenda Search View"
  600. :group 'org-agenda)
  601. (defvar org-agenda-archives-mode nil
  602. "Non-nil means the agenda will include archived items.
  603. If this is the symbol `trees', trees in the selected agenda scope
  604. that are marked with the ARCHIVE tag will be included anyway. When this is
  605. t, also all archive files associated with the current selection of agenda
  606. files will be included.")
  607. (defcustom org-agenda-restriction-lock-highlight-subtree t
  608. "Non-nil means highlight the whole subtree when restriction is active.
  609. Otherwise only highlight the headline. Highlighting the whole subtree is
  610. useful to ensure no edits happen beyond the restricted region."
  611. :group 'org-agenda
  612. :type 'boolean)
  613. (defcustom org-agenda-skip-comment-trees t
  614. "Non-nil means skip trees that start with the COMMENT keyword.
  615. When nil, these trees are also scanned by agenda commands."
  616. :group 'org-agenda-skip
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-list-sublevels t
  619. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  620. When nil, the sublevels of a TODO entry are not checked, resulting in
  621. potentially much shorter TODO lists."
  622. :group 'org-agenda-skip
  623. :group 'org-agenda-todo-list
  624. :type 'boolean)
  625. (defcustom org-agenda-todo-ignore-with-date nil
  626. "Non-nil means don't show entries with a date in the global todo list.
  627. You can use this if you prefer to mark mere appointments with a TODO keyword,
  628. but don't want them to show up in the TODO list.
  629. When this is set, it also covers deadlines and scheduled items, the settings
  630. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  631. will be ignored.
  632. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  633. :group 'org-agenda-skip
  634. :group 'org-agenda-todo-list
  635. :type 'boolean)
  636. (defcustom org-agenda-todo-ignore-timestamp nil
  637. "Non-nil means don't show entries with a timestamp.
  638. This applies when creating the global todo list.
  639. Valid values are:
  640. past Don't show entries for today or in the past.
  641. future Don't show entries with a timestamp in the future.
  642. The idea behind this is that if it has a future
  643. timestamp, you don't want to think about it until the
  644. date.
  645. all Don't show any entries with a timestamp in the global todo list.
  646. The idea behind this is that by setting a timestamp, you
  647. have already \"taken care\" of this item.
  648. This variable can also have an integer as a value. If positive (N),
  649. todos with a timestamp N or more days in the future will be ignored. If
  650. negative (-N), todos with a timestamp N or more days in the past will be
  651. ignored. If 0, todos with a timestamp either today or in the future will
  652. be ignored. For example, a value of -1 will exclude todos with a
  653. timestamp in the past (yesterday or earlier), while a value of 7 will
  654. exclude todos with a timestamp a week or more in the future.
  655. See also `org-agenda-todo-ignore-with-date'.
  656. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  657. to make his option also apply to the tags-todo list."
  658. :group 'org-agenda-skip
  659. :group 'org-agenda-todo-list
  660. :version "24.1"
  661. :type '(choice
  662. (const :tag "Ignore future timestamp todos" future)
  663. (const :tag "Ignore past or present timestamp todos" past)
  664. (const :tag "Ignore all timestamp todos" all)
  665. (const :tag "Show timestamp todos" nil)
  666. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  667. (defcustom org-agenda-todo-ignore-scheduled nil
  668. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  669. This applies when creating the global todo list.
  670. Valid values are:
  671. past Don't show entries scheduled today or in the past.
  672. future Don't show entries scheduled in the future.
  673. The idea behind this is that by scheduling it, you don't want to
  674. think about it until the scheduled date.
  675. all Don't show any scheduled entries in the global todo list.
  676. The idea behind this is that by scheduling it, you have already
  677. \"taken care\" of this item.
  678. t Same as `all', for backward compatibility.
  679. This variable can also have an integer as a value. See
  680. `org-agenda-todo-ignore-timestamp' for more details.
  681. See also `org-agenda-todo-ignore-with-date'.
  682. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  683. to make his option also apply to the tags-todo list."
  684. :group 'org-agenda-skip
  685. :group 'org-agenda-todo-list
  686. :type '(choice
  687. (const :tag "Ignore future-scheduled todos" future)
  688. (const :tag "Ignore past- or present-scheduled todos" past)
  689. (const :tag "Ignore all scheduled todos" all)
  690. (const :tag "Ignore all scheduled todos (compatibility)" t)
  691. (const :tag "Show scheduled todos" nil)
  692. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  693. (defcustom org-agenda-todo-ignore-deadlines nil
  694. "Non-nil means ignore some deadline TODO items when making TODO list.
  695. There are different motivations for using different values, please think
  696. carefully when configuring this variable.
  697. This applies when creating the global TODO list.
  698. Valid values are:
  699. near Don't show near deadline entries. A deadline is near when it is
  700. closer than `org-deadline-warning-days' days. The idea behind this
  701. is that such items will appear in the agenda anyway.
  702. far Don't show TODO entries where a deadline has been defined, but
  703. is not going to happen anytime soon. This is useful if you want to use
  704. the TODO list to figure out what to do now.
  705. past Don't show entries with a deadline timestamp for today or in the past.
  706. future Don't show entries with a deadline timestamp in the future, not even
  707. when they become `near' ones. Use it with caution.
  708. all Ignore all TODO entries that do have a deadline.
  709. t Same as `near', for backward compatibility.
  710. This variable can also have an integer as a value. See
  711. `org-agenda-todo-ignore-timestamp' for more details.
  712. See also `org-agenda-todo-ignore-with-date'.
  713. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  714. to make his option also apply to the tags-todo list."
  715. :group 'org-agenda-skip
  716. :group 'org-agenda-todo-list
  717. :type '(choice
  718. (const :tag "Ignore near deadlines" near)
  719. (const :tag "Ignore near deadlines (compatibility)" t)
  720. (const :tag "Ignore far deadlines" far)
  721. (const :tag "Ignore all TODOs with a deadlines" all)
  722. (const :tag "Show all TODOs, even if they have a deadline" nil)
  723. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  724. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  725. "Time unit to use when possibly ignoring an agenda item.
  726. See the docstring of various `org-agenda-todo-ignore-*' options.
  727. The default is to compare time stamps using days. An item is thus
  728. considered to be in the future if it is at least one day after today.
  729. Non-nil means to compare time stamps using seconds. An item is then
  730. considered future if it has a time value later than current time."
  731. :group 'org-agenda-skip
  732. :group 'org-agenda-todo-list
  733. :version "24.4"
  734. :package-version '(Org . "8.0")
  735. :type '(choice
  736. (const :tag "Compare time with days" nil)
  737. (const :tag "Compare time with seconds" t)))
  738. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  739. "Non-nil means honor todo-list ignores options also in tags-todo search.
  740. The variables
  741. `org-agenda-todo-ignore-with-date',
  742. `org-agenda-todo-ignore-timestamp',
  743. `org-agenda-todo-ignore-scheduled',
  744. `org-agenda-todo-ignore-deadlines'
  745. make the global TODO list skip entries that have time stamps of certain
  746. kinds. If this option is set, the same options will also apply for the
  747. tags-todo search, which is the general tags/property matcher
  748. restricted to unfinished TODO entries only."
  749. :group 'org-agenda-skip
  750. :group 'org-agenda-todo-list
  751. :group 'org-agenda-match-view
  752. :type 'boolean)
  753. (defcustom org-agenda-skip-scheduled-if-done nil
  754. "Non-nil means don't show scheduled items in agenda when they are done.
  755. This is relevant for the daily/weekly agenda, not for the TODO list. It
  756. applies only to the actual date of the scheduling. Warnings about an item
  757. with a past scheduling dates are always turned off when the item is DONE."
  758. :group 'org-agenda-skip
  759. :group 'org-agenda-daily/weekly
  760. :type 'boolean)
  761. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  762. "Non-nil means skip scheduling line if same entry shows because of deadline.
  763. In the agenda of today, an entry can show up multiple times
  764. because it is both scheduled and has a nearby deadline, and maybe
  765. a plain time stamp as well.
  766. When this variable is nil, the entry will be shown several times.
  767. When set to t, then only the deadline is shown and the fact that
  768. the entry is scheduled today or was scheduled previously is not
  769. shown.
  770. When set to the symbol `not-today', skip scheduled previously,
  771. but not scheduled today.
  772. When set to the symbol `repeated-after-deadline', skip scheduled
  773. items if they are repeated beyond the current deadline."
  774. :group 'org-agenda-skip
  775. :group 'org-agenda-daily/weekly
  776. :type '(choice
  777. (const :tag "Never" nil)
  778. (const :tag "Always" t)
  779. (const :tag "Not when scheduled today" not-today)
  780. (const :tag "When repeated past deadline" repeated-after-deadline)))
  781. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  782. "Non-nil means skip timestamp line if same entry shows because of deadline.
  783. In the agenda of today, an entry can show up multiple times
  784. because it has both a plain timestamp and has a nearby deadline.
  785. When this variable is t, then only the deadline is shown and the
  786. fact that the entry has a timestamp for or including today is not
  787. shown. When this variable is nil, the entry will be shown
  788. several times."
  789. :group 'org-agenda-skip
  790. :group 'org-agenda-daily/weekly
  791. :version "24.1"
  792. :type '(choice
  793. (const :tag "Never" nil)
  794. (const :tag "Always" t)))
  795. (defcustom org-agenda-skip-deadline-if-done nil
  796. "Non-nil means don't show deadlines when the corresponding item is done.
  797. When nil, the deadline is still shown and should give you a happy feeling.
  798. This is relevant for the daily/weekly agenda. It applies only to the
  799. actual date of the deadline. Warnings about approaching and past-due
  800. deadlines are always turned off when the item is DONE."
  801. :group 'org-agenda-skip
  802. :group 'org-agenda-daily/weekly
  803. :type 'boolean)
  804. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  805. "Non-nil means skip deadline prewarning when entry is also scheduled.
  806. This will apply on all days where a prewarning for the deadline would
  807. be shown, but not at the day when the entry is actually due. On that day,
  808. the deadline will be shown anyway.
  809. This variable may be set to nil, t, the symbol `pre-scheduled',
  810. or a number which will then give the number of days before the actual
  811. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  812. eliminates the deadline prewarning only prior to the scheduled date.
  813. This can be used in a workflow where the first showing of the deadline will
  814. trigger you to schedule it, and then you don't want to be reminded of it
  815. because you will take care of it on the day when scheduled."
  816. :group 'org-agenda-skip
  817. :group 'org-agenda-daily/weekly
  818. :version "24.1"
  819. :type '(choice
  820. (const :tag "Always show prewarning" nil)
  821. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  822. (const :tag "Remove prewarning if entry is scheduled" t)
  823. (integer :tag "Restart prewarning N days before deadline")))
  824. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  825. "Non-nil means skip scheduled delay when entry also has a deadline.
  826. This variable may be set to nil, t, the symbol `post-deadline',
  827. or a number which will then give the number of days after the actual
  828. scheduled date when the delay should expire. The symbol `post-deadline'
  829. eliminates the schedule delay when the date is posterior to the deadline."
  830. :group 'org-agenda-skip
  831. :group 'org-agenda-daily/weekly
  832. :version "24.4"
  833. :package-version '(Org . "8.0")
  834. :type '(choice
  835. (const :tag "Always honor delay" nil)
  836. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  837. (const :tag "Ignore delay if entry has a deadline" t)
  838. (integer :tag "Honor delay up until N days after the scheduled date")))
  839. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  840. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  841. When non-nil, after the search for timestamps has matched once in an
  842. entry, the rest of the entry will not be searched."
  843. :group 'org-agenda-skip
  844. :type 'boolean)
  845. (defcustom org-agenda-skip-timestamp-if-done nil
  846. "Non-nil means don't select item by timestamp or -range if it is DONE."
  847. :group 'org-agenda-skip
  848. :group 'org-agenda-daily/weekly
  849. :type 'boolean)
  850. (defcustom org-agenda-dim-blocked-tasks t
  851. "Non-nil means dim blocked tasks in the agenda display.
  852. This causes some overhead during agenda construction, but if you
  853. have turned on `org-enforce-todo-dependencies',
  854. `org-enforce-todo-checkbox-dependencies', or any other blocking
  855. mechanism, this will create useful feedback in the agenda.
  856. Instead of t, this variable can also have the value `invisible'.
  857. Then blocked tasks will be invisible and only become visible when
  858. they become unblocked. An exemption to this behavior is when a task is
  859. blocked because of unchecked checkboxes below it. Since checkboxes do
  860. not show up in the agenda views, making this task invisible you remove any
  861. trace from agenda views that there is something to do. Therefore, a task
  862. that is blocked because of checkboxes will never be made invisible, it
  863. will only be dimmed."
  864. :group 'org-agenda-daily/weekly
  865. :group 'org-agenda-todo-list
  866. :version "24.3"
  867. :type '(choice
  868. (const :tag "Do not dim" nil)
  869. (const :tag "Dim to a gray face" t)
  870. (const :tag "Make invisible" invisible)))
  871. (defgroup org-agenda-startup nil
  872. "Options concerning initial settings in the Agenda in Org Mode."
  873. :tag "Org Agenda Startup"
  874. :group 'org-agenda)
  875. (defcustom org-agenda-menu-show-matcher t
  876. "Non-nil means show the match string in the agenda dispatcher menu.
  877. When nil, the matcher string is not shown, but is put into the help-echo
  878. property so than moving the mouse over the command shows it.
  879. Setting it to nil is good if matcher strings are very long and/or if
  880. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  881. :group 'org-agenda
  882. :version "24.1"
  883. :type 'boolean)
  884. (defcustom org-agenda-menu-two-columns nil
  885. "Non-nil means, use two columns to show custom commands in the dispatcher.
  886. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  887. to nil."
  888. :group 'org-agenda
  889. :version "24.1"
  890. :type 'boolean)
  891. (defcustom org-agenda-finalize-hook nil
  892. "Hook run just before displaying an agenda buffer.
  893. The buffer is still writable when the hook is called.
  894. You can modify some of the buffer substrings but you should be
  895. extra careful not to modify the text properties of the agenda
  896. headlines as the agenda display heavily relies on them."
  897. :group 'org-agenda-startup
  898. :type 'hook)
  899. (defcustom org-agenda-mouse-1-follows-link nil
  900. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  901. A longer mouse click will still set point. Needs to be set
  902. before org.el is loaded."
  903. :group 'org-agenda-startup
  904. :type 'boolean)
  905. (defcustom org-agenda-start-with-follow-mode nil
  906. "The initial value of follow mode in a newly created agenda window."
  907. :group 'org-agenda-startup
  908. :type 'boolean)
  909. (defcustom org-agenda-follow-indirect nil
  910. "Non-nil means `org-agenda-follow-mode' displays only the
  911. current item's tree, in an indirect buffer."
  912. :group 'org-agenda
  913. :version "24.1"
  914. :type 'boolean)
  915. (defcustom org-agenda-show-outline-path t
  916. "Non-nil means show outline path in echo area after line motion."
  917. :group 'org-agenda-startup
  918. :type 'boolean)
  919. (defcustom org-agenda-start-with-entry-text-mode nil
  920. "The initial value of entry-text-mode in a newly created agenda window."
  921. :group 'org-agenda-startup
  922. :type 'boolean)
  923. (defcustom org-agenda-entry-text-maxlines 5
  924. "Number of text lines to be added when `E' is pressed in the agenda.
  925. Note that this variable only used during agenda display. To add entry text
  926. when exporting the agenda, configure the variable
  927. `org-agenda-add-entry-text-maxlines'."
  928. :group 'org-agenda
  929. :type 'integer)
  930. (defcustom org-agenda-entry-text-exclude-regexps nil
  931. "List of regular expressions to clean up entry text.
  932. The complete matches of all regular expressions in this list will be
  933. removed from entry text before it is shown in the agenda."
  934. :group 'org-agenda
  935. :type '(repeat (regexp)))
  936. (defcustom org-agenda-entry-text-leaders " > "
  937. "Text prepended to the entry text in agenda buffers."
  938. :version "24.4"
  939. :package-version '(Org . "8.0")
  940. :group 'org-agenda
  941. :type 'string)
  942. (defvar org-agenda-entry-text-cleanup-hook nil
  943. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  944. This cleanup is done in a temporary buffer, so the function may inspect and
  945. change the entire buffer.
  946. Some default stuff like drawers and scheduling/deadline dates will already
  947. have been removed when this is called, as will any matches for regular
  948. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  949. (defvar org-agenda-include-inactive-timestamps nil
  950. "Non-nil means include inactive time stamps in agenda.
  951. Dynamically scoped.")
  952. (defgroup org-agenda-windows nil
  953. "Options concerning the windows used by the Agenda in Org Mode."
  954. :tag "Org Agenda Windows"
  955. :group 'org-agenda)
  956. (defcustom org-agenda-window-setup 'reorganize-frame
  957. "How the agenda buffer should be displayed.
  958. Possible values for this option are:
  959. current-window Show agenda in the current window, keeping all other windows.
  960. other-window Use `switch-to-buffer-other-window' to display agenda.
  961. only-window Show agenda, deleting all other windows.
  962. reorganize-frame Show only two windows on the current frame, the current
  963. window and the agenda.
  964. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  965. Also, when exiting the agenda, kill that frame.
  966. See also the variable `org-agenda-restore-windows-after-quit'."
  967. :group 'org-agenda-windows
  968. :type '(choice
  969. (const current-window)
  970. (const other-frame)
  971. (const other-window)
  972. (const only-window)
  973. (const reorganize-frame)))
  974. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  975. "The min and max height of the agenda window as a fraction of frame height.
  976. The value of the variable is a cons cell with two numbers between 0 and 1.
  977. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  978. :group 'org-agenda-windows
  979. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  980. (defcustom org-agenda-restore-windows-after-quit nil
  981. "Non-nil means restore window configuration upon exiting agenda.
  982. Before the window configuration is changed for displaying the agenda,
  983. the current status is recorded. When the agenda is exited with
  984. `q' or `x' and this option is set, the old state is restored. If
  985. `org-agenda-window-setup' is `other-frame', the value of this
  986. option will be ignored."
  987. :group 'org-agenda-windows
  988. :type 'boolean)
  989. (defcustom org-agenda-span 'week
  990. "Number of days to include in overview display.
  991. Can be day, week, month, year, or any number of days.
  992. Custom commands can set this variable in the options section."
  993. :group 'org-agenda-daily/weekly
  994. :type '(choice (const :tag "Day" day)
  995. (const :tag "Week" week)
  996. (const :tag "Fortnight" fortnight)
  997. (const :tag "Month" month)
  998. (const :tag "Year" year)
  999. (integer :tag "Custom")))
  1000. (defcustom org-agenda-start-on-weekday 1
  1001. "Non-nil means start the overview always on the specified weekday.
  1002. 0 denotes Sunday, 1 denotes Monday, etc.
  1003. When nil, always start on the current day.
  1004. Custom commands can set this variable in the options section."
  1005. :group 'org-agenda-daily/weekly
  1006. :type '(choice (const :tag "Today" nil)
  1007. (integer :tag "Weekday No.")))
  1008. (defcustom org-agenda-show-all-dates t
  1009. "Non-nil means `org-agenda' shows every day in the selected range.
  1010. When nil, only the days which actually have entries are shown."
  1011. :group 'org-agenda-daily/weekly
  1012. :type 'boolean)
  1013. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1014. "Format string for displaying dates in the agenda.
  1015. Used by the daily/weekly agenda. This should be a format string
  1016. understood by `format-time-string', or a function returning the
  1017. formatted date as a string. The function must take a single
  1018. argument, a calendar-style date list like (month day year)."
  1019. :group 'org-agenda-daily/weekly
  1020. :type '(choice
  1021. (string :tag "Format string")
  1022. (function :tag "Function")))
  1023. (defun org-agenda-end-of-line ()
  1024. "Go to the end of visible line."
  1025. (interactive)
  1026. (goto-char (line-end-position)))
  1027. (defun org-agenda-format-date-aligned (date)
  1028. "Format a DATE string for display in the daily/weekly agenda.
  1029. This function makes sure that dates are aligned for easy reading."
  1030. (require 'cal-iso)
  1031. (let* ((dayname (calendar-day-name date))
  1032. (day (cadr date))
  1033. (day-of-week (calendar-day-of-week date))
  1034. (month (car date))
  1035. (monthname (calendar-month-name month))
  1036. (year (nth 2 date))
  1037. (iso-week (org-days-to-iso-week
  1038. (calendar-absolute-from-gregorian date)))
  1039. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1040. (1- year))
  1041. ((and (= month 12) (<= iso-week 1))
  1042. (1+ year))
  1043. (t year)))
  1044. (weekstring (if (= day-of-week 1)
  1045. (format " W%02d" iso-week)
  1046. "")))
  1047. (format "%-10s %2d %s %4d%s"
  1048. dayname day monthname year weekstring)))
  1049. (defcustom org-agenda-time-leading-zero nil
  1050. "Non-nil means use leading zero for military times in agenda.
  1051. For example, 9:30am would become 09:30 rather than 9:30."
  1052. :group 'org-agenda-daily/weekly
  1053. :version "24.1"
  1054. :type 'boolean)
  1055. (defcustom org-agenda-timegrid-use-ampm nil
  1056. "When set, show AM/PM style timestamps on the timegrid."
  1057. :group 'org-agenda
  1058. :version "24.1"
  1059. :type 'boolean)
  1060. (defun org-agenda-time-of-day-to-ampm (time)
  1061. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1062. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1063. (minute (substring time -2))
  1064. (ampm "am"))
  1065. (cond
  1066. ((equal hour-number 12)
  1067. (setq ampm "pm"))
  1068. ((> hour-number 12)
  1069. (setq ampm "pm")
  1070. (setq hour-number (- hour-number 12))))
  1071. (concat
  1072. (if org-agenda-time-leading-zero
  1073. (format "%02d" hour-number)
  1074. (format "%02s" (number-to-string hour-number)))
  1075. ":" minute ampm)))
  1076. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1077. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1078. (if org-agenda-timegrid-use-ampm
  1079. (org-agenda-time-of-day-to-ampm time)
  1080. time))
  1081. (defcustom org-agenda-weekend-days '(6 0)
  1082. "Which days are weekend?
  1083. These days get the special face `org-agenda-date-weekend' in the agenda."
  1084. :group 'org-agenda-daily/weekly
  1085. :type '(set :greedy t
  1086. (const :tag "Monday" 1)
  1087. (const :tag "Tuesday" 2)
  1088. (const :tag "Wednesday" 3)
  1089. (const :tag "Thursday" 4)
  1090. (const :tag "Friday" 5)
  1091. (const :tag "Saturday" 6)
  1092. (const :tag "Sunday" 0)))
  1093. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1094. "Non-nil means jump to today when moving a past date forward in time.
  1095. When using S-right in the agenda to move a date forward, and the date
  1096. stamp currently points to the past, the first key press will move it
  1097. to today. When nil, just move one day forward even if the date stays
  1098. in the past."
  1099. :group 'org-agenda-daily/weekly
  1100. :version "24.1"
  1101. :type 'boolean)
  1102. (defcustom org-agenda-include-diary nil
  1103. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1104. Custom commands can set this variable in the options section."
  1105. :group 'org-agenda-daily/weekly
  1106. :type 'boolean)
  1107. (defcustom org-agenda-include-deadlines t
  1108. "If non-nil, include entries within their deadline warning period.
  1109. Custom commands can set this variable in the options section."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-show-future-repeats t
  1114. "Non-nil shows repeated entries in the future part of the agenda.
  1115. When set to the symbol `next' only the first future repeat is shown."
  1116. :group 'org-agenda-daily/weekly
  1117. :type '(choice
  1118. (const :tag "Show all repeated entries" t)
  1119. (const :tag "Show next repeated entry" next)
  1120. (const :tag "Do not show repeated entries" nil))
  1121. :version "26.1"
  1122. :package-version '(Org . "9.1")
  1123. :safe #'symbolp)
  1124. (defcustom org-agenda-prefer-last-repeat nil
  1125. "Non-nil sets date for repeated entries to their last repeat.
  1126. When nil, display SCHEDULED and DEADLINE dates at their base
  1127. date, and in today's agenda, as a reminder. Display plain
  1128. time-stamps, on the other hand, at every repeat date in the past
  1129. in addition to the base date.
  1130. When non-nil, show a repeated entry at its latest repeat date,
  1131. possibly being today even if it wasn't marked as done. This
  1132. setting is useful if you do not always mark repeated entries as
  1133. done and, yet, consider that reaching repeat date starts the task
  1134. anew.
  1135. When set to a list of strings, prefer last repeats only for
  1136. entries with these TODO keywords."
  1137. :group 'org-agenda-daily/weekly
  1138. :type '(choice
  1139. (const :tag "Prefer last repeat" t)
  1140. (const :tag "Prefer base date" nil)
  1141. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1142. (string :tag "TODO keyword")))
  1143. :version "26.1"
  1144. :package-version '(Org . "9.1")
  1145. :safe (lambda (x) (or (booleanp x) (consp x))))
  1146. (defcustom org-scheduled-past-days 10000
  1147. "Number of days to continue listing scheduled items not marked DONE.
  1148. When an item is scheduled on a date, it shows up in the agenda on
  1149. this day and will be listed until it is marked done or for the
  1150. number of days given here."
  1151. :group 'org-agenda-daily/weekly
  1152. :type 'integer
  1153. :safe 'integerp)
  1154. (defcustom org-deadline-past-days 10000
  1155. "Number of days to warn about missed deadlines.
  1156. When an item has deadline on a date, it shows up in the agenda on
  1157. this day and will appear as a reminder until it is marked DONE or
  1158. for the number of days given here."
  1159. :group 'org-agenda-daily/weekly
  1160. :type 'integer
  1161. :version "26.1"
  1162. :package-version '(Org . "9.1")
  1163. :safe 'integerp)
  1164. (defcustom org-agenda-log-mode-items '(closed clock)
  1165. "List of items that should be shown in agenda log mode.
  1166. \\<org-agenda-mode-map>\
  1167. This list may contain the following symbols:
  1168. closed Show entries that have been closed on that day.
  1169. clock Show entries that have received clocked time on that day.
  1170. state Show all logged state changes.
  1171. Note that instead of changing this variable, you can also press \
  1172. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1173. the agenda to display all available LOG items temporarily."
  1174. :group 'org-agenda-daily/weekly
  1175. :type '(set :greedy t (const closed) (const clock) (const state)))
  1176. (defcustom org-agenda-clock-consistency-checks
  1177. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1178. :gap-ok-around ("4:00")
  1179. :default-face ((:background "DarkRed") (:foreground "white"))
  1180. :overlap-face nil :gap-face nil :no-end-time-face nil
  1181. :long-face nil :short-face nil)
  1182. "This is a property list, with the following keys:
  1183. :max-duration Mark clocking chunks that are longer than this time.
  1184. This is a time string like \"HH:MM\", or the number
  1185. of minutes as an integer.
  1186. :min-duration Mark clocking chunks that are shorter that this.
  1187. This is a time string like \"HH:MM\", or the number
  1188. of minutes as an integer.
  1189. :max-gap Mark gaps between clocking chunks that are longer than
  1190. this duration. A number of minutes, or a string
  1191. like \"HH:MM\".
  1192. :gap-ok-around List of times during the day which are usually not working
  1193. times. When a gap is detected, but the gap contains any
  1194. of these times, the gap is *not* reported. For example,
  1195. if this is (\"4:00\" \"13:00\") then gaps that contain
  1196. 4:00 in the morning (i.e. the night) and 13:00
  1197. (i.e. a typical lunch time) do not cause a warning.
  1198. You should have at least one time during the night in this
  1199. list, or otherwise the first task each morning will trigger
  1200. a warning because it follows a long gap.
  1201. Furthermore, the following properties can be used to define faces for
  1202. issue display.
  1203. :default-face the default face, if the specific face is undefined
  1204. :overlap-face face for overlapping clocks
  1205. :gap-face face for gaps between clocks
  1206. :no-end-time-face face for incomplete clocks
  1207. :long-face face for clock intervals that are too long
  1208. :short-face face for clock intervals that are too short"
  1209. :group 'org-agenda-daily/weekly
  1210. :group 'org-clock
  1211. :version "24.1"
  1212. :type 'plist)
  1213. (defcustom org-agenda-log-mode-add-notes t
  1214. "Non-nil means add first line of notes to log entries in agenda views.
  1215. If a log item like a state change or a clock entry is associated with
  1216. notes, the first line of these notes will be added to the entry in the
  1217. agenda display."
  1218. :group 'org-agenda-daily/weekly
  1219. :type 'boolean)
  1220. (defcustom org-agenda-start-with-log-mode nil
  1221. "The initial value of log-mode in a newly created agenda window.
  1222. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1223. explanations on the possible values."
  1224. :group 'org-agenda-startup
  1225. :group 'org-agenda-daily/weekly
  1226. :type '(choice (const :tag "Don't show log items" nil)
  1227. (const :tag "Show only log items" only)
  1228. (const :tag "Show all possible log items" clockcheck)
  1229. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1230. (choice (const :tag "Show closed log items" closed)
  1231. (const :tag "Show clocked log items" clock)
  1232. (const :tag "Show all logged state changes" state)))))
  1233. (defcustom org-agenda-start-with-clockreport-mode nil
  1234. "The initial value of clockreport-mode in a newly created agenda window."
  1235. :group 'org-agenda-startup
  1236. :group 'org-agenda-daily/weekly
  1237. :type 'boolean)
  1238. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1239. "Property list with parameters for the clocktable in clockreport mode.
  1240. This is the display mode that shows a clock table in the daily/weekly
  1241. agenda, the properties for this dynamic block can be set here.
  1242. The usual clocktable parameters are allowed here, but you cannot set
  1243. the properties :name, :tstart, :tend, :block, and :scope - these will
  1244. be overwritten to make sure the content accurately reflects the
  1245. current display in the agenda."
  1246. :group 'org-agenda-daily/weekly
  1247. :type 'plist)
  1248. (defvaralias 'org-agenda-search-view-search-words-only
  1249. 'org-agenda-search-view-always-boolean)
  1250. (defcustom org-agenda-search-view-always-boolean nil
  1251. "Non-nil means the search string is interpreted as individual parts.
  1252. The search string for search view can either be interpreted as a phrase,
  1253. or as a list of snippets that define a boolean search for a number of
  1254. strings.
  1255. When this is non-nil, the string will be split on whitespace, and each
  1256. snippet will be searched individually, and all must match in order to
  1257. select an entry. A snippet is then a single string of non-white
  1258. characters, or a string in double quotes, or a regexp in {} braces.
  1259. If a snippet is preceded by \"-\", the snippet must *not* match.
  1260. \"+\" is syntactic sugar for positive selection. Each snippet may
  1261. be found as a full word or a partial word, but see the variable
  1262. `org-agenda-search-view-force-full-words'.
  1263. When this is nil, search will look for the entire search phrase as one,
  1264. with each space character matching any amount of whitespace, including
  1265. line breaks.
  1266. Even when this is nil, you can still switch to Boolean search dynamically
  1267. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1268. is a regexp marked with braces like \"{abc}\", this will also switch to
  1269. boolean search."
  1270. :group 'org-agenda-search-view
  1271. :version "24.1"
  1272. :type 'boolean)
  1273. (defcustom org-agenda-search-view-force-full-words nil
  1274. "Non-nil means, search words must be matches as complete words.
  1275. When nil, they may also match part of a word."
  1276. :group 'org-agenda-search-view
  1277. :version "24.1"
  1278. :type 'boolean)
  1279. (defcustom org-agenda-search-view-max-outline-level 0
  1280. "Maximum outline level to display in search view.
  1281. E.g. when this is set to 1, the search view will only
  1282. show headlines of level 1. When set to 0, the default
  1283. value, don't limit agenda view by outline level."
  1284. :group 'org-agenda-search-view
  1285. :version "26.1"
  1286. :package-version '(Org . "8.3")
  1287. :type 'integer)
  1288. (defgroup org-agenda-time-grid nil
  1289. "Options concerning the time grid in the Org Agenda."
  1290. :tag "Org Agenda Time Grid"
  1291. :group 'org-agenda)
  1292. (defcustom org-agenda-search-headline-for-time t
  1293. "Non-nil means search headline for a time-of-day.
  1294. If the headline contains a time-of-day in one format or another, it will
  1295. be used to sort the entry into the time sequence of items for a day.
  1296. Some people have time stamps in the headline that refer to the creation
  1297. time or so, and then this produces an unwanted side effect. If this is
  1298. the case for your, use this variable to turn off searching the headline
  1299. for a time."
  1300. :group 'org-agenda-time-grid
  1301. :type 'boolean)
  1302. (defcustom org-agenda-use-time-grid t
  1303. "Non-nil means show a time grid in the agenda schedule.
  1304. A time grid is a set of lines for specific times (like every two hours between
  1305. 8:00 and 20:00). The items scheduled for a day at specific times are
  1306. sorted in between these lines.
  1307. For details about when the grid will be shown, and what it will look like, see
  1308. the variable `org-agenda-time-grid'."
  1309. :group 'org-agenda-time-grid
  1310. :type 'boolean)
  1311. (defcustom org-agenda-time-grid
  1312. '((daily today require-timed)
  1313. (800 1000 1200 1400 1600 1800 2000)
  1314. "......"
  1315. "----------------")
  1316. "The settings for time grid for agenda display.
  1317. This is a list of four items. The first item is again a list. It contains
  1318. symbols specifying conditions when the grid should be displayed:
  1319. daily if the agenda shows a single day
  1320. weekly if the agenda shows an entire week
  1321. today show grid on current date, independent of daily/weekly display
  1322. require-timed show grid only if at least one item has a time specification
  1323. remove-match skip grid times already present in an entry
  1324. The second item is a list of integers, indicating the times that
  1325. should have a grid line.
  1326. The third item is a string which will be placed right after the
  1327. times that have a grid line.
  1328. The fourth item is a string placed after the grid times. This
  1329. will align with agenda items."
  1330. :group 'org-agenda-time-grid
  1331. :type
  1332. '(list
  1333. (set :greedy t :tag "Grid Display Options"
  1334. (const :tag "Show grid in single day agenda display" daily)
  1335. (const :tag "Show grid in weekly agenda display" weekly)
  1336. (const :tag "Always show grid for today" today)
  1337. (const :tag "Show grid only if any timed entries are present"
  1338. require-timed)
  1339. (const :tag "Skip grid times already present in an entry"
  1340. remove-match))
  1341. (repeat :tag "Grid Times" (integer :tag "Time"))
  1342. (string :tag "Grid String (after agenda times)")
  1343. (string :tag "Grid String (aligns with agenda items)")))
  1344. (defcustom org-agenda-show-current-time-in-grid t
  1345. "Non-nil means show the current time in the time grid."
  1346. :group 'org-agenda-time-grid
  1347. :version "24.1"
  1348. :type 'boolean)
  1349. (defcustom org-agenda-current-time-string
  1350. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1351. "The string for the current time marker in the agenda."
  1352. :group 'org-agenda-time-grid
  1353. :version "24.1"
  1354. :type 'string)
  1355. (defgroup org-agenda-sorting nil
  1356. "Options concerning sorting in the Org Agenda."
  1357. :tag "Org Agenda Sorting"
  1358. :group 'org-agenda)
  1359. (defcustom org-agenda-sorting-strategy
  1360. '((agenda habit-down time-up priority-down category-keep)
  1361. (todo priority-down category-keep)
  1362. (tags priority-down category-keep)
  1363. (search category-keep))
  1364. "Sorting structure for the agenda items of a single day.
  1365. This is a list of symbols which will be used in sequence to determine
  1366. if an entry should be listed before another entry. The following
  1367. symbols are recognized:
  1368. time-up Put entries with time-of-day indications first, early first.
  1369. time-down Put entries with time-of-day indications first, late first.
  1370. timestamp-up Sort by any timestamp, early first.
  1371. timestamp-down Sort by any timestamp, late first.
  1372. scheduled-up Sort by scheduled timestamp, early first.
  1373. scheduled-down Sort by scheduled timestamp, late first.
  1374. deadline-up Sort by deadline timestamp, early first.
  1375. deadline-down Sort by deadline timestamp, late first.
  1376. ts-up Sort by active timestamp, early first.
  1377. ts-down Sort by active timestamp, late first.
  1378. tsia-up Sort by inactive timestamp, early first.
  1379. tsia-down Sort by inactive timestamp, late first.
  1380. category-keep Keep the default order of categories, corresponding to the
  1381. sequence in `org-agenda-files'.
  1382. category-up Sort alphabetically by category, A-Z.
  1383. category-down Sort alphabetically by category, Z-A.
  1384. tag-up Sort alphabetically by last tag, A-Z.
  1385. tag-down Sort alphabetically by last tag, Z-A.
  1386. priority-up Sort numerically by priority, high priority last.
  1387. priority-down Sort numerically by priority, high priority first.
  1388. todo-state-up Sort by todo state, tasks that are done last.
  1389. todo-state-down Sort by todo state, tasks that are done first.
  1390. effort-up Sort numerically by estimated effort, high effort last.
  1391. effort-down Sort numerically by estimated effort, high effort first.
  1392. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1393. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1394. habit-up Put entries that are habits first.
  1395. habit-down Put entries that are habits last.
  1396. alpha-up Sort headlines alphabetically.
  1397. alpha-down Sort headlines alphabetically, reversed.
  1398. The different possibilities will be tried in sequence, and testing stops
  1399. if one comparison returns a \"not-equal\". For example, the default
  1400. '(time-up category-keep priority-down)
  1401. means: Pull out all entries having a specified time of day and sort them,
  1402. in order to make a time schedule for the current day the first thing in the
  1403. agenda listing for the day. Of the entries without a time indication, keep
  1404. the grouped in categories, don't sort the categories, but keep them in
  1405. the sequence given in `org-agenda-files'. Within each category sort by
  1406. priority.
  1407. Leaving out `category-keep' would mean that items will be sorted across
  1408. categories by priority.
  1409. Instead of a single list, this can also be a set of list for specific
  1410. contents, with a context symbol in the car of the list, any of
  1411. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1412. Custom commands can bind this variable in the options section."
  1413. :group 'org-agenda-sorting
  1414. :type `(choice
  1415. (repeat :tag "General" ,org-sorting-choice)
  1416. (list :tag "Individually"
  1417. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1418. (repeat ,org-sorting-choice))
  1419. (cons (const :tag "Strategy for TODO lists" todo)
  1420. (repeat ,org-sorting-choice))
  1421. (cons (const :tag "Strategy for Tags matches" tags)
  1422. (repeat ,org-sorting-choice))
  1423. (cons (const :tag "Strategy for search matches" search)
  1424. (repeat ,org-sorting-choice)))))
  1425. (defcustom org-agenda-cmp-user-defined nil
  1426. "A function to define the comparison `user-defined'.
  1427. This function must receive two arguments, agenda entry a and b.
  1428. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1429. the user comparison, return nil.
  1430. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1431. part of an agenda sorting strategy."
  1432. :group 'org-agenda-sorting
  1433. :type 'symbol)
  1434. (defcustom org-sort-agenda-notime-is-late t
  1435. "Non-nil means items without time are considered late.
  1436. This is only relevant for sorting. When t, items which have no explicit
  1437. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1438. do have a time. When nil, the default time is before 0:00. You can use this
  1439. option to decide if the schedule for today should come before or after timeless
  1440. agenda entries."
  1441. :group 'org-agenda-sorting
  1442. :type 'boolean)
  1443. (defcustom org-sort-agenda-noeffort-is-high t
  1444. "Non-nil means items without effort estimate are sorted as high effort.
  1445. This also applies when filtering an agenda view with respect to the
  1446. < or > effort operator. Then, tasks with no effort defined will be treated
  1447. as tasks with high effort.
  1448. When nil, such items are sorted as 0 minutes effort."
  1449. :group 'org-agenda-sorting
  1450. :type 'boolean)
  1451. (defgroup org-agenda-line-format nil
  1452. "Options concerning the entry prefix in the Org agenda display."
  1453. :tag "Org Agenda Line Format"
  1454. :group 'org-agenda)
  1455. (defcustom org-agenda-prefix-format
  1456. '((agenda . " %i %-12:c%?-12t% s")
  1457. (todo . " %i %-12:c")
  1458. (tags . " %i %-12:c")
  1459. (search . " %i %-12:c"))
  1460. "Format specifications for the prefix of items in the agenda views.
  1461. An alist with one entry per agenda type. The keys of the
  1462. sublists are `agenda', `todo', `search' and `tags'. The values
  1463. are format strings.
  1464. This format works similar to a printf format, with the following meaning:
  1465. %c the category of the item, \"Diary\" for entries from the diary,
  1466. or as given by the CATEGORY keyword or derived from the file name
  1467. %e the effort required by the item
  1468. %l the level of the item (insert X space(s) if item is of level X)
  1469. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1470. %T the last tag of the item (ignore inherited tags, which come first)
  1471. %t the HH:MM time-of-day specification if one applies to the entry
  1472. %s Scheduling/Deadline information, a short string
  1473. %b show breadcrumbs, i.e., the names of the higher levels
  1474. %(expression) Eval EXPRESSION and replace the control string
  1475. by the result
  1476. All specifiers work basically like the standard `%s' of printf, but may
  1477. contain two additional characters: a question mark just after the `%'
  1478. and a whitespace/punctuation character just before the final letter.
  1479. If the first character after `%' is a question mark, the entire field
  1480. will only be included if the corresponding value applies to the current
  1481. entry. This is useful for fields which should have fixed width when
  1482. present, but zero width when absent. For example, \"%?-12t\" will
  1483. result in a 12 character time field if a time of the day is specified,
  1484. but will completely disappear in entries which do not contain a time.
  1485. If there is punctuation or whitespace character just before the
  1486. final format letter, this character will be appended to the field
  1487. value if the value is not empty. For example, the format
  1488. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1489. the category is empty, no additional colon is inserted.
  1490. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1491. which means:
  1492. - Indent the line with two space characters
  1493. - Give the category a 12 chars wide field, padded with whitespace on
  1494. the right (because of `-'). Append a colon if there is a category
  1495. (because of `:').
  1496. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1497. time, don't put in an empty field, just skip it (because of '?').
  1498. - Finally, put the scheduling information.
  1499. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1500. `org-agenda-remove-tags'.
  1501. Custom commands can set this variable in the options section."
  1502. :type '(choice
  1503. (string :tag "General format")
  1504. (list :greedy t :tag "View dependent"
  1505. (cons (const agenda) (string :tag "Format"))
  1506. (cons (const todo) (string :tag "Format"))
  1507. (cons (const tags) (string :tag "Format"))
  1508. (cons (const search) (string :tag "Format"))))
  1509. :group 'org-agenda-line-format
  1510. :version "26.1"
  1511. :package-version '(Org . "9.1"))
  1512. (defcustom org-agenda-breadcrumbs-separator "->"
  1513. "The separator of breadcrumbs in agenda lines."
  1514. :group 'org-agenda-line-format
  1515. :package-version '(Org . "9.3")
  1516. :type 'string
  1517. :safe #'stringp)
  1518. (defvar org-prefix-format-compiled nil
  1519. "The compiled prefix format and associated variables.
  1520. This is a list where first element is a list of variable bindings, and second
  1521. element is the compiled format expression. See the variable
  1522. `org-agenda-prefix-format'.")
  1523. (defcustom org-agenda-todo-keyword-format "%-1s"
  1524. "Format for the TODO keyword in agenda lines.
  1525. Set this to something like \"%-12s\" if you want all TODO keywords
  1526. to occupy a fixed space in the agenda display."
  1527. :group 'org-agenda-line-format
  1528. :type 'string)
  1529. (defcustom org-agenda-diary-sexp-prefix nil
  1530. "A regexp that matches part of a diary sexp entry
  1531. which should be treated as scheduling/deadline information in
  1532. `org-agenda'.
  1533. For example, you can use this to extract the `diary-remind-message' from
  1534. `diary-remind' entries."
  1535. :group 'org-agenda-line-format
  1536. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1537. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1538. "Text preceding timerange entries in the agenda view.
  1539. This is a list with two strings. The first applies when the range
  1540. is entirely on one day. The second applies if the range spans several days.
  1541. The strings may have two \"%d\" format specifiers which will be filled
  1542. with the sequence number of the days, and the total number of days in the
  1543. range, respectively."
  1544. :group 'org-agenda-line-format
  1545. :type '(list
  1546. (string :tag "Deadline today ")
  1547. (choice :tag "Deadline relative"
  1548. (string :tag "Format string")
  1549. (function))))
  1550. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1551. "Text preceding scheduled items in the agenda view.
  1552. This is a list with two strings. The first applies when the item is
  1553. scheduled on the current day. The second applies when it has been scheduled
  1554. previously, it may contain a %d indicating that this is the nth time that
  1555. this item is scheduled, due to automatic rescheduling of unfinished items
  1556. for the following day. So this number is one larger than the number of days
  1557. that passed since this item was scheduled first."
  1558. :group 'org-agenda-line-format
  1559. :version "24.4"
  1560. :package-version '(Org . "8.0")
  1561. :type '(list
  1562. (string :tag "Scheduled today ")
  1563. (string :tag "Scheduled previously")))
  1564. (defcustom org-agenda-inactive-leader "["
  1565. "Text preceding item pulled into the agenda by inactive time stamps.
  1566. These entries are added to the agenda when pressing \"[\"."
  1567. :group 'org-agenda-line-format
  1568. :version "24.1"
  1569. :type 'string)
  1570. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1571. "Text preceding deadline items in the agenda view.
  1572. This is a list with three strings. The first applies when the item has its
  1573. deadline on the current day. The second applies when the deadline is in the
  1574. future, the third one when it is in the past. The strings may contain %d
  1575. to capture the number of days."
  1576. :group 'org-agenda-line-format
  1577. :version "24.4"
  1578. :package-version '(Org . "8.0")
  1579. :type '(list
  1580. (string :tag "Deadline today ")
  1581. (string :tag "Deadline in the future ")
  1582. (string :tag "Deadline in the past ")))
  1583. (defcustom org-agenda-remove-times-when-in-prefix t
  1584. "Non-nil means remove duplicate time specifications in agenda items.
  1585. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1586. time-of-day specification in a headline or diary entry is extracted and
  1587. placed into the prefix. If this option is non-nil, the original specification
  1588. \(a timestamp or -range, or just a plain time(range) specification like
  1589. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1590. cluttered.
  1591. The option can be t or nil. It may also be the symbol `beg', indicating
  1592. that the time should only be removed when it is located at the beginning of
  1593. the headline/diary entry."
  1594. :group 'org-agenda-line-format
  1595. :type '(choice
  1596. (const :tag "Always" t)
  1597. (const :tag "Never" nil)
  1598. (const :tag "When at beginning of entry" beg)))
  1599. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1600. "Non-nil means remove time ranges specifications in agenda
  1601. items that span on several days."
  1602. :group 'org-agenda-line-format
  1603. :version "24.1"
  1604. :type 'boolean)
  1605. (defcustom org-agenda-default-appointment-duration nil
  1606. "Default duration for appointments that only have a starting time.
  1607. When nil, no duration is specified in such cases.
  1608. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1609. :group 'org-agenda-line-format
  1610. :type '(choice
  1611. (integer :tag "Minutes")
  1612. (const :tag "No default duration")))
  1613. (defcustom org-agenda-show-inherited-tags t
  1614. "Non-nil means show inherited tags in each agenda line.
  1615. When this option is set to `always', it takes precedence over
  1616. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1617. in every agenda.
  1618. When this option is set to t (the default), inherited tags are
  1619. shown when they are available, i.e. when the value of
  1620. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1621. given agenda type.
  1622. This can be set to a list of agenda types in which the agenda
  1623. must display the inherited tags. Available types are `todo',
  1624. `agenda' and `search'.
  1625. When set to nil, never show inherited tags in agenda lines."
  1626. :group 'org-agenda-line-format
  1627. :group 'org-agenda
  1628. :version "24.3"
  1629. :type '(choice
  1630. (const :tag "Show inherited tags when available" t)
  1631. (const :tag "Always show inherited tags" always)
  1632. (repeat :tag "Show inherited tags only in selected agenda types"
  1633. (symbol :tag "Agenda type"))))
  1634. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1635. "List of agenda view types where to use tag inheritance.
  1636. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1637. controlled by `org-use-tag-inheritance'. In other agenda types,
  1638. `org-use-tag-inheritance' is not used for the selection of the
  1639. agenda entries. Still, you may want the agenda to be aware of
  1640. the inherited tags anyway, e.g. for later tag filtering.
  1641. Allowed value are `todo', `search' and `agenda'.
  1642. This variable has no effect if `org-agenda-show-inherited-tags'
  1643. is set to `always'. In that case, the agenda is aware of those
  1644. tags.
  1645. The default value sets tags in every agenda type. Setting this
  1646. option to nil will speed up non-tags agenda view a lot."
  1647. :group 'org-agenda
  1648. :version "26.1"
  1649. :package-version '(Org . "9.1")
  1650. :type '(choice
  1651. (const :tag "Use tag inheritance in all agenda types" t)
  1652. (repeat :tag "Use tag inheritance in selected agenda types"
  1653. (symbol :tag "Agenda type"))))
  1654. (defcustom org-agenda-hide-tags-regexp nil
  1655. "Regular expression used to filter away specific tags in agenda views.
  1656. This means that these tags will be present, but not be shown in the agenda
  1657. line. Secondary filtering will still work on the hidden tags.
  1658. Nil means don't hide any tags."
  1659. :group 'org-agenda-line-format
  1660. :type '(choice
  1661. (const :tag "Hide none" nil)
  1662. (string :tag "Regexp ")))
  1663. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1664. 'org-agenda-remove-tags)
  1665. (defcustom org-agenda-remove-tags nil
  1666. "Non-nil means remove the tags from the headline copy in the agenda.
  1667. When this is the symbol `prefix', only remove tags when
  1668. `org-agenda-prefix-format' contains a `%T' specifier."
  1669. :group 'org-agenda-line-format
  1670. :type '(choice
  1671. (const :tag "Always" t)
  1672. (const :tag "Never" nil)
  1673. (const :tag "When prefix format contains %T" prefix)))
  1674. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1675. (defcustom org-agenda-tags-column 'auto
  1676. "Shift tags in agenda items to this column.
  1677. If set to `auto', tags will be automatically aligned to the right
  1678. edge of the window.
  1679. If set to a positive number, tags will be left-aligned to that
  1680. column. If set to a negative number, tags will be right-aligned
  1681. to that column. For example, -80 works well for a normal 80
  1682. character screen."
  1683. :group 'org-agenda-line-format
  1684. :type '(choice
  1685. (const :tag "Automatically align to right edge of window" auto)
  1686. (integer :tag "Specific column" -80))
  1687. :package-version '(Org . "9.1")
  1688. :version "26.1")
  1689. (defcustom org-agenda-fontify-priorities 'cookies
  1690. "Non-nil means highlight low and high priorities in agenda.
  1691. When t, the highest priority entries are bold, lowest priority italic.
  1692. However, settings in `org-priority-faces' will overrule these faces.
  1693. When this variable is the symbol `cookies', only fontify the
  1694. cookies, not the entire task.
  1695. This may also be an association list of priority faces, whose
  1696. keys are the character values of `org-priority-highest',
  1697. `org-priority-default', and `org-priority-lowest' (the default values
  1698. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1699. color as a string, or a list like `(:background \"Red\")'.
  1700. If it is a color, the variable `org-faces-easy-properties'
  1701. determines if it is a foreground or a background color."
  1702. :group 'org-agenda-line-format
  1703. :type '(choice
  1704. (const :tag "Never" nil)
  1705. (const :tag "Defaults" t)
  1706. (const :tag "Cookies only" cookies)
  1707. (repeat :tag "Specify"
  1708. (list (character :tag "Priority" :value ?A)
  1709. (choice :tag "Face "
  1710. (string :tag "Color")
  1711. (sexp :tag "Face"))))))
  1712. (defcustom org-agenda-day-face-function nil
  1713. "Function called to determine what face should be used to display a day.
  1714. The only argument passed to that function is the day. It should
  1715. returns a face, or nil if does not want to specify a face and let
  1716. the normal rules apply."
  1717. :group 'org-agenda-line-format
  1718. :version "24.1"
  1719. :type '(choice (const nil) (function)))
  1720. (defcustom org-agenda-category-icon-alist nil
  1721. "Alist of category icon to be displayed in agenda views.
  1722. Each entry should have the following format:
  1723. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1724. Where CATEGORY-REGEXP is a regexp matching the categories where
  1725. the icon should be displayed.
  1726. FILE-OR-DATA either a file path or a string containing image data.
  1727. The other fields can be omitted safely if not needed:
  1728. TYPE indicates the image type.
  1729. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1730. image data.
  1731. PROPS are additional image attributes to assign to the image,
  1732. like, e.g. `:ascent center'.
  1733. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1734. If you want to set the display properties yourself, just put a
  1735. list as second element:
  1736. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1737. For example, to display a 16px horizontal space for Emacs
  1738. category, you can use:
  1739. (\"Emacs\" \\='(space . (:width (16))))"
  1740. :group 'org-agenda-line-format
  1741. :version "24.1"
  1742. :type '(alist :key-type (string :tag "Regexp matching category")
  1743. :value-type (choice (list :tag "Icon"
  1744. (string :tag "File or data")
  1745. (symbol :tag "Type")
  1746. (boolean :tag "Data?")
  1747. (repeat :tag "Extra image properties" :inline t symbol))
  1748. (list :tag "Display properties" sexp))))
  1749. (defgroup org-agenda-column-view nil
  1750. "Options concerning column view in the agenda."
  1751. :tag "Org Agenda Column View"
  1752. :group 'org-agenda)
  1753. (defcustom org-agenda-view-columns-initially nil
  1754. "When non-nil, switch to columns view right after creating the agenda."
  1755. :group 'org-agenda-column-view
  1756. :type 'boolean
  1757. :version "26.1"
  1758. :package-version '(Org . "9.0")
  1759. :safe #'booleanp)
  1760. (defcustom org-agenda-columns-show-summaries t
  1761. "Non-nil means show summaries for columns displayed in the agenda view."
  1762. :group 'org-agenda-column-view
  1763. :type 'boolean)
  1764. (defcustom org-agenda-columns-compute-summary-properties t
  1765. "Non-nil means recompute all summary properties before column view.
  1766. When column view in the agenda is listing properties that have a summary
  1767. operator, it can go to all relevant buffers and recompute the summaries
  1768. there. This can mean overhead for the agenda column view, but is necessary
  1769. to have thing up to date.
  1770. As a special case, a CLOCKSUM property also makes sure that the clock
  1771. computations are current."
  1772. :group 'org-agenda-column-view
  1773. :type 'boolean)
  1774. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1775. "Non-nil means the duration of an appointment will add to day effort.
  1776. The property to which appointment durations will be added is the one given
  1777. in the option `org-effort-property'. If an appointment does not have
  1778. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1779. is not set, an appointment without end time will not contribute to the time
  1780. estimate."
  1781. :group 'org-agenda-column-view
  1782. :type 'boolean)
  1783. (defcustom org-agenda-auto-exclude-function nil
  1784. "A function called with a tag to decide if it is filtered on \
  1785. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1786. The sole argument to the function, which is called once for each
  1787. possible tag, is a string giving the name of the tag. The
  1788. function should return either nil if the tag should be included
  1789. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1790. lines not carrying this tag.
  1791. Note that for the purpose of tag filtering, only the lower-case version of
  1792. all tags will be considered, so that this function will only ever see
  1793. the lower-case version of all tags."
  1794. :group 'org-agenda
  1795. :type '(choice (const nil) (function)))
  1796. (defcustom org-agenda-bulk-custom-functions nil
  1797. "Alist of characters and custom functions for bulk actions.
  1798. For example, this value makes those two functions available:
  1799. \\='((?R set-category)
  1800. (?C bulk-cut))
  1801. With selected entries in an agenda buffer, `B R' will call
  1802. the custom function `set-category' on the selected entries.
  1803. Note that functions in this alist don't need to be quoted."
  1804. :type '(alist :key-type character :value-type (group function))
  1805. :version "24.1"
  1806. :group 'org-agenda)
  1807. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1808. "Execute BODY with point at location given by `org-hd-marker' property.
  1809. If STRING is non-nil, the text property will be fetched from position 0
  1810. in that string. If STRING is nil, it will be fetched from the beginning
  1811. of the current line."
  1812. (org-with-gensyms (marker)
  1813. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1814. 'org-hd-marker ,string)))
  1815. (with-current-buffer (marker-buffer ,marker)
  1816. (save-excursion
  1817. (goto-char ,marker)
  1818. ,@body)))))
  1819. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1820. (defun org-add-agenda-custom-command (entry)
  1821. "Replace or add a command in `org-agenda-custom-commands'.
  1822. This is mostly for hacking and trying a new command - once the command
  1823. works you probably want to add it to `org-agenda-custom-commands' for good."
  1824. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1825. (if ass
  1826. (setcdr ass (cdr entry))
  1827. (push entry org-agenda-custom-commands))))
  1828. (defmacro org-agenda--insert-overriding-header (default)
  1829. "Insert header into agenda view.
  1830. The inserted header depends on `org-agenda-overriding-header'.
  1831. If the empty string, don't insert a header. If any other string,
  1832. insert it as a header. If nil, insert DEFAULT, which should
  1833. evaluate to a string."
  1834. (declare (debug (form)) (indent defun))
  1835. `(cond
  1836. ((not org-agenda-overriding-header) (insert ,default))
  1837. ((equal org-agenda-overriding-header "") nil)
  1838. ((stringp org-agenda-overriding-header)
  1839. (insert (propertize org-agenda-overriding-header
  1840. 'face 'org-agenda-structure)
  1841. "\n"))
  1842. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1843. org-agenda-overriding-header))))
  1844. ;;; Define the org-agenda-mode
  1845. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1846. (defvar org-agenda-mode-map (make-sparse-keymap)
  1847. "Keymap for `org-agenda-mode'.")
  1848. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1849. (defvar org-agenda-menu) ; defined later in this file.
  1850. (defvar org-agenda-restrict nil) ; defined later in this file.
  1851. (defvar org-agenda-follow-mode nil)
  1852. (defvar org-agenda-entry-text-mode nil)
  1853. (defvar org-agenda-clockreport-mode nil)
  1854. (defvar org-agenda-show-log nil
  1855. "When non-nil, show the log in the agenda.
  1856. Do not set this directly; instead use
  1857. `org-agenda-start-with-log-mode', which see.")
  1858. (defvar org-agenda-redo-command nil)
  1859. (defvar org-agenda-query-string nil)
  1860. (defvar org-agenda-mode-hook nil
  1861. "Hook run after `org-agenda-mode' is turned on.
  1862. The buffer is still writable when this hook is called.")
  1863. (defvar org-agenda-type nil)
  1864. (defvar org-agenda-force-single-file nil)
  1865. (defvar org-agenda-bulk-marked-entries nil
  1866. "List of markers that refer to marked entries in the agenda.")
  1867. (defvar org-agenda-current-date nil
  1868. "Active date when building the agenda.")
  1869. ;;; Multiple agenda buffers support
  1870. (defcustom org-agenda-sticky nil
  1871. "Non-nil means agenda q key will bury agenda buffers.
  1872. Agenda commands will then show existing buffer instead of generating new ones.
  1873. When nil, `q' will kill the single agenda buffer."
  1874. :group 'org-agenda
  1875. :version "24.3"
  1876. :type 'boolean)
  1877. ;;;###autoload
  1878. (defun org-toggle-sticky-agenda (&optional arg)
  1879. "Toggle `org-agenda-sticky'."
  1880. (interactive "P")
  1881. (let ((new-value (if arg
  1882. (> (prefix-numeric-value arg) 0)
  1883. (not org-agenda-sticky))))
  1884. (if (equal new-value org-agenda-sticky)
  1885. (and (called-interactively-p 'interactive)
  1886. (message "Sticky agenda was already %s"
  1887. (if org-agenda-sticky "enabled" "disabled")))
  1888. (setq org-agenda-sticky new-value)
  1889. (org-agenda-kill-all-agenda-buffers)
  1890. (and (called-interactively-p 'interactive)
  1891. (message "Sticky agenda %s"
  1892. (if org-agenda-sticky "enabled" "disabled"))))))
  1893. (defvar org-agenda-buffer nil
  1894. "Agenda buffer currently being generated.")
  1895. (defvar org-agenda-last-prefix-arg nil)
  1896. (defvar org-agenda-this-buffer-name nil)
  1897. (defvar org-agenda-doing-sticky-redo nil)
  1898. (defvar org-agenda-this-buffer-is-sticky nil)
  1899. (defvar org-agenda-last-indirect-buffer nil
  1900. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1901. (defconst org-agenda-local-vars
  1902. '(org-agenda-this-buffer-name
  1903. org-agenda-undo-list
  1904. org-agenda-pending-undo-list
  1905. org-agenda-follow-mode
  1906. org-agenda-entry-text-mode
  1907. org-agenda-clockreport-mode
  1908. org-agenda-show-log
  1909. org-agenda-redo-command
  1910. org-agenda-query-string
  1911. org-agenda-type
  1912. org-agenda-bulk-marked-entries
  1913. org-agenda-undo-has-started-in
  1914. org-agenda-info
  1915. org-agenda-pre-window-conf
  1916. org-agenda-columns-active
  1917. org-agenda-tag-filter
  1918. org-agenda-category-filter
  1919. org-agenda-top-headline-filter
  1920. org-agenda-regexp-filter
  1921. org-agenda-effort-filter
  1922. org-agenda-markers
  1923. org-agenda-last-search-view-search-was-boolean
  1924. org-agenda-last-indirect-buffer
  1925. org-agenda-filtered-by-category
  1926. org-agenda-filter-form
  1927. org-agenda-cycle-counter
  1928. org-agenda-last-prefix-arg)
  1929. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1930. (defun org-agenda-mode ()
  1931. "Mode for time-sorted view on action items in Org files.
  1932. The following commands are available:
  1933. \\{org-agenda-mode-map}"
  1934. (interactive)
  1935. (ignore-errors (require 'face-remap))
  1936. (let ((agenda-local-vars-to-keep
  1937. '(text-scale-mode-amount
  1938. text-scale-mode
  1939. text-scale-mode-lighter
  1940. face-remapping-alist))
  1941. (save (buffer-local-variables)))
  1942. (kill-all-local-variables)
  1943. (cl-flet ((reset-saved (var-set)
  1944. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1945. (dolist (elem save)
  1946. (pcase elem
  1947. (`(,var . ,val) ;ignore unbound variables
  1948. (when (and val (memq var var-set))
  1949. (set var val)))))))
  1950. (cond (org-agenda-doing-sticky-redo
  1951. ;; Refreshing sticky agenda-buffer
  1952. ;;
  1953. ;; Preserve the value of `org-agenda-local-vars' variables.
  1954. (mapc #'make-local-variable org-agenda-local-vars)
  1955. (reset-saved org-agenda-local-vars)
  1956. (setq-local org-agenda-this-buffer-is-sticky t))
  1957. (org-agenda-sticky
  1958. ;; Creating a sticky Agenda buffer for the first time
  1959. (mapc 'make-local-variable org-agenda-local-vars)
  1960. (setq-local org-agenda-this-buffer-is-sticky t))
  1961. (t
  1962. ;; Creating a non-sticky agenda buffer
  1963. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1964. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1965. (reset-saved agenda-local-vars-to-keep)))
  1966. (setq org-agenda-undo-list nil
  1967. org-agenda-pending-undo-list nil
  1968. org-agenda-bulk-marked-entries nil)
  1969. (setq major-mode 'org-agenda-mode)
  1970. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1971. (setq-local font-lock-global-modes (list 'not major-mode))
  1972. (setq mode-name "Org-Agenda")
  1973. (setq indent-tabs-mode nil)
  1974. (use-local-map org-agenda-mode-map)
  1975. (easy-menu-add org-agenda-menu)
  1976. (when org-startup-truncated (setq truncate-lines t))
  1977. (setq-local line-move-visual nil)
  1978. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1979. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1980. ;; Make sure properties are removed when copying text
  1981. (if (boundp 'filter-buffer-substring-functions)
  1982. (add-hook 'filter-buffer-substring-functions
  1983. (lambda (fun start end delete)
  1984. (substring-no-properties (funcall fun start end delete)))
  1985. nil t)
  1986. ;; Emacs >= 24.4.
  1987. (add-function :filter-return (local 'filter-buffer-substring-function)
  1988. #'substring-no-properties))
  1989. (unless org-agenda-keep-modes
  1990. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1991. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1992. org-agenda-show-log org-agenda-start-with-log-mode
  1993. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  1994. (add-to-invisibility-spec '(org-filtered))
  1995. (add-to-invisibility-spec '(org-link))
  1996. (easy-menu-change
  1997. '("Agenda") "Agenda Files"
  1998. (append
  1999. (list
  2000. (vector
  2001. (if (get 'org-agenda-files 'org-restrict)
  2002. "Restricted to single file"
  2003. "Edit File List")
  2004. '(org-edit-agenda-file-list)
  2005. (not (get 'org-agenda-files 'org-restrict)))
  2006. "--")
  2007. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2008. (org-agenda-set-mode-name)
  2009. (apply
  2010. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2011. (list 'org-agenda-mode-hook)))
  2012. (substitute-key-definition #'undo #'org-agenda-undo
  2013. org-agenda-mode-map global-map)
  2014. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2015. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2016. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2017. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2018. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2019. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2020. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2021. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2022. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2023. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2024. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2025. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2026. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2027. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2028. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2029. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2030. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2031. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2033. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2034. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2035. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2036. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2037. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2038. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2039. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2040. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2041. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2042. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2043. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2044. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2045. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2046. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2047. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2048. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2049. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2050. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2051. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2052. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2053. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2054. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2055. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2056. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2057. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2059. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2060. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2061. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2062. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2063. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2064. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2065. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2066. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2067. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2068. (while l (org-defkey org-agenda-mode-map
  2069. (number-to-string (pop l)) #'digit-argument)))
  2070. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2071. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2072. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2073. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2074. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2075. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2076. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2077. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2078. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2079. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2080. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2081. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2082. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2083. #'org-clock-modify-effort-estimate)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2085. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2086. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2087. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2088. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2089. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2090. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2091. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2092. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2093. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2094. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2095. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2096. (substitute-key-definition #'next-line #'org-agenda-next-line
  2097. org-agenda-mode-map global-map)
  2098. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2099. org-agenda-mode-map global-map)
  2100. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2101. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2102. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2103. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2104. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2105. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2106. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2107. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2108. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2109. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2110. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2111. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2112. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2113. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2114. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2115. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2116. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2117. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2118. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2119. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2120. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2121. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2122. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2123. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2124. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2125. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2126. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2127. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2128. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2129. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2130. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2131. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2132. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2133. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2134. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2135. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2136. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2137. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2138. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2139. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2140. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2141. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2142. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2143. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2144. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2145. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2146. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2147. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2148. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2149. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2150. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2151. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2152. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2153. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2154. (when org-agenda-mouse-1-follows-link
  2155. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2156. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2157. '("Agenda"
  2158. ("Agenda Files")
  2159. "--"
  2160. ("Agenda Dates"
  2161. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2162. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2163. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2164. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2165. "--"
  2166. ("View"
  2167. ["Day View" org-agenda-day-view
  2168. :active (org-agenda-check-type nil 'agenda)
  2169. :style radio :selected (eq org-agenda-current-span 'day)
  2170. :keys "v d (or just d)"]
  2171. ["Week View" org-agenda-week-view
  2172. :active (org-agenda-check-type nil 'agenda)
  2173. :style radio :selected (eq org-agenda-current-span 'week)
  2174. :keys "v w"]
  2175. ["Fortnight View" org-agenda-fortnight-view
  2176. :active (org-agenda-check-type nil 'agenda)
  2177. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2178. :keys "v t"]
  2179. ["Month View" org-agenda-month-view
  2180. :active (org-agenda-check-type nil 'agenda)
  2181. :style radio :selected (eq org-agenda-current-span 'month)
  2182. :keys "v m"]
  2183. ["Year View" org-agenda-year-view
  2184. :active (org-agenda-check-type nil 'agenda)
  2185. :style radio :selected (eq org-agenda-current-span 'year)
  2186. :keys "v y"]
  2187. "--"
  2188. ["Include Diary" org-agenda-toggle-diary
  2189. :style toggle :selected org-agenda-include-diary
  2190. :active (org-agenda-check-type nil 'agenda)]
  2191. ["Include Deadlines" org-agenda-toggle-deadlines
  2192. :style toggle :selected org-agenda-include-deadlines
  2193. :active (org-agenda-check-type nil 'agenda)]
  2194. ["Use Time Grid" org-agenda-toggle-time-grid
  2195. :style toggle :selected org-agenda-use-time-grid
  2196. :active (org-agenda-check-type nil 'agenda)]
  2197. "--"
  2198. ["Show clock report" org-agenda-clockreport-mode
  2199. :style toggle :selected org-agenda-clockreport-mode
  2200. :active (org-agenda-check-type nil 'agenda)]
  2201. ["Show some entry text" org-agenda-entry-text-mode
  2202. :style toggle :selected org-agenda-entry-text-mode
  2203. :active t]
  2204. "--"
  2205. ["Show Logbook entries" org-agenda-log-mode
  2206. :style toggle :selected org-agenda-show-log
  2207. :active (org-agenda-check-type nil 'agenda)
  2208. :keys "v l (or just l)"]
  2209. ["Include archived trees" org-agenda-archives-mode
  2210. :style toggle :selected org-agenda-archives-mode :active t
  2211. :keys "v a"]
  2212. ["Include archive files" (org-agenda-archives-mode t)
  2213. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2214. :keys "v A"]
  2215. "--"
  2216. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2217. ("Filter current view"
  2218. ["with generic interface" org-agenda-filter t]
  2219. "--"
  2220. ["by category at cursor" org-agenda-filter-by-category t]
  2221. ["by tag" org-agenda-filter-by-tag t]
  2222. ["by effort" org-agenda-filter-by-effort t]
  2223. ["by regexp" org-agenda-filter-by-regexp t]
  2224. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2225. "--"
  2226. ["Remove all filtering" org-agenda-filter-remove-all t]
  2227. "--"
  2228. ["limit" org-agenda-limit-interactively t])
  2229. ["Rebuild buffer" org-agenda-redo t]
  2230. ["Write view to file" org-agenda-write t]
  2231. ["Save all Org buffers" org-save-all-org-buffers t]
  2232. "--"
  2233. ["Show original entry" org-agenda-show t]
  2234. ["Go To (other window)" org-agenda-goto t]
  2235. ["Go To (this window)" org-agenda-switch-to t]
  2236. ["Capture with cursor date" org-agenda-capture t]
  2237. ["Follow Mode" org-agenda-follow-mode
  2238. :style toggle :selected org-agenda-follow-mode :active t]
  2239. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2240. "--"
  2241. ("TODO"
  2242. ["Cycle TODO" org-agenda-todo t]
  2243. ["Next TODO set" org-agenda-todo-nextset t]
  2244. ["Previous TODO set" org-agenda-todo-previousset t]
  2245. ["Add note" org-agenda-add-note t])
  2246. ("Archive/Refile/Delete"
  2247. ["Archive default" org-agenda-archive-default t]
  2248. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2249. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2250. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2251. ["Archive subtree" org-agenda-archive t]
  2252. "--"
  2253. ["Refile" org-agenda-refile t]
  2254. "--"
  2255. ["Delete subtree" org-agenda-kill t])
  2256. ("Bulk action"
  2257. ["Mark entry" org-agenda-bulk-mark t]
  2258. ["Mark all" org-agenda-bulk-mark-all t]
  2259. ["Unmark entry" org-agenda-bulk-unmark t]
  2260. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2261. ["Toggle mark" org-agenda-bulk-toggle t]
  2262. ["Toggle all" org-agenda-bulk-toggle-all t]
  2263. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2264. ["Act on all marked" org-agenda-bulk-action t]
  2265. "--"
  2266. ("Tags and Properties"
  2267. ["Show all Tags" org-agenda-show-tags t]
  2268. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2269. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2270. "--"
  2271. ["Column View" org-columns t])
  2272. ("Deadline/Schedule"
  2273. ["Schedule" org-agenda-schedule t]
  2274. ["Set Deadline" org-agenda-deadline t]
  2275. "--"
  2276. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2277. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2278. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2279. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2280. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2281. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2282. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2283. ("Clock and Effort"
  2284. ["Clock in" org-agenda-clock-in t]
  2285. ["Clock out" org-agenda-clock-out t]
  2286. ["Clock cancel" org-agenda-clock-cancel t]
  2287. ["Goto running clock" org-clock-goto t]
  2288. "--"
  2289. ["Set Effort" org-agenda-set-effort t]
  2290. ["Change clocked effort" org-clock-modify-effort-estimate
  2291. (org-clock-is-active)])
  2292. ("Priority"
  2293. ["Set Priority" org-agenda-priority t]
  2294. ["Increase Priority" org-agenda-priority-up t]
  2295. ["Decrease Priority" org-agenda-priority-down t]
  2296. ["Show Priority" org-priority-show t])
  2297. ("Calendar/Diary"
  2298. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2299. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2300. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2301. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2302. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2303. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2304. "--"
  2305. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2306. "--"
  2307. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2308. "--"
  2309. ("MobileOrg"
  2310. ["Push Files and Views" org-mobile-push t]
  2311. ["Get Captured and Flagged" org-mobile-pull t]
  2312. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2313. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2314. "--"
  2315. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2316. "--"
  2317. ["Quit" org-agenda-quit t]
  2318. ["Exit and Release Buffers" org-agenda-exit t]
  2319. ))
  2320. ;;; Agenda undo
  2321. (defvar org-agenda-allow-remote-undo t
  2322. "Non-nil means allow remote undo from the agenda buffer.")
  2323. (defvar org-agenda-undo-has-started-in nil
  2324. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2325. (defun org-agenda-undo ()
  2326. "Undo a remote editing step in the agenda.
  2327. This undoes changes both in the agenda buffer and in the remote buffer
  2328. that have been changed along."
  2329. (interactive)
  2330. (or org-agenda-allow-remote-undo
  2331. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2332. (when (not (eq this-command last-command))
  2333. (setq org-agenda-undo-has-started-in nil
  2334. org-agenda-pending-undo-list org-agenda-undo-list))
  2335. (when (not org-agenda-pending-undo-list)
  2336. (user-error "No further undo information"))
  2337. (let* ((entry (pop org-agenda-pending-undo-list))
  2338. buf line cmd rembuf)
  2339. (setq cmd (pop entry) line (pop entry))
  2340. (setq rembuf (nth 2 entry))
  2341. (org-with-remote-undo rembuf
  2342. (while (bufferp (setq buf (pop entry)))
  2343. (when (pop entry)
  2344. (with-current-buffer buf
  2345. (let ((last-undo-buffer buf)
  2346. (inhibit-read-only t))
  2347. (unless (memq buf org-agenda-undo-has-started-in)
  2348. (push buf org-agenda-undo-has-started-in)
  2349. (make-local-variable 'pending-undo-list)
  2350. (undo-start))
  2351. (while (and pending-undo-list
  2352. (listp pending-undo-list)
  2353. (not (car pending-undo-list)))
  2354. (pop pending-undo-list))
  2355. (undo-more 1))))))
  2356. (org-goto-line line)
  2357. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2358. (defun org-verify-change-for-undo (l1 l2)
  2359. "Verify that a real change occurred between the undo lists L1 and L2."
  2360. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2361. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2362. (not (eq l1 l2)))
  2363. ;;; Agenda dispatch
  2364. (defvar org-agenda-restrict-begin (make-marker))
  2365. (defvar org-agenda-restrict-end (make-marker))
  2366. (defvar org-agenda-last-dispatch-buffer nil)
  2367. (defvar org-agenda-overriding-restriction nil)
  2368. (defcustom org-agenda-custom-commands-contexts nil
  2369. "Alist of custom agenda keys and contextual rules.
  2370. For example, if you have a custom agenda command \"p\" and you
  2371. want this command to be accessible only from plain text files,
  2372. use this:
  2373. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2374. Here are the available contexts definitions:
  2375. in-file: command displayed only in matching files
  2376. in-mode: command displayed only in matching modes
  2377. not-in-file: command not displayed in matching files
  2378. not-in-mode: command not displayed in matching modes
  2379. in-buffer: command displayed only in matching buffers
  2380. not-in-buffer: command not displayed in matching buffers
  2381. [function]: a custom function taking no argument
  2382. If you define several checks, the agenda command will be
  2383. accessible if there is at least one valid check.
  2384. You can also bind a key to another agenda custom command
  2385. depending on contextual rules.
  2386. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2387. Here it means: in .txt files, use \"p\" as the key for the
  2388. agenda command otherwise associated with \"q\". (The command
  2389. originally associated with \"q\" is not displayed to avoid
  2390. duplicates.)"
  2391. :version "24.3"
  2392. :group 'org-agenda-custom-commands
  2393. :type '(repeat (list :tag "Rule"
  2394. (string :tag " Agenda key")
  2395. (string :tag "Replace by command")
  2396. (repeat :tag "Available when"
  2397. (choice
  2398. (cons :tag "Condition"
  2399. (choice
  2400. (const :tag "In file" in-file)
  2401. (const :tag "Not in file" not-in-file)
  2402. (const :tag "In buffer" in-buffer)
  2403. (const :tag "Not in buffer" not-in-buffer)
  2404. (const :tag "In mode" in-mode)
  2405. (const :tag "Not in mode" not-in-mode))
  2406. (regexp))
  2407. (function :tag "Custom function"))))))
  2408. (defcustom org-agenda-max-entries nil
  2409. "Maximum number of entries to display in an agenda.
  2410. This can be nil (no limit) or an integer or an alist of agenda
  2411. types with an associated number of entries to display in this
  2412. type."
  2413. :version "24.4"
  2414. :package-version '(Org . "8.0")
  2415. :group 'org-agenda-custom-commands
  2416. :type '(choice (symbol :tag "No limit" nil)
  2417. (integer :tag "Max number of entries")
  2418. (repeat
  2419. (cons (choice :tag "Agenda type"
  2420. (const agenda)
  2421. (const todo)
  2422. (const tags)
  2423. (const search))
  2424. (integer :tag "Max number of entries")))))
  2425. (defcustom org-agenda-max-todos nil
  2426. "Maximum number of TODOs to display in an agenda.
  2427. This can be nil (no limit) or an integer or an alist of agenda
  2428. types with an associated number of entries to display in this
  2429. type."
  2430. :version "24.4"
  2431. :package-version '(Org . "8.0")
  2432. :group 'org-agenda-custom-commands
  2433. :type '(choice (symbol :tag "No limit" nil)
  2434. (integer :tag "Max number of TODOs")
  2435. (repeat
  2436. (cons (choice :tag "Agenda type"
  2437. (const agenda)
  2438. (const todo)
  2439. (const tags)
  2440. (const search))
  2441. (integer :tag "Max number of TODOs")))))
  2442. (defcustom org-agenda-max-tags nil
  2443. "Maximum number of tagged entries to display in an agenda.
  2444. This can be nil (no limit) or an integer or an alist of agenda
  2445. types with an associated number of entries to display in this
  2446. type."
  2447. :version "24.4"
  2448. :package-version '(Org . "8.0")
  2449. :group 'org-agenda-custom-commands
  2450. :type '(choice (symbol :tag "No limit" nil)
  2451. (integer :tag "Max number of tagged entries")
  2452. (repeat
  2453. (cons (choice :tag "Agenda type"
  2454. (const agenda)
  2455. (const todo)
  2456. (const tags)
  2457. (const search))
  2458. (integer :tag "Max number of tagged entries")))))
  2459. (defcustom org-agenda-max-effort nil
  2460. "Maximum cumulated effort duration for the agenda.
  2461. This can be nil (no limit) or a number of minutes (as an integer)
  2462. or an alist of agenda types with an associated number of minutes
  2463. to limit entries to in this type."
  2464. :version "24.4"
  2465. :package-version '(Org . "8.0")
  2466. :group 'org-agenda-custom-commands
  2467. :type '(choice (symbol :tag "No limit" nil)
  2468. (integer :tag "Max number of minutes")
  2469. (repeat
  2470. (cons (choice :tag "Agenda type"
  2471. (const agenda)
  2472. (const todo)
  2473. (const tags)
  2474. (const search))
  2475. (integer :tag "Max number of minutes")))))
  2476. (defvar org-agenda-keep-restricted-file-list nil)
  2477. (defvar org-keys nil)
  2478. (defvar org-match nil)
  2479. ;;;###autoload
  2480. (defun org-agenda (&optional arg org-keys restriction)
  2481. "Dispatch agenda commands to collect entries to the agenda buffer.
  2482. Prompts for a command to execute. Any prefix arg will be passed
  2483. on to the selected command. The default selections are:
  2484. a Call `org-agenda-list' to display the agenda for current day or week.
  2485. t Call `org-todo-list' to display the global todo list.
  2486. T Call `org-todo-list' to display the global todo list, select only
  2487. entries with a specific TODO keyword (the user gets a prompt).
  2488. m Call `org-tags-view' to display headlines with tags matching
  2489. a condition (the user is prompted for the condition).
  2490. M Like `m', but select only TODO entries, no ordinary headlines.
  2491. e Export views to associated files.
  2492. s Search entries for keywords.
  2493. S Search entries for keywords, only with TODO keywords.
  2494. / Multi occur across all agenda files and also files listed
  2495. in `org-agenda-text-search-extra-files'.
  2496. < Restrict agenda commands to buffer, subtree, or region.
  2497. Press several times to get the desired effect.
  2498. > Remove a previous restriction.
  2499. # List \"stuck\" projects.
  2500. ! Configure what \"stuck\" means.
  2501. C Configure custom agenda commands.
  2502. More commands can be added by configuring the variable
  2503. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2504. searches can be pre-defined in this way.
  2505. If the current buffer is in Org mode and visiting a file, you can also
  2506. first press `<' once to indicate that the agenda should be temporarily
  2507. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2508. Pressing `<' twice means to restrict to the current subtree or region
  2509. \(if active)."
  2510. (interactive "P")
  2511. (catch 'exit
  2512. (let* ((prefix-descriptions nil)
  2513. (org-agenda-buffer-name org-agenda-buffer-name)
  2514. (org-agenda-window-setup (if (equal (buffer-name)
  2515. org-agenda-buffer-name)
  2516. 'current-window
  2517. org-agenda-window-setup))
  2518. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2519. (org-agenda-custom-commands
  2520. ;; normalize different versions
  2521. (delq nil
  2522. (mapcar
  2523. (lambda (x)
  2524. (cond ((stringp (cdr x))
  2525. (push x prefix-descriptions)
  2526. nil)
  2527. ((stringp (nth 1 x)) x)
  2528. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2529. (t (cons (car x) (cons "" (cdr x))))))
  2530. org-agenda-custom-commands)))
  2531. (org-agenda-custom-commands
  2532. (org-contextualize-keys
  2533. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2534. (buf (current-buffer))
  2535. (bfn (buffer-file-name (buffer-base-buffer)))
  2536. entry key type org-match lprops ans)
  2537. ;; Turn off restriction unless there is an overriding one,
  2538. (unless org-agenda-overriding-restriction
  2539. (unless org-agenda-keep-restricted-file-list
  2540. ;; There is a request to keep the file list in place
  2541. (put 'org-agenda-files 'org-restrict nil))
  2542. (setq org-agenda-restrict nil)
  2543. (move-marker org-agenda-restrict-begin nil)
  2544. (move-marker org-agenda-restrict-end nil))
  2545. ;; Delete old local properties
  2546. (put 'org-agenda-redo-command 'org-lprops nil)
  2547. ;; Delete previously set last-arguments
  2548. (put 'org-agenda-redo-command 'last-args nil)
  2549. ;; Remember where this call originated
  2550. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2551. (unless org-keys
  2552. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2553. org-keys (car ans)
  2554. restriction (cdr ans)))
  2555. ;; If we have sticky agenda buffers, set a name for the buffer,
  2556. ;; depending on the invoking keys. The user may still set this
  2557. ;; as a command option, which will overwrite what we do here.
  2558. (when org-agenda-sticky
  2559. (setq org-agenda-buffer-name
  2560. (format "*Org Agenda(%s)*" org-keys)))
  2561. ;; Establish the restriction, if any
  2562. (when (and (not org-agenda-overriding-restriction) restriction)
  2563. (put 'org-agenda-files 'org-restrict (list bfn))
  2564. (cond
  2565. ((eq restriction 'region)
  2566. (setq org-agenda-restrict (current-buffer))
  2567. (move-marker org-agenda-restrict-begin (region-beginning))
  2568. (move-marker org-agenda-restrict-end (region-end)))
  2569. ((eq restriction 'subtree)
  2570. (save-excursion
  2571. (setq org-agenda-restrict (current-buffer))
  2572. (org-back-to-heading t)
  2573. (move-marker org-agenda-restrict-begin (point))
  2574. (move-marker org-agenda-restrict-end
  2575. (progn (org-end-of-subtree t)))))
  2576. ((and (eq restriction 'buffer)
  2577. (or (< 1 (point-min))
  2578. (< (point-max) (1+ (buffer-size)))))
  2579. (setq org-agenda-restrict (current-buffer))
  2580. (move-marker org-agenda-restrict-begin (point-min))
  2581. (move-marker org-agenda-restrict-end (point-max)))))
  2582. ;; For example the todo list should not need it (but does...)
  2583. (cond
  2584. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2585. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2586. (progn
  2587. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2588. lprops (nth 4 entry))
  2589. (when org-agenda-sticky
  2590. (setq org-agenda-buffer-name
  2591. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2592. (format "*Org Agenda(%s)*" org-keys))))
  2593. (put 'org-agenda-redo-command 'org-lprops lprops)
  2594. (cond
  2595. ((eq type 'agenda)
  2596. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2597. ((eq type 'agenda*)
  2598. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2599. ((eq type 'alltodo)
  2600. (org-let lprops '(org-todo-list current-prefix-arg)))
  2601. ((eq type 'search)
  2602. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2603. ((eq type 'stuck)
  2604. (org-let lprops '(org-agenda-list-stuck-projects
  2605. current-prefix-arg)))
  2606. ((eq type 'tags)
  2607. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2608. ((eq type 'tags-todo)
  2609. (org-let lprops '(org-tags-view '(4) org-match)))
  2610. ((eq type 'todo)
  2611. (org-let lprops '(org-todo-list org-match)))
  2612. ((eq type 'tags-tree)
  2613. (org-check-for-org-mode)
  2614. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2615. ((eq type 'todo-tree)
  2616. (org-check-for-org-mode)
  2617. (org-let lprops
  2618. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2619. (regexp-quote org-match) "\\>"))))
  2620. ((eq type 'occur-tree)
  2621. (org-check-for-org-mode)
  2622. (org-let lprops '(org-occur org-match)))
  2623. ((functionp type)
  2624. (org-let lprops '(funcall type org-match)))
  2625. ((fboundp type)
  2626. (org-let lprops '(funcall type org-match)))
  2627. (t (user-error "Invalid custom agenda command type %s" type))))
  2628. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2629. ((equal org-keys "C")
  2630. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2631. (customize-variable 'org-agenda-custom-commands))
  2632. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2633. ((equal org-keys "s") (call-interactively 'org-search-view))
  2634. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2635. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2636. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2637. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2638. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2639. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2640. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2641. (add-hook
  2642. 'post-command-hook
  2643. (lambda ()
  2644. (unless (current-message)
  2645. (let* ((m (org-agenda-get-any-marker))
  2646. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2647. (when note
  2648. (message "FLAGGING-NOTE ([?] for more info): %s"
  2649. (org-add-props
  2650. (replace-regexp-in-string
  2651. "\\\\n" "//"
  2652. (copy-sequence note))
  2653. nil 'face 'org-warning))))))
  2654. t t))
  2655. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2656. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2657. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2658. (t (user-error "Invalid agenda key"))))))
  2659. (defvar org-agenda-multi)
  2660. (defun org-agenda-append-agenda ()
  2661. "Append another agenda view to the current one.
  2662. This function allows interactive building of block agendas.
  2663. Agenda views are separated by `org-agenda-block-separator'."
  2664. (interactive)
  2665. (unless (derived-mode-p 'org-agenda-mode)
  2666. (user-error "Can only append from within agenda buffer"))
  2667. (let ((org-agenda-multi t))
  2668. (org-agenda)
  2669. (widen)
  2670. (org-agenda-finalize)
  2671. (setq buffer-read-only t)
  2672. (org-agenda-fit-window-to-buffer)))
  2673. (defun org-agenda-normalize-custom-commands (cmds)
  2674. "Normalize custom commands CMDS."
  2675. (delq nil
  2676. (mapcar
  2677. (lambda (x)
  2678. (cond ((stringp (cdr x)) nil)
  2679. ((stringp (nth 1 x)) x)
  2680. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2681. (t (cons (car x) (cons "" (cdr x))))))
  2682. cmds)))
  2683. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2684. "The user interface for selecting an agenda command."
  2685. (catch 'exit
  2686. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2687. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2688. (region-p (org-region-active-p))
  2689. (custom org-agenda-custom-commands)
  2690. (selstring "")
  2691. restriction second-time
  2692. c entry key type match prefixes rmheader header-end custom1 desc
  2693. line lines left right n n1)
  2694. (save-window-excursion
  2695. (delete-other-windows)
  2696. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2697. (erase-buffer)
  2698. (insert (eval-when-compile
  2699. (let ((header
  2700. "Press key for an agenda command:
  2701. -------------------------------- < Buffer, subtree/region restriction
  2702. a Agenda for current week or day > Remove restriction
  2703. t List of all TODO entries e Export agenda views
  2704. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2705. s Search for keywords M Like m, but only TODO entries
  2706. / Multi-occur S Like s, but only TODO entries
  2707. ? Find :FLAGGED: entries C Configure custom agenda commands
  2708. * Toggle sticky agenda views # List stuck projects (!=configure)
  2709. ")
  2710. (start 0))
  2711. (while (string-match
  2712. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2713. header start)
  2714. (setq start (match-end 0))
  2715. (add-text-properties (match-beginning 2) (match-end 2)
  2716. '(face bold) header))
  2717. header)))
  2718. (setq header-end (point-marker))
  2719. (while t
  2720. (setq custom1 custom)
  2721. (when (eq rmheader t)
  2722. (org-goto-line 1)
  2723. (re-search-forward ":" nil t)
  2724. (delete-region (match-end 0) (point-at-eol))
  2725. (forward-char 1)
  2726. (looking-at "-+")
  2727. (delete-region (match-end 0) (point-at-eol))
  2728. (move-marker header-end (match-end 0)))
  2729. (goto-char header-end)
  2730. (delete-region (point) (point-max))
  2731. ;; Produce all the lines that describe custom commands and prefixes
  2732. (setq lines nil)
  2733. (while (setq entry (pop custom1))
  2734. (setq key (car entry) desc (nth 1 entry)
  2735. type (nth 2 entry)
  2736. match (nth 3 entry))
  2737. (if (> (length key) 1)
  2738. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2739. (setq line
  2740. (format
  2741. "%-4s%-14s"
  2742. (org-add-props (copy-sequence key)
  2743. '(face bold))
  2744. (cond
  2745. ((string-match "\\S-" desc) desc)
  2746. ((eq type 'agenda) "Agenda for current week or day")
  2747. ((eq type 'agenda*) "Appointments for current week or day")
  2748. ((eq type 'alltodo) "List of all TODO entries")
  2749. ((eq type 'search) "Word search")
  2750. ((eq type 'stuck) "List of stuck projects")
  2751. ((eq type 'todo) "TODO keyword")
  2752. ((eq type 'tags) "Tags query")
  2753. ((eq type 'tags-todo) "Tags (TODO)")
  2754. ((eq type 'tags-tree) "Tags tree")
  2755. ((eq type 'todo-tree) "TODO kwd tree")
  2756. ((eq type 'occur-tree) "Occur tree")
  2757. ((functionp type) (if (symbolp type)
  2758. (symbol-name type)
  2759. "Lambda expression"))
  2760. (t "???"))))
  2761. (cond
  2762. ((not (org-string-nw-p match)) nil)
  2763. (org-agenda-menu-show-matcher
  2764. (setq line
  2765. (concat line ": "
  2766. (cond
  2767. ((stringp match)
  2768. (propertize match 'face 'org-warning))
  2769. ((listp type)
  2770. (format "set of %d commands" (length type)))))))
  2771. (t
  2772. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2773. (push line lines)))
  2774. (setq lines (nreverse lines))
  2775. (when prefixes
  2776. (mapc (lambda (x)
  2777. (push
  2778. (format "%s %s"
  2779. (org-add-props (char-to-string x)
  2780. nil 'face 'bold)
  2781. (or (cdr (assoc (concat selstring
  2782. (char-to-string x))
  2783. prefix-descriptions))
  2784. "Prefix key"))
  2785. lines))
  2786. prefixes))
  2787. ;; Check if we should display in two columns
  2788. (if org-agenda-menu-two-columns
  2789. (progn
  2790. (setq n (length lines)
  2791. n1 (+ (/ n 2) (mod n 2))
  2792. right (nthcdr n1 lines)
  2793. left (copy-sequence lines))
  2794. (setcdr (nthcdr (1- n1) left) nil))
  2795. (setq left lines right nil))
  2796. (while left
  2797. (insert "\n" (pop left))
  2798. (when right
  2799. (if (< (current-column) 40)
  2800. (move-to-column 40 t)
  2801. (insert " "))
  2802. (insert (pop right))))
  2803. ;; Make the window the right size
  2804. (goto-char (point-min))
  2805. (if second-time
  2806. (when (not (pos-visible-in-window-p (point-max)))
  2807. (org-fit-window-to-buffer))
  2808. (setq second-time t)
  2809. (org-fit-window-to-buffer))
  2810. ;; Hint to navigation if window too small for all information
  2811. (setq header-line-format
  2812. (when (not (pos-visible-in-window-p (point-max)))
  2813. "Use C-v, M-v, C-n or C-p to navigate."))
  2814. ;; Ask for selection
  2815. (cl-loop
  2816. do (progn
  2817. (message "Press key for agenda command%s:"
  2818. (if (or restrict-ok org-agenda-overriding-restriction)
  2819. (if org-agenda-overriding-restriction
  2820. " (restriction lock active)"
  2821. (if restriction
  2822. (format " (restricted to %s)" restriction)
  2823. " (unrestricted)"))
  2824. ""))
  2825. (setq c (read-char-exclusive)))
  2826. until (not (memq c '(14 16 22 134217846)))
  2827. do (org-scroll c))
  2828. (message "")
  2829. (cond
  2830. ((assoc (char-to-string c) custom)
  2831. (setq selstring (concat selstring (char-to-string c)))
  2832. (throw 'exit (cons selstring restriction)))
  2833. ((memq c prefixes)
  2834. (setq selstring (concat selstring (char-to-string c))
  2835. prefixes nil
  2836. rmheader (or rmheader t)
  2837. custom (delq nil (mapcar
  2838. (lambda (x)
  2839. (if (or (= (length (car x)) 1)
  2840. (/= (string-to-char (car x)) c))
  2841. nil
  2842. (cons (substring (car x) 1) (cdr x))))
  2843. custom))))
  2844. ((eq c ?*)
  2845. (call-interactively 'org-toggle-sticky-agenda)
  2846. (sit-for 2))
  2847. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2848. (message "Restriction is only possible in Org buffers")
  2849. (ding) (sit-for 1))
  2850. ((eq c ?1)
  2851. (org-agenda-remove-restriction-lock 'noupdate)
  2852. (setq restriction 'buffer))
  2853. ((eq c ?0)
  2854. (org-agenda-remove-restriction-lock 'noupdate)
  2855. (setq restriction (if region-p 'region 'subtree)))
  2856. ((eq c ?<)
  2857. (org-agenda-remove-restriction-lock 'noupdate)
  2858. (setq restriction
  2859. (cond
  2860. ((eq restriction 'buffer)
  2861. (if region-p 'region 'subtree))
  2862. ((memq restriction '(subtree region))
  2863. nil)
  2864. (t 'buffer))))
  2865. ((eq c ?>)
  2866. (org-agenda-remove-restriction-lock 'noupdate)
  2867. (setq restriction nil))
  2868. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2869. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2870. ((and (> (length selstring) 0) (eq c ?\d))
  2871. (delete-window)
  2872. (org-agenda-get-restriction-and-command prefix-descriptions))
  2873. ((equal c ?q) (error "Abort"))
  2874. (t (user-error "Invalid key %c" c))))))))
  2875. (defun org-agenda-fit-window-to-buffer ()
  2876. "Fit the window to the buffer size."
  2877. (and (memq org-agenda-window-setup '(reorganize-frame))
  2878. (fboundp 'fit-window-to-buffer)
  2879. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2880. (= (car org-agenda-window-frame-fractions) 1.0))
  2881. (delete-other-windows)
  2882. (org-fit-window-to-buffer
  2883. nil
  2884. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2885. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2886. (defvar org-cmd nil)
  2887. (defvar org-agenda-overriding-cmd nil)
  2888. (defvar org-agenda-overriding-arguments nil)
  2889. (defvar org-agenda-overriding-cmd-arguments nil)
  2890. (defun org-agenda-run-series (name series)
  2891. "Run agenda NAME as a SERIES of agenda commands."
  2892. (org-let (nth 1 series) '(org-agenda-prepare name))
  2893. ;; We need to reset agenda markers here, because when constructing a
  2894. ;; block agenda, the individual blocks do not do that.
  2895. (org-agenda-reset-markers)
  2896. (let* ((org-agenda-multi t)
  2897. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2898. (cmds (car series))
  2899. (gprops (nth 1 series))
  2900. match ;; The byte compiler incorrectly complains about this. Keep it!
  2901. org-cmd type lprops)
  2902. (while (setq org-cmd (pop cmds))
  2903. (setq type (car org-cmd))
  2904. (setq match (eval (nth 1 org-cmd)))
  2905. (setq lprops (nth 2 org-cmd))
  2906. (let ((org-agenda-overriding-arguments
  2907. (if (eq org-agenda-overriding-cmd org-cmd)
  2908. (or org-agenda-overriding-arguments
  2909. org-agenda-overriding-cmd-arguments))))
  2910. (cond
  2911. ((eq type 'agenda)
  2912. (org-let2 gprops lprops
  2913. '(call-interactively 'org-agenda-list)))
  2914. ((eq type 'agenda*)
  2915. (org-let2 gprops lprops
  2916. '(funcall 'org-agenda-list nil nil t)))
  2917. ((eq type 'alltodo)
  2918. (org-let2 gprops lprops
  2919. '(call-interactively 'org-todo-list)))
  2920. ((eq type 'search)
  2921. (org-let2 gprops lprops
  2922. '(org-search-view current-prefix-arg match nil)))
  2923. ((eq type 'stuck)
  2924. (org-let2 gprops lprops
  2925. '(call-interactively 'org-agenda-list-stuck-projects)))
  2926. ((eq type 'tags)
  2927. (org-let2 gprops lprops
  2928. '(org-tags-view current-prefix-arg match)))
  2929. ((eq type 'tags-todo)
  2930. (org-let2 gprops lprops
  2931. '(org-tags-view '(4) match)))
  2932. ((eq type 'todo)
  2933. (org-let2 gprops lprops
  2934. '(org-todo-list match)))
  2935. ((fboundp type)
  2936. (org-let2 gprops lprops
  2937. '(funcall type match)))
  2938. (t (error "Invalid type in command series")))))
  2939. (widen)
  2940. (let ((inhibit-read-only t))
  2941. (add-text-properties (point-min) (point-max)
  2942. `(org-series t org-series-redo-cmd ,redo)))
  2943. (setq org-agenda-redo-command redo)
  2944. (goto-char (point-min)))
  2945. (org-agenda-fit-window-to-buffer)
  2946. (org-let (nth 1 series) '(org-agenda-finalize)))
  2947. ;;;###autoload
  2948. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2949. "Run an agenda command in batch mode and send the result to STDOUT.
  2950. If CMD-KEY is a string of length 1, it is used as a key in
  2951. `org-agenda-custom-commands' and triggers this command. If it is a
  2952. longer string it is used as a tags/todo match string.
  2953. Parameters are alternating variable names and values that will be bound
  2954. before running the agenda command."
  2955. (org-eval-in-environment (org-make-parameter-alist parameters)
  2956. (let (org-agenda-sticky)
  2957. (if (> (length cmd-key) 1)
  2958. (org-tags-view nil cmd-key)
  2959. (org-agenda nil cmd-key))))
  2960. (set-buffer org-agenda-buffer-name)
  2961. (princ (buffer-string)))
  2962. (defvar org-agenda-info nil)
  2963. ;;;###autoload
  2964. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2965. "Run an agenda command in batch mode and send the result to STDOUT.
  2966. If CMD-KEY is a string of length 1, it is used as a key in
  2967. `org-agenda-custom-commands' and triggers this command. If it is a
  2968. longer string it is used as a tags/todo match string.
  2969. Parameters are alternating variable names and values that will be bound
  2970. before running the agenda command.
  2971. The output gives a line for each selected agenda item. Each
  2972. item is a list of comma-separated values, like this:
  2973. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2974. category The category of the item
  2975. head The headline, without TODO kwd, TAGS and PRIORITY
  2976. type The type of the agenda entry, can be
  2977. todo selected in TODO match
  2978. tagsmatch selected in tags match
  2979. diary imported from diary
  2980. deadline a deadline on given date
  2981. scheduled scheduled on given date
  2982. timestamp entry has timestamp on given date
  2983. closed entry was closed on given date
  2984. upcoming-deadline warning about deadline
  2985. past-scheduled forwarded scheduled item
  2986. block entry has date block including g. date
  2987. todo The todo keyword, if any
  2988. tags All tags including inherited ones, separated by colons
  2989. date The relevant date, like 2007-2-14
  2990. time The time, like 15:00-16:50
  2991. extra String with extra planning info
  2992. priority-l The priority letter if any was given
  2993. priority-n The computed numerical priority
  2994. agenda-day The day in the agenda where this is listed"
  2995. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2996. (org-make-parameter-alist parameters))
  2997. (if (> (length cmd-key) 2)
  2998. (org-tags-view nil cmd-key)
  2999. (org-agenda nil cmd-key)))
  3000. (set-buffer org-agenda-buffer-name)
  3001. (let ((lines (org-split-string (buffer-string) "\n")))
  3002. (dolist (line lines)
  3003. (when (get-text-property 0 'org-category line)
  3004. (setq org-agenda-info
  3005. (org-fix-agenda-info (text-properties-at 0 line)))
  3006. (princ
  3007. (mapconcat 'org-agenda-export-csv-mapper
  3008. '(org-category txt type todo tags date time extra
  3009. priority-letter priority agenda-day)
  3010. ","))
  3011. (princ "\n")))))
  3012. (defun org-fix-agenda-info (props)
  3013. "Make sure all properties on an agenda item have a canonical form.
  3014. This ensures the export commands can easily use it."
  3015. (let (tmp re)
  3016. (when (setq tmp (plist-get props 'tags))
  3017. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3018. (when (setq tmp (plist-get props 'date))
  3019. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3020. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3021. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3022. (setq tmp (calendar-date-string tmp)))
  3023. (setq props (plist-put props 'date tmp)))
  3024. (when (setq tmp (plist-get props 'day))
  3025. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3026. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3027. (setq tmp (calendar-date-string tmp)))
  3028. (setq props (plist-put props 'day tmp))
  3029. (setq props (plist-put props 'agenda-day tmp)))
  3030. (when (setq tmp (plist-get props 'txt))
  3031. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3032. (plist-put props 'priority-letter (match-string 1 tmp))
  3033. (setq tmp (replace-match "" t t tmp)))
  3034. (when (and (setq re (plist-get props 'org-todo-regexp))
  3035. (setq re (concat "\\`\\.*" re " ?"))
  3036. (let ((case-fold-search nil)) (string-match re tmp)))
  3037. (plist-put props 'todo (match-string 1 tmp))
  3038. (setq tmp (replace-match "" t t tmp)))
  3039. (plist-put props 'txt tmp)))
  3040. props)
  3041. (defun org-agenda-export-csv-mapper (prop)
  3042. (let ((res (plist-get org-agenda-info prop)))
  3043. (setq res
  3044. (cond
  3045. ((not res) "")
  3046. ((stringp res) res)
  3047. (t (prin1-to-string res))))
  3048. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3049. ;;;###autoload
  3050. (defun org-store-agenda-views (&rest parameters)
  3051. "Store agenda views."
  3052. (interactive)
  3053. (eval (list 'org-batch-store-agenda-views)))
  3054. ;;;###autoload
  3055. (defmacro org-batch-store-agenda-views (&rest parameters)
  3056. "Run all custom agenda commands that have a file argument."
  3057. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3058. (pop-up-frames nil)
  3059. (dir default-directory)
  3060. (pars (org-make-parameter-alist parameters))
  3061. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3062. (save-window-excursion
  3063. (while cmds
  3064. (setq cmd (pop cmds)
  3065. thiscmdkey (car cmd)
  3066. thiscmdcmd (cdr cmd)
  3067. match (nth 2 thiscmdcmd)
  3068. bufname (if org-agenda-sticky
  3069. (or (and (stringp match)
  3070. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3071. (format "*Org Agenda(%s)*" thiscmdkey))
  3072. org-agenda-buffer-name)
  3073. cmd-or-set (nth 2 cmd)
  3074. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3075. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3076. (if (stringp files) (setq files (list files)))
  3077. (when files
  3078. (org-eval-in-environment (append org-agenda-exporter-settings
  3079. opts pars)
  3080. (org-agenda nil thiscmdkey))
  3081. (set-buffer bufname)
  3082. (while files
  3083. (org-eval-in-environment (append org-agenda-exporter-settings
  3084. opts pars)
  3085. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3086. (and (get-buffer bufname)
  3087. (kill-buffer bufname)))))))
  3088. (defvar org-agenda-current-span nil
  3089. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3090. (defun org-agenda-mark-header-line (pos)
  3091. "Mark the line at POS as an agenda structure header."
  3092. (save-excursion
  3093. (goto-char pos)
  3094. (put-text-property (point-at-bol) (point-at-eol)
  3095. 'org-agenda-structural-header t)
  3096. (when org-agenda-title-append
  3097. (put-text-property (point-at-bol) (point-at-eol)
  3098. 'org-agenda-title-append org-agenda-title-append))))
  3099. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3100. (defvar org-agenda-write-buffer-name "Agenda View")
  3101. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3102. "Write the current buffer (an agenda view) as a file.
  3103. Depending on the extension of the file name, plain text (.txt),
  3104. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3105. If the extension is .ics, translate visible agenda into iCalendar
  3106. format. If the extension is .org, collect all subtrees
  3107. corresponding to the agenda entries and add them in an .org file.
  3108. With prefix argument OPEN, open the new file immediately. If
  3109. NOSETTINGS is given, do not scope the settings of
  3110. `org-agenda-exporter-settings' into the export commands. This is
  3111. used when the settings have already been scoped and we do not
  3112. wish to overrule other, higher priority settings. If
  3113. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3114. the agenda to write."
  3115. (interactive "FWrite agenda to file: \nP")
  3116. (if (or (not (file-writable-p file))
  3117. (and (file-exists-p file)
  3118. (if (called-interactively-p 'any)
  3119. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3120. (user-error "Cannot write agenda to file %s" file))
  3121. (org-let (if nosettings nil org-agenda-exporter-settings)
  3122. '(save-excursion
  3123. (save-window-excursion
  3124. (let ((bs (copy-sequence (buffer-string)))
  3125. (extension (file-name-extension file))
  3126. (default-directory (file-name-directory file))
  3127. beg content)
  3128. (with-temp-buffer
  3129. (rename-buffer org-agenda-write-buffer-name t)
  3130. (set-buffer-modified-p nil)
  3131. (insert bs)
  3132. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3133. (run-hooks 'org-agenda-before-write-hook)
  3134. (cond
  3135. ((bound-and-true-p org-mobile-creating-agendas)
  3136. (org-mobile-write-agenda-for-mobile file))
  3137. ((string= "org" extension)
  3138. (let (content p m message-log-max)
  3139. (goto-char (point-min))
  3140. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3141. (goto-char p)
  3142. (setq m (get-text-property (point) 'org-hd-marker))
  3143. (when m
  3144. (push (save-excursion
  3145. (set-buffer (marker-buffer m))
  3146. (goto-char m)
  3147. (org-copy-subtree 1 nil t t)
  3148. org-subtree-clip)
  3149. content)))
  3150. (find-file file)
  3151. (erase-buffer)
  3152. (dolist (s content) (org-paste-subtree 1 s))
  3153. (write-file file)
  3154. (kill-buffer (current-buffer))
  3155. (message "Org file written to %s" file)))
  3156. ((member extension '("html" "htm"))
  3157. (or (require 'htmlize nil t)
  3158. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3159. (set-buffer (htmlize-buffer (current-buffer)))
  3160. (when org-agenda-export-html-style
  3161. ;; replace <style> section with org-agenda-export-html-style
  3162. (goto-char (point-min))
  3163. (kill-region (- (search-forward "<style") 6)
  3164. (search-forward "</style>"))
  3165. (insert org-agenda-export-html-style))
  3166. (write-file file)
  3167. (kill-buffer (current-buffer))
  3168. (message "HTML written to %s" file))
  3169. ((string= "ps" extension)
  3170. (require 'ps-print)
  3171. (ps-print-buffer-with-faces file)
  3172. (message "Postscript written to %s" file))
  3173. ((string= "pdf" extension)
  3174. (require 'ps-print)
  3175. (ps-print-buffer-with-faces
  3176. (concat (file-name-sans-extension file) ".ps"))
  3177. (call-process "ps2pdf" nil nil nil
  3178. (expand-file-name
  3179. (concat (file-name-sans-extension file) ".ps"))
  3180. (expand-file-name file))
  3181. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3182. (message "PDF written to %s" file))
  3183. ((string= "ics" extension)
  3184. (require 'ox-icalendar)
  3185. (org-icalendar-export-current-agenda (expand-file-name file)))
  3186. (t
  3187. (let ((bs (buffer-string)))
  3188. (find-file file)
  3189. (erase-buffer)
  3190. (insert bs)
  3191. (save-buffer 0)
  3192. (kill-buffer (current-buffer))
  3193. (message "Plain text written to %s" file))))))))
  3194. (set-buffer (or agenda-bufname
  3195. (and (called-interactively-p 'any) (buffer-name))
  3196. org-agenda-buffer-name)))
  3197. (when open (org-open-file file)))
  3198. (defun org-agenda-remove-marked-text (property &optional value)
  3199. "Delete all text marked with VALUE of PROPERTY.
  3200. VALUE defaults to t."
  3201. (let (beg)
  3202. (setq value (or value t))
  3203. (while (setq beg (text-property-any (point-min) (point-max)
  3204. property value))
  3205. (delete-region
  3206. beg (or (next-single-property-change beg property)
  3207. (point-max))))))
  3208. (defun org-agenda-add-entry-text ()
  3209. "Add entry text to agenda lines.
  3210. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3211. entry text following headings shown in the agenda.
  3212. Drawers will be excluded, also the line with scheduling/deadline info."
  3213. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3214. (not (bound-and-true-p org-mobile-creating-agendas)))
  3215. (let (m txt)
  3216. (goto-char (point-min))
  3217. (while (not (eobp))
  3218. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3219. (beginning-of-line 2)
  3220. (setq txt (org-agenda-get-some-entry-text
  3221. m org-agenda-add-entry-text-maxlines " > "))
  3222. (end-of-line 1)
  3223. (if (string-match "\\S-" txt)
  3224. (insert "\n" txt)
  3225. (or (eobp) (forward-char 1))))))))
  3226. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3227. &rest keep)
  3228. "Extract entry text from MARKER, at most N-LINES lines.
  3229. This will ignore drawers etc, just get the text.
  3230. If INDENT is given, prefix every line with this string. If KEEP is
  3231. given, it is a list of symbols, defining stuff that should not be
  3232. removed from the entry content. Currently only `planning' is allowed here."
  3233. (let (txt drawer-re kwd-time-re ind)
  3234. (save-excursion
  3235. (with-current-buffer (marker-buffer marker)
  3236. (if (not (derived-mode-p 'org-mode))
  3237. (setq txt "")
  3238. (org-with-wide-buffer
  3239. (goto-char marker)
  3240. (end-of-line 1)
  3241. (setq txt (buffer-substring
  3242. (min (1+ (point)) (point-max))
  3243. (progn (outline-next-heading) (point)))
  3244. drawer-re org-drawer-regexp
  3245. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3246. ".*\n?"))
  3247. (with-temp-buffer
  3248. (insert txt)
  3249. (when org-agenda-add-entry-text-descriptive-links
  3250. (goto-char (point-min))
  3251. (while (org-activate-links (point-max))
  3252. (add-text-properties (match-beginning 0) (match-end 0)
  3253. '(face org-link))))
  3254. (goto-char (point-min))
  3255. (while (re-search-forward org-link-bracket-re (point-max) t)
  3256. (set-text-properties (match-beginning 0) (match-end 0)
  3257. nil))
  3258. (goto-char (point-min))
  3259. (while (re-search-forward drawer-re nil t)
  3260. (delete-region
  3261. (match-beginning 0)
  3262. (progn (re-search-forward
  3263. "^[ \t]*:END:.*\n?" nil 'move)
  3264. (point))))
  3265. (unless (member 'planning keep)
  3266. (goto-char (point-min))
  3267. (while (re-search-forward kwd-time-re nil t)
  3268. (replace-match "")))
  3269. (goto-char (point-min))
  3270. (when org-agenda-entry-text-exclude-regexps
  3271. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3272. (while (setq re (pop re-list))
  3273. (goto-char (point-min))
  3274. (while (re-search-forward re nil t)
  3275. (replace-match "")))))
  3276. (goto-char (point-max))
  3277. (skip-chars-backward " \t\n")
  3278. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3279. ;; find and remove min common indentation
  3280. (goto-char (point-min))
  3281. (untabify (point-min) (point-max))
  3282. (setq ind (current-indentation))
  3283. (while (not (eobp))
  3284. (unless (looking-at "[ \t]*$")
  3285. (setq ind (min ind (current-indentation))))
  3286. (beginning-of-line 2))
  3287. (goto-char (point-min))
  3288. (while (not (eobp))
  3289. (unless (looking-at "[ \t]*$")
  3290. (move-to-column ind)
  3291. (delete-region (point-at-bol) (point)))
  3292. (beginning-of-line 2))
  3293. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3294. (goto-char (point-min))
  3295. (when indent
  3296. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3297. (replace-match indent t t)))
  3298. (goto-char (point-min))
  3299. (while (looking-at "[ \t]*\n") (replace-match ""))
  3300. (goto-char (point-max))
  3301. (when (> (org-current-line)
  3302. n-lines)
  3303. (org-goto-line (1+ n-lines))
  3304. (backward-char 1))
  3305. (setq txt (buffer-substring (point-min) (point))))))))
  3306. txt))
  3307. (defun org-check-for-org-mode ()
  3308. "Make sure current buffer is in Org mode. Error if not."
  3309. (or (derived-mode-p 'org-mode)
  3310. (error "Cannot execute Org agenda command on buffer in %s"
  3311. major-mode)))
  3312. ;;; Agenda prepare and finalize
  3313. (defvar org-agenda-multi nil) ; dynamically scoped
  3314. (defvar org-agenda-pre-window-conf nil)
  3315. (defvar org-agenda-columns-active nil)
  3316. (defvar org-agenda-name nil)
  3317. (defvar org-agenda-tag-filter nil)
  3318. (defvar org-agenda-category-filter nil)
  3319. (defvar org-agenda-regexp-filter nil)
  3320. (defvar org-agenda-effort-filter nil)
  3321. (defvar org-agenda-top-headline-filter nil)
  3322. (defvar org-agenda-represented-categories nil
  3323. "Cache for the list of all categories in the agenda.")
  3324. (defvar org-agenda-represented-tags nil
  3325. "Cache for the list of all categories in the agenda.")
  3326. (defvar org-agenda-tag-filter-preset nil
  3327. "A preset of the tags filter used for secondary agenda filtering.
  3328. This must be a list of strings, each string must be a single tag preceded
  3329. by \"+\" or \"-\".
  3330. This variable should not be set directly, but agenda custom commands can
  3331. bind it in the options section. The preset filter is a global property of
  3332. the entire agenda view. In a block agenda, it will not work reliably to
  3333. define a filter for one of the individual blocks. You need to set it in
  3334. the global options and expect it to be applied to the entire view.")
  3335. (defconst org-agenda-filter-variables
  3336. '((category . org-agenda-category-filter)
  3337. (tag . org-agenda-tag-filter)
  3338. (effort . org-agenda-effort-filter)
  3339. (regexp . org-agenda-regexp-filter))
  3340. "Alist of filter types and associated variables")
  3341. (defun org-agenda-filter-any ()
  3342. "Is any filter active?"
  3343. (let ((form (cons 'or (mapcar (lambda (x)
  3344. (if (or (symbol-value (cdr x))
  3345. (get :preset-filter x))
  3346. t nil))
  3347. org-agenda-filter-variables))))
  3348. (eval form)))
  3349. (defvar org-agenda-category-filter-preset nil
  3350. "A preset of the category filter used for secondary agenda filtering.
  3351. This must be a list of strings, each string must be a single category
  3352. preceded by \"+\" or \"-\".
  3353. This variable should not be set directly, but agenda custom commands can
  3354. bind it in the options section. The preset filter is a global property of
  3355. the entire agenda view. In a block agenda, it will not work reliably to
  3356. define a filter for one of the individual blocks. You need to set it in
  3357. the global options and expect it to be applied to the entire view.")
  3358. (defvar org-agenda-regexp-filter-preset nil
  3359. "A preset of the regexp filter used for secondary agenda filtering.
  3360. This must be a list of strings, each string must be a single regexp
  3361. preceded by \"+\" or \"-\".
  3362. This variable should not be set directly, but agenda custom commands can
  3363. bind it in the options section. The preset filter is a global property of
  3364. the entire agenda view. In a block agenda, it will not work reliably to
  3365. define a filter for one of the individual blocks. You need to set it in
  3366. the global options and expect it to be applied to the entire view.")
  3367. (defvar org-agenda-effort-filter-preset nil
  3368. "A preset of the effort condition used for secondary agenda filtering.
  3369. This must be a list of strings, each string must be a single regexp
  3370. preceded by \"+\" or \"-\".
  3371. This variable should not be set directly, but agenda custom commands can
  3372. bind it in the options section. The preset filter is a global property of
  3373. the entire agenda view. In a block agenda, it will not work reliably to
  3374. define a filter for one of the individual blocks. You need to set it in
  3375. the global options and expect it to be applied to the entire view.")
  3376. (defun org-agenda-use-sticky-p ()
  3377. "Return non-nil if an agenda buffer named
  3378. `org-agenda-buffer-name' exists and should be shown instead of
  3379. generating a new one."
  3380. (and
  3381. ;; turned off by user
  3382. org-agenda-sticky
  3383. ;; For multi-agenda buffer already exists
  3384. (not org-agenda-multi)
  3385. ;; buffer found
  3386. (get-buffer org-agenda-buffer-name)
  3387. ;; C-u parameter is same as last call
  3388. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3389. (and
  3390. (equal current-prefix-arg
  3391. org-agenda-last-prefix-arg)
  3392. ;; In case user turned stickiness on, while having existing
  3393. ;; Agenda buffer active, don't reuse that buffer, because it
  3394. ;; does not have org variables local
  3395. org-agenda-this-buffer-is-sticky))))
  3396. (defun org-agenda-prepare-window (abuf filter-alist)
  3397. "Setup agenda buffer in the window.
  3398. ABUF is the buffer for the agenda window.
  3399. FILTER-ALIST is an alist of filters we need to apply when
  3400. `org-agenda-persistent-filter' is non-nil."
  3401. (let* ((awin (get-buffer-window abuf)) wconf)
  3402. (cond
  3403. ((equal (current-buffer) abuf) nil)
  3404. (awin (select-window awin))
  3405. ((not (setq wconf (current-window-configuration))))
  3406. ((eq org-agenda-window-setup 'current-window)
  3407. (pop-to-buffer-same-window abuf))
  3408. ((eq org-agenda-window-setup 'other-window)
  3409. (org-switch-to-buffer-other-window abuf))
  3410. ((eq org-agenda-window-setup 'other-frame)
  3411. (switch-to-buffer-other-frame abuf))
  3412. ((eq org-agenda-window-setup 'only-window)
  3413. (delete-other-windows)
  3414. (pop-to-buffer-same-window abuf))
  3415. ((eq org-agenda-window-setup 'reorganize-frame)
  3416. (delete-other-windows)
  3417. (org-switch-to-buffer-other-window abuf)))
  3418. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3419. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3420. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3421. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3422. ;; Additional test in case agenda is invoked from within agenda
  3423. ;; buffer via elisp link.
  3424. (unless (equal (current-buffer) abuf)
  3425. (pop-to-buffer-same-window abuf))
  3426. (setq org-agenda-pre-window-conf
  3427. (or wconf org-agenda-pre-window-conf))))
  3428. (defun org-agenda-prepare (&optional name)
  3429. (let ((filter-alist (when org-agenda-persistent-filter
  3430. (with-current-buffer
  3431. (get-buffer-create org-agenda-buffer-name)
  3432. `((tag . ,org-agenda-tag-filter)
  3433. (re . ,org-agenda-regexp-filter)
  3434. (effort . ,org-agenda-effort-filter)
  3435. (cat . ,org-agenda-category-filter))))))
  3436. (if (org-agenda-use-sticky-p)
  3437. (progn
  3438. (put 'org-agenda-tag-filter :preset-filter nil)
  3439. (put 'org-agenda-category-filter :preset-filter nil)
  3440. (put 'org-agenda-regexp-filter :preset-filter nil)
  3441. (put 'org-agenda-effort-filter :preset-filter nil)
  3442. ;; Popup existing buffer
  3443. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3444. filter-alist)
  3445. (message "Sticky Agenda buffer, use `r' to refresh")
  3446. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3447. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3448. (setq org-todo-keywords-for-agenda nil)
  3449. (put 'org-agenda-tag-filter :preset-filter
  3450. org-agenda-tag-filter-preset)
  3451. (put 'org-agenda-category-filter :preset-filter
  3452. org-agenda-category-filter-preset)
  3453. (put 'org-agenda-regexp-filter :preset-filter
  3454. org-agenda-regexp-filter-preset)
  3455. (put 'org-agenda-effort-filter :preset-filter
  3456. org-agenda-effort-filter-preset)
  3457. (if org-agenda-multi
  3458. (progn
  3459. (setq buffer-read-only nil)
  3460. (goto-char (point-max))
  3461. (unless (or (bobp) org-agenda-compact-blocks
  3462. (not org-agenda-block-separator))
  3463. (insert "\n"
  3464. (if (stringp org-agenda-block-separator)
  3465. org-agenda-block-separator
  3466. (make-string (window-width) org-agenda-block-separator))
  3467. "\n"))
  3468. (narrow-to-region (point) (point-max)))
  3469. (setq org-done-keywords-for-agenda nil)
  3470. ;; Setting any org variables that are in org-agenda-local-vars
  3471. ;; list need to be done after the prepare call
  3472. (org-agenda-prepare-window
  3473. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3474. (setq buffer-read-only nil)
  3475. (org-agenda-reset-markers)
  3476. (let ((inhibit-read-only t)) (erase-buffer))
  3477. (org-agenda-mode)
  3478. (setq org-agenda-buffer (current-buffer))
  3479. (setq org-agenda-contributing-files nil)
  3480. (setq org-agenda-columns-active nil)
  3481. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3482. (setq org-todo-keywords-for-agenda
  3483. (org-uniquify org-todo-keywords-for-agenda))
  3484. (setq org-done-keywords-for-agenda
  3485. (org-uniquify org-done-keywords-for-agenda))
  3486. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3487. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3488. (and name (not org-agenda-name)
  3489. (setq-local org-agenda-name name)))
  3490. (setq buffer-read-only nil))))
  3491. (defvar org-overriding-columns-format)
  3492. (defvar org-local-columns-format)
  3493. (defun org-agenda-finalize ()
  3494. "Finishing touch for the agenda buffer, called just before displaying it."
  3495. (unless org-agenda-multi
  3496. (save-excursion
  3497. (let ((inhibit-read-only t))
  3498. (goto-char (point-min))
  3499. (save-excursion
  3500. (while (org-activate-links (point-max))
  3501. (add-text-properties (match-beginning 0) (match-end 0)
  3502. '(face org-link))))
  3503. (unless (eq org-agenda-remove-tags t)
  3504. (org-agenda-align-tags))
  3505. (unless org-agenda-with-colors
  3506. (remove-text-properties (point-min) (point-max) '(face nil)))
  3507. (when (bound-and-true-p org-overriding-columns-format)
  3508. (setq-local org-local-columns-format
  3509. org-overriding-columns-format))
  3510. (when org-agenda-view-columns-initially
  3511. (org-agenda-columns))
  3512. (when org-agenda-fontify-priorities
  3513. (org-agenda-fontify-priorities))
  3514. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3515. (org-agenda-dim-blocked-tasks))
  3516. (org-agenda-mark-clocking-task)
  3517. (when org-agenda-entry-text-mode
  3518. (org-agenda-entry-text-hide)
  3519. (org-agenda-entry-text-show))
  3520. (when (and (featurep 'org-habit)
  3521. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3522. (org-habit-insert-consistency-graphs))
  3523. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3524. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3525. (and (listp org-agenda-show-inherited-tags)
  3526. (memq org-agenda-type org-agenda-show-inherited-tags))
  3527. (and (eq org-agenda-show-inherited-tags t)
  3528. (or (eq org-agenda-use-tag-inheritance t)
  3529. (and (listp org-agenda-use-tag-inheritance)
  3530. (not (memq org-agenda-type
  3531. org-agenda-use-tag-inheritance))))))
  3532. (let (mrk)
  3533. (save-excursion
  3534. (goto-char (point-min))
  3535. (while (equal (forward-line) 0)
  3536. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3537. (put-text-property (point-at-bol) (point-at-eol)
  3538. 'tags
  3539. (org-with-point-at mrk
  3540. (mapcar #'downcase (org-get-tags)))))))))
  3541. (run-hooks 'org-agenda-finalize-hook)
  3542. (setq org-agenda-represented-tags nil
  3543. org-agenda-represented-categories nil)
  3544. (when org-agenda-top-headline-filter
  3545. (org-agenda-filter-top-headline-apply
  3546. org-agenda-top-headline-filter))
  3547. (when org-agenda-tag-filter
  3548. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3549. (when (get 'org-agenda-tag-filter :preset-filter)
  3550. (org-agenda-filter-apply
  3551. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3552. (when org-agenda-category-filter
  3553. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3554. (when (get 'org-agenda-category-filter :preset-filter)
  3555. (org-agenda-filter-apply
  3556. (get 'org-agenda-category-filter :preset-filter) 'category))
  3557. (when org-agenda-regexp-filter
  3558. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3559. (when (get 'org-agenda-regexp-filter :preset-filter)
  3560. (org-agenda-filter-apply
  3561. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3562. (when org-agenda-effort-filter
  3563. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3564. (when (get 'org-agenda-effort-filter :preset-filter)
  3565. (org-agenda-filter-apply
  3566. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3567. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3568. (defun org-agenda-mark-clocking-task ()
  3569. "Mark the current clock entry in the agenda if it is present."
  3570. ;; We need to widen when `org-agenda-finalize' is called from
  3571. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3572. (when (bound-and-true-p org-clock-current-task)
  3573. (save-restriction
  3574. (widen)
  3575. (org-agenda-unmark-clocking-task)
  3576. (when (marker-buffer org-clock-hd-marker)
  3577. (save-excursion
  3578. (goto-char (point-min))
  3579. (let (s ov)
  3580. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3581. (goto-char s)
  3582. (when (equal (org-get-at-bol 'org-hd-marker)
  3583. org-clock-hd-marker)
  3584. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3585. (overlay-put ov 'type 'org-agenda-clocking)
  3586. (overlay-put ov 'face 'org-agenda-clocking)
  3587. (overlay-put ov 'help-echo
  3588. "The clock is running in this item")))))))))
  3589. (defun org-agenda-unmark-clocking-task ()
  3590. "Unmark the current clocking task."
  3591. (mapc (lambda (o)
  3592. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3593. (delete-overlay o)))
  3594. (overlays-in (point-min) (point-max))))
  3595. (defun org-agenda-fontify-priorities ()
  3596. "Make highest priority lines bold, and lowest italic."
  3597. (interactive)
  3598. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3599. (delete-overlay o)))
  3600. (overlays-in (point-min) (point-max)))
  3601. (save-excursion
  3602. (let (b e p ov h l)
  3603. (goto-char (point-min))
  3604. (while (re-search-forward org-priority-regexp nil t)
  3605. (setq h (or (get-char-property (point) 'org-priority-highest)
  3606. org-priority-highest)
  3607. l (or (get-char-property (point) 'org-priority-lowest)
  3608. org-priority-lowest)
  3609. p (string-to-char (match-string 2))
  3610. b (match-beginning 1)
  3611. e (if (eq org-agenda-fontify-priorities 'cookies)
  3612. (match-end 1)
  3613. (point-at-eol))
  3614. ov (make-overlay b e))
  3615. (overlay-put
  3616. ov 'face
  3617. (let ((special-face
  3618. (cond ((org-face-from-face-or-color
  3619. 'priority 'org-priority
  3620. (cdr (assoc p org-priority-faces))))
  3621. ((and (listp org-agenda-fontify-priorities)
  3622. (org-face-from-face-or-color
  3623. 'priority 'org-priority
  3624. (cdr (assoc p org-agenda-fontify-priorities)))))
  3625. ((equal p l) 'italic)
  3626. ((equal p h) 'bold))))
  3627. (if special-face (list special-face 'org-priority) 'org-priority)))
  3628. (overlay-put ov 'org-type 'org-priority)))))
  3629. (defvar org-depend-tag-blocked)
  3630. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3631. "Dim currently blocked TODOs in the agenda display.
  3632. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3633. dimming them."
  3634. (interactive "P")
  3635. (when (called-interactively-p 'interactive)
  3636. (message "Dim or hide blocked tasks..."))
  3637. (dolist (o (overlays-in (point-min) (point-max)))
  3638. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3639. (delete-overlay o)))
  3640. (save-excursion
  3641. (let ((inhibit-read-only t))
  3642. (goto-char (point-min))
  3643. (while (let ((pos (text-property-not-all
  3644. (point) (point-max) 'org-todo-blocked nil)))
  3645. (when pos (goto-char pos)))
  3646. (let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3647. (ov (make-overlay (if invisible
  3648. (line-end-position 0)
  3649. (line-beginning-position))
  3650. (line-end-position))))
  3651. (if invisible
  3652. (overlay-put ov 'invisible t)
  3653. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3654. (overlay-put ov 'org-type 'org-blocked-todo))
  3655. (forward-line))))
  3656. (when (called-interactively-p 'interactive)
  3657. (message "Dim or hide blocked tasks...done")))
  3658. (defun org-agenda--mark-blocked-entry (entry)
  3659. "For ENTRY a string with the text property `org-hd-marker', if
  3660. the header at `org-hd-marker' is blocked according to
  3661. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3662. 'invisible and the header is not blocked by checkboxes, set the
  3663. text property `org-todo-blocked' to `invisible', otherwise set it
  3664. to t."
  3665. (when (get-text-property 0 'todo-state entry)
  3666. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3667. (org-blocked-by-checkboxes nil)
  3668. ;; Necessary so that `org-entry-blocked-p' does not change
  3669. ;; the buffer.
  3670. (org-depend-tag-blocked nil))
  3671. (when entry-marker
  3672. (let ((blocked
  3673. (with-current-buffer (marker-buffer entry-marker)
  3674. (save-excursion
  3675. (goto-char entry-marker)
  3676. (org-entry-blocked-p)))))
  3677. (when blocked
  3678. (let ((really-invisible
  3679. (and (not org-blocked-by-checkboxes)
  3680. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3681. (put-text-property
  3682. 0 (length entry) 'org-todo-blocked
  3683. (if really-invisible 'invisible t)
  3684. entry)))))))
  3685. entry)
  3686. (defvar org-agenda-skip-function nil
  3687. "Function to be called at each match during agenda construction.
  3688. If this function returns nil, the current match should not be skipped.
  3689. Otherwise, the function must return a position from where the search
  3690. should be continued.
  3691. This may also be a Lisp form, it will be evaluated.
  3692. Never set this variable using `setq' or so, because then it will apply
  3693. to all future agenda commands. If you do want a global skipping condition,
  3694. use the option `org-agenda-skip-function-global' instead.
  3695. The correct usage for `org-agenda-skip-function' is to bind it with
  3696. `let' to scope it dynamically into the agenda-constructing command.
  3697. A good way to set it is through options in `org-agenda-custom-commands'.")
  3698. (defun org-agenda-skip ()
  3699. "Throw to `:skip' in places that should be skipped.
  3700. Also moves point to the end of the skipped region, so that search can
  3701. continue from there."
  3702. (let ((p (point-at-bol)) to)
  3703. (when (or
  3704. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3705. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3706. (get-text-property p :org-archived)
  3707. (org-end-of-subtree t))
  3708. (and org-agenda-skip-comment-trees
  3709. (get-text-property p :org-comment)
  3710. (org-end-of-subtree t))
  3711. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3712. (org-agenda-skip-eval org-agenda-skip-function)))
  3713. (goto-char to))
  3714. (org-in-src-block-p t))
  3715. (throw :skip t))))
  3716. (defun org-agenda-skip-eval (form)
  3717. "If FORM is a function or a list, call (or eval) it and return the result.
  3718. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3719. and match data are returned to the previous state no matter what these
  3720. functions do."
  3721. (let (fp)
  3722. (and form
  3723. (or (setq fp (functionp form))
  3724. (consp form))
  3725. (save-excursion
  3726. (save-match-data
  3727. (if fp
  3728. (funcall form)
  3729. (eval form)))))))
  3730. (defvar org-agenda-markers nil
  3731. "List of all currently active markers created by `org-agenda'.")
  3732. (defvar org-agenda-last-marker-time (float-time)
  3733. "Creation time of the last agenda marker.")
  3734. (defun org-agenda-new-marker (&optional pos)
  3735. "Return a new agenda marker.
  3736. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3737. these markers and resets them when they are no longer in use."
  3738. (let ((m (copy-marker (or pos (point)) t)))
  3739. (setq org-agenda-last-marker-time (float-time))
  3740. (if org-agenda-buffer
  3741. (with-current-buffer org-agenda-buffer
  3742. (push m org-agenda-markers))
  3743. (push m org-agenda-markers))
  3744. m))
  3745. (defun org-agenda-reset-markers ()
  3746. "Reset markers created by `org-agenda'."
  3747. (while org-agenda-markers
  3748. (move-marker (pop org-agenda-markers) nil)))
  3749. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3750. "Save relative positions of markers in region.
  3751. This check for agenda markers in all agenda buffers currently active."
  3752. (dolist (buf (buffer-list))
  3753. (with-current-buffer buf
  3754. (when (eq major-mode 'org-agenda-mode)
  3755. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3756. org-agenda-markers)))))
  3757. ;;; Entry text mode
  3758. (defun org-agenda-entry-text-show-here ()
  3759. "Add some text from the entry as context to the current line."
  3760. (let (m txt o)
  3761. (setq m (org-get-at-bol 'org-hd-marker))
  3762. (unless (marker-buffer m)
  3763. (error "No marker points to an entry here"))
  3764. (setq txt (concat "\n" (org-no-properties
  3765. (org-agenda-get-some-entry-text
  3766. m org-agenda-entry-text-maxlines
  3767. org-agenda-entry-text-leaders))))
  3768. (when (string-match "\\S-" txt)
  3769. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3770. (overlay-put o 'evaporate t)
  3771. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3772. (overlay-put o 'after-string txt))))
  3773. (defun org-agenda-entry-text-show ()
  3774. "Add entry context for all agenda lines."
  3775. (interactive)
  3776. (save-excursion
  3777. (goto-char (point-max))
  3778. (beginning-of-line 1)
  3779. (while (not (bobp))
  3780. (when (org-get-at-bol 'org-hd-marker)
  3781. (org-agenda-entry-text-show-here))
  3782. (beginning-of-line 0))))
  3783. (defun org-agenda-entry-text-hide ()
  3784. "Remove any shown entry context."
  3785. (mapc (lambda (o)
  3786. (when (eq (overlay-get o 'org-overlay-type)
  3787. 'agenda-entry-content)
  3788. (delete-overlay o)))
  3789. (overlays-in (point-min) (point-max))))
  3790. (defun org-agenda-get-day-face (date)
  3791. "Return the face DATE should be displayed with."
  3792. (cond ((and (functionp org-agenda-day-face-function)
  3793. (funcall org-agenda-day-face-function date)))
  3794. ((org-agenda-today-p date) 'org-agenda-date-today)
  3795. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3796. 'org-agenda-date-weekend)
  3797. (t 'org-agenda-date)))
  3798. (defvar org-agenda-show-log-scoped)
  3799. ;;; Agenda Daily/Weekly
  3800. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3801. "Start day for the agenda view.
  3802. Custom commands can set this variable in the options section.
  3803. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3804. input allowed when reading a date through the Org calendar.
  3805. See the docstring of `org-read-date' for details.")
  3806. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3807. (defvar org-arg-loc nil) ; local variable
  3808. (defvar org-agenda-buffer-tmp-name nil)
  3809. ;;;###autoload
  3810. (defun org-agenda-list (&optional arg start-day span with-hour)
  3811. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3812. The view will be for the current day or week, but from the overview buffer
  3813. you will be able to go to other days/weeks.
  3814. With a numeric prefix argument in an interactive call, the agenda will
  3815. span ARG days. Lisp programs should instead specify SPAN to change
  3816. the number of days. SPAN defaults to `org-agenda-span'.
  3817. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3818. given in `org-agenda-start-on-weekday'.
  3819. When WITH-HOUR is non-nil, only include scheduled and deadline
  3820. items if they have an hour specification like [h]h:mm."
  3821. (interactive "P")
  3822. (when org-agenda-overriding-arguments
  3823. (setq arg (car org-agenda-overriding-arguments)
  3824. start-day (nth 1 org-agenda-overriding-arguments)
  3825. span (nth 2 org-agenda-overriding-arguments)))
  3826. (when (and (integerp arg) (> arg 0))
  3827. (setq span arg arg nil))
  3828. (when (numberp span)
  3829. (unless (< 0 span)
  3830. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3831. (catch 'exit
  3832. (setq org-agenda-buffer-name
  3833. (or org-agenda-buffer-tmp-name
  3834. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3835. (when org-agenda-sticky
  3836. (cond ((and org-keys (stringp org-match))
  3837. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3838. (org-keys
  3839. (format "*Org Agenda(%s)*" org-keys))
  3840. (t "*Org Agenda(a)*")))
  3841. "*Org Agenda*"))
  3842. (org-agenda-prepare "Day/Week")
  3843. (setq start-day (or start-day org-agenda-start-day))
  3844. (when (stringp start-day)
  3845. ;; Convert to an absolute day number
  3846. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3847. (org-compile-prefix-format 'agenda)
  3848. (org-set-sorting-strategy 'agenda)
  3849. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3850. (today (org-today))
  3851. (sd (or start-day today))
  3852. (ndays (org-agenda-span-to-ndays span sd))
  3853. (org-agenda-start-on-weekday
  3854. (and (or (eq ndays 7) (eq ndays 14))
  3855. org-agenda-start-on-weekday))
  3856. (thefiles (org-agenda-files nil 'ifmode))
  3857. (files thefiles)
  3858. (start (if (or (null org-agenda-start-on-weekday)
  3859. (< ndays 7))
  3860. sd
  3861. (let* ((nt (calendar-day-of-week
  3862. (calendar-gregorian-from-absolute sd)))
  3863. (n1 org-agenda-start-on-weekday)
  3864. (d (- nt n1)))
  3865. (- sd (+ (if (< d 0) 7 0) d)))))
  3866. (day-numbers (list start))
  3867. (day-cnt 0)
  3868. (inhibit-redisplay (not debug-on-error))
  3869. (org-agenda-show-log-scoped org-agenda-show-log)
  3870. s e rtn rtnall file date d start-pos end-pos todayp
  3871. clocktable-start clocktable-end filter)
  3872. (setq org-agenda-redo-command
  3873. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3874. (dotimes (n (1- ndays))
  3875. (push (1+ (car day-numbers)) day-numbers))
  3876. (setq day-numbers (nreverse day-numbers))
  3877. (setq clocktable-start (car day-numbers)
  3878. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3879. (setq-local org-starting-day (car day-numbers))
  3880. (setq-local org-arg-loc arg)
  3881. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3882. (unless org-agenda-compact-blocks
  3883. (let* ((d1 (car day-numbers))
  3884. (d2 (org-last day-numbers))
  3885. (w1 (org-days-to-iso-week d1))
  3886. (w2 (org-days-to-iso-week d2)))
  3887. (setq s (point))
  3888. (org-agenda--insert-overriding-header
  3889. (concat (org-agenda-span-name span)
  3890. "-agenda"
  3891. (cond ((<= 350 (- d2 d1)) "")
  3892. ((= w1 w2) (format " (W%02d)" w1))
  3893. (t (format " (W%02d-W%02d)" w1 w2)))
  3894. ":\n")))
  3895. ;; Add properties if we actually inserted a header.
  3896. (when (> (point) s)
  3897. (add-text-properties s (1- (point))
  3898. (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. (when (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. (when 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. (when (or rtnall org-agenda-show-all-dates)
  3954. (setq day-cnt (1+ day-cnt))
  3955. (insert
  3956. (if (stringp org-agenda-format-date)
  3957. (format-time-string org-agenda-format-date
  3958. (org-time-from-absolute date))
  3959. (funcall org-agenda-format-date date))
  3960. "\n")
  3961. (put-text-property s (1- (point)) 'face
  3962. (org-agenda-get-day-face date))
  3963. (put-text-property s (1- (point)) 'org-date-line t)
  3964. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3965. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3966. (when todayp
  3967. (put-text-property s (1- (point)) 'org-today t))
  3968. (setq rtnall
  3969. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3970. (when rtnall (insert ;; all entries
  3971. (org-agenda-finalize-entries rtnall 'agenda)
  3972. "\n"))
  3973. (put-text-property s (1- (point)) 'day d)
  3974. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  3975. (when (and org-agenda-clockreport-mode clocktable-start)
  3976. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3977. ;; the above line is to ensure the restricted range!
  3978. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3979. tbl)
  3980. (setq p (org-plist-delete p :block))
  3981. (setq p (plist-put p :tstart clocktable-start))
  3982. (setq p (plist-put p :tend clocktable-end))
  3983. (setq p (plist-put p :scope 'agenda))
  3984. (setq tbl (apply 'org-clock-get-clocktable p))
  3985. (insert tbl)))
  3986. (goto-char (point-min))
  3987. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3988. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  3989. (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. (when (not (pos-visible-in-window-p (or start-pos 1)))
  3994. (goto-char (or start-pos 1))
  3995. (recenter 1)))
  3996. (goto-char (or start-pos 1))
  3997. (add-text-properties (point-min) (point-max)
  3998. `(org-agenda-type agenda
  3999. org-last-args (,arg ,start-day ,span)
  4000. org-redo-cmd ,org-agenda-redo-command
  4001. org-series-cmd ,org-cmd))
  4002. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4003. (org-agenda-show-clocking-issues))
  4004. (org-agenda-finalize)
  4005. (setq buffer-read-only t)
  4006. (message ""))))
  4007. (defun org-agenda-ndays-to-span (n)
  4008. "Return a span symbol for a span of N days, or N if none matches."
  4009. (cond ((symbolp n) n)
  4010. ((= n 1) 'day)
  4011. ((= n 7) 'week)
  4012. ((= n 14) 'fortnight)
  4013. (t n)))
  4014. (defun org-agenda-span-to-ndays (span &optional start-day)
  4015. "Return ndays from SPAN, possibly starting at START-DAY.
  4016. START-DAY is an absolute time value."
  4017. (cond ((numberp span) span)
  4018. ((eq span 'day) 1)
  4019. ((eq span 'week) 7)
  4020. ((eq span 'fortnight) 14)
  4021. ((eq span 'month)
  4022. (let ((date (calendar-gregorian-from-absolute start-day)))
  4023. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4024. ((eq span 'year)
  4025. (let ((date (calendar-gregorian-from-absolute start-day)))
  4026. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4027. (defun org-agenda-span-name (span)
  4028. "Return a SPAN name."
  4029. (if (null span)
  4030. ""
  4031. (if (symbolp span)
  4032. (capitalize (symbol-name span))
  4033. (format "%d days" span))))
  4034. ;;; Agenda word search
  4035. (defvar org-agenda-search-history nil)
  4036. (defvar org-search-syntax-table nil
  4037. "Special syntax table for Org search.
  4038. In this table, we have single quotes not as word constituents, to
  4039. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4040. (defvar org-mode-syntax-table) ; From org.el
  4041. (defun org-search-syntax-table ()
  4042. (unless org-search-syntax-table
  4043. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4044. (modify-syntax-entry ?' "." org-search-syntax-table)
  4045. (modify-syntax-entry ?` "." org-search-syntax-table))
  4046. org-search-syntax-table)
  4047. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4048. ;;;###autoload
  4049. (defun org-search-view (&optional todo-only string edit-at)
  4050. "Show all entries that contain a phrase or words or regular expressions.
  4051. With optional prefix argument TODO-ONLY, only consider entries that are
  4052. TODO entries. The argument STRING can be used to pass a default search
  4053. string into this function. If EDIT-AT is non-nil, it means that the
  4054. user should get a chance to edit this string, with cursor at position
  4055. EDIT-AT.
  4056. The search string can be viewed either as a phrase that should be found as
  4057. is, or it can be broken into a number of snippets, each of which must match
  4058. in a Boolean way to select an entry. The default depends on the variable
  4059. `org-agenda-search-view-always-boolean'.
  4060. Even if this is turned off (the default) you can always switch to
  4061. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4062. The default is a direct search of the whole phrase, where each space in
  4063. the search string can expand to an arbitrary amount of whitespace,
  4064. including newlines.
  4065. If using a Boolean search, the search string is split on whitespace and
  4066. each snippet is searched separately, with logical AND to select an entry.
  4067. Words prefixed with a minus must *not* occur in the entry. Words without
  4068. a prefix or prefixed with a plus must occur in the entry. Matching is
  4069. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4070. match whole words, not parts of a word) if
  4071. `org-agenda-search-view-force-full-words' is set (default is nil).
  4072. Boolean search snippets enclosed by curly braces are interpreted as
  4073. regular expressions that must or (when preceded with \"-\") must not
  4074. match in the entry. Snippets enclosed into double quotes will be taken
  4075. as a whole, to include whitespace.
  4076. - If the search string starts with an asterisk, search only in headlines.
  4077. - If (possibly after the leading star) the search string starts with an
  4078. exclamation mark, this also means to look at TODO entries only, an effect
  4079. that can also be achieved with a prefix argument.
  4080. - If (possibly after star and exclamation mark) the search string starts
  4081. with a colon, this will mean that the (non-regexp) snippets of the
  4082. Boolean search must match as full words.
  4083. This command searches the agenda files, and in addition the files
  4084. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4085. is active."
  4086. (interactive "P")
  4087. (when 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. (when 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. (when (or org-agenda-search-view-always-boolean
  4139. (member (string-to-char words) '(?- ?+ ?\{)))
  4140. (setq boolean t))
  4141. (setq words (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. (when (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. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4193. regexp))))
  4194. (setq files (org-agenda-files nil 'ifmode))
  4195. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4196. ;; restriction.
  4197. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4198. (pop org-agenda-text-search-extra-files)
  4199. (unless (get 'org-agenda-files 'org-restrict)
  4200. (setq files (org-add-archive-files files))))
  4201. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4202. ;; non-existent ones.
  4203. (setq files (cl-remove-duplicates
  4204. (append files org-agenda-text-search-extra-files)
  4205. :test (lambda (a b)
  4206. (and (file-exists-p a)
  4207. (file-exists-p b)
  4208. (file-equal-p a b))))
  4209. rtnall nil)
  4210. (while (setq file (pop files))
  4211. (setq ee nil)
  4212. (catch 'nextfile
  4213. (org-check-agenda-file file)
  4214. (setq buffer (if (file-exists-p file)
  4215. (org-get-agenda-file-buffer file)
  4216. (error "No such file %s" file)))
  4217. (unless buffer
  4218. ;; If file does not exist, make sure an error message is sent
  4219. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4220. file))))
  4221. (with-current-buffer buffer
  4222. (with-syntax-table (org-search-syntax-table)
  4223. (unless (derived-mode-p 'org-mode)
  4224. (error "Agenda file %s is not in Org mode" file))
  4225. (let ((case-fold-search t))
  4226. (save-excursion
  4227. (save-restriction
  4228. (if (eq buffer org-agenda-restrict)
  4229. (narrow-to-region org-agenda-restrict-begin
  4230. org-agenda-restrict-end)
  4231. (widen))
  4232. (goto-char (point-min))
  4233. (unless (or (org-at-heading-p)
  4234. (outline-next-heading))
  4235. (throw 'nextfile t))
  4236. (goto-char (max (point-min) (1- (point))))
  4237. (while (re-search-forward regexp nil t)
  4238. (org-back-to-heading t)
  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. (org-back-to-heading t)))
  4244. (skip-chars-forward "* ")
  4245. (setq beg (point-at-bol)
  4246. beg1 (point)
  4247. end (progn
  4248. (outline-next-heading)
  4249. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4250. (> (org-reduced-level (org-outline-level))
  4251. org-agenda-search-view-max-outline-level)
  4252. (forward-line 1)
  4253. (outline-next-heading)))
  4254. (point)))
  4255. (catch :skip
  4256. (goto-char beg)
  4257. (org-agenda-skip)
  4258. (setq str (buffer-substring-no-properties
  4259. (point-at-bol)
  4260. (if hdl-only (point-at-eol) end)))
  4261. (mapc (lambda (wr) (when (string-match wr str)
  4262. (goto-char (1- end))
  4263. (throw :skip t)))
  4264. regexps-)
  4265. (mapc (lambda (wr) (unless (string-match wr str)
  4266. (goto-char (1- end))
  4267. (throw :skip t)))
  4268. (if todo-only
  4269. (cons (concat "^\\*+[ \t]+"
  4270. org-not-done-regexp)
  4271. regexps+)
  4272. regexps+))
  4273. (goto-char beg)
  4274. (setq marker (org-agenda-new-marker (point))
  4275. category (org-get-category)
  4276. level (make-string (org-reduced-level (org-outline-level)) ? )
  4277. inherited-tags
  4278. (or (eq org-agenda-show-inherited-tags 'always)
  4279. (and (listp org-agenda-show-inherited-tags)
  4280. (memq 'todo org-agenda-show-inherited-tags))
  4281. (and (eq org-agenda-show-inherited-tags t)
  4282. (or (eq org-agenda-use-tag-inheritance t)
  4283. (memq 'todo org-agenda-use-tag-inheritance))))
  4284. tags (org-get-tags nil (not inherited-tags))
  4285. txt (org-agenda-format-item
  4286. ""
  4287. (buffer-substring-no-properties
  4288. beg1 (point-at-eol))
  4289. level category tags t))
  4290. (org-add-props txt props
  4291. 'org-marker marker 'org-hd-marker marker
  4292. 'org-todo-regexp org-todo-regexp
  4293. 'level level
  4294. 'org-complex-heading-regexp org-complex-heading-regexp
  4295. 'priority 1000
  4296. 'type "search")
  4297. (push txt ee)
  4298. (goto-char (1- end))))))))))
  4299. (setq rtn (nreverse ee))
  4300. (setq rtnall (append rtnall rtn)))
  4301. (org-agenda--insert-overriding-header
  4302. (with-temp-buffer
  4303. (insert "Search words: ")
  4304. (add-text-properties (point-min) (1- (point))
  4305. (list 'face 'org-agenda-structure))
  4306. (setq pos (point))
  4307. (insert string "\n")
  4308. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4309. (setq pos (point))
  4310. (unless org-agenda-multi
  4311. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4312. Press `\\[org-agenda-manipulate-query-add]', \
  4313. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4314. `\\[org-agenda-manipulate-query-add-re]', \
  4315. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4316. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4317. (add-text-properties pos (1- (point))
  4318. (list 'face 'org-agenda-structure)))
  4319. (buffer-string)))
  4320. (org-agenda-mark-header-line (point-min))
  4321. (when rtnall
  4322. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4323. (goto-char (point-min))
  4324. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4325. (add-text-properties (point-min) (point-max)
  4326. `(org-agenda-type search
  4327. org-last-args (,todo-only ,string ,edit-at)
  4328. org-redo-cmd ,org-agenda-redo-command
  4329. org-series-cmd ,org-cmd))
  4330. (org-agenda-finalize)
  4331. (setq buffer-read-only t))))
  4332. ;;; Agenda TODO list
  4333. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4334. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4335. (concat
  4336. (if (or (equal keywords "ALL") (not keywords))
  4337. (propertize "ALL" 'face 'warning)
  4338. (mapconcat
  4339. (lambda (kw)
  4340. (propertize kw 'face (org-get-todo-face kw)))
  4341. (org-split-string keywords "|")
  4342. "|"))
  4343. "\n"))
  4344. (defvar org-select-this-todo-keyword nil)
  4345. (defvar org-last-arg nil)
  4346. ;;;###autoload
  4347. (defun org-todo-list (&optional arg)
  4348. "Show all (not done) TODO entries from all agenda file in a single list.
  4349. The prefix arg can be used to select a specific TODO keyword and limit
  4350. the list to these. When using `\\[universal-argument]', you will be prompted
  4351. for a keyword. A numeric prefix directly selects the Nth keyword in
  4352. `org-todo-keywords-1'."
  4353. (interactive "P")
  4354. (when org-agenda-overriding-arguments
  4355. (setq arg org-agenda-overriding-arguments))
  4356. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4357. (let* ((today (org-today))
  4358. (date (calendar-gregorian-from-absolute today))
  4359. (completion-ignore-case t)
  4360. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4361. (catch 'exit
  4362. (when org-agenda-sticky
  4363. (setq org-agenda-buffer-name
  4364. (if (stringp org-select-this-todo-keyword)
  4365. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4366. org-select-this-todo-keyword)
  4367. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4368. (org-agenda-prepare "TODO")
  4369. (setq kwds org-todo-keywords-for-agenda
  4370. org-select-this-todo-keyword (if (stringp arg) arg
  4371. (and (integerp arg)
  4372. (> arg 0)
  4373. (nth (1- arg) kwds))))
  4374. (when (equal arg '(4))
  4375. (setq org-select-this-todo-keyword
  4376. (completing-read "Keyword (or KWD1|K2D2|...): "
  4377. (mapcar #'list kwds) nil nil)))
  4378. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4379. (org-compile-prefix-format 'todo)
  4380. (org-set-sorting-strategy 'todo)
  4381. (setq org-agenda-redo-command
  4382. `(org-todo-list (or (and (numberp current-prefix-arg)
  4383. current-prefix-arg)
  4384. ,org-select-this-todo-keyword
  4385. current-prefix-arg ,arg)))
  4386. (setq files (org-agenda-files nil 'ifmode)
  4387. rtnall nil)
  4388. (while (setq file (pop files))
  4389. (catch 'nextfile
  4390. (org-check-agenda-file file)
  4391. (setq rtn (org-agenda-get-day-entries file date :todo))
  4392. (setq rtnall (append rtnall rtn))))
  4393. (org-agenda--insert-overriding-header
  4394. (with-temp-buffer
  4395. (insert "Global list of TODO items of type: ")
  4396. (add-text-properties (point-min) (1- (point))
  4397. (list 'face 'org-agenda-structure
  4398. 'short-heading
  4399. (concat "ToDo: "
  4400. (or org-select-this-todo-keyword "ALL"))))
  4401. (org-agenda-mark-header-line (point-min))
  4402. (insert (org-agenda-propertize-selected-todo-keywords
  4403. org-select-this-todo-keyword))
  4404. (setq pos (point))
  4405. (unless org-agenda-multi
  4406. (insert (substitute-command-keys "Press \
  4407. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4408. to search again: (0)[ALL]"))
  4409. (let ((n 0))
  4410. (dolist (k kwds)
  4411. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4412. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4413. (insert "\n "))
  4414. (insert " " s))))
  4415. (insert "\n"))
  4416. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4417. (buffer-string)))
  4418. (org-agenda-mark-header-line (point-min))
  4419. (when rtnall
  4420. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4421. (goto-char (point-min))
  4422. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4423. (add-text-properties (point-min) (point-max)
  4424. `(org-agenda-type todo
  4425. org-last-args ,arg
  4426. org-redo-cmd ,org-agenda-redo-command
  4427. org-series-cmd ,org-cmd))
  4428. (org-agenda-finalize)
  4429. (setq buffer-read-only t))))
  4430. ;;; Agenda tags match
  4431. ;;;###autoload
  4432. (defun org-tags-view (&optional todo-only match)
  4433. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4434. The prefix arg TODO-ONLY limits the search to TODO entries."
  4435. (interactive "P")
  4436. (when org-agenda-overriding-arguments
  4437. (setq todo-only (car org-agenda-overriding-arguments)
  4438. match (nth 1 org-agenda-overriding-arguments)))
  4439. (let* ((org-tags-match-list-sublevels
  4440. org-tags-match-list-sublevels)
  4441. (completion-ignore-case t)
  4442. (org--matcher-tags-todo-only todo-only)
  4443. rtn rtnall files file pos matcher
  4444. buffer)
  4445. (when (and (stringp match) (not (string-match "\\S-" match)))
  4446. (setq match nil))
  4447. (catch 'exit
  4448. ;; TODO: this code is repeated a lot...
  4449. (when org-agenda-sticky
  4450. (setq org-agenda-buffer-name
  4451. (if (stringp match)
  4452. (format "*Org Agenda(%s:%s)*"
  4453. (or org-keys (or (and todo-only "M") "m")) match)
  4454. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4455. (setq matcher (org-make-tags-matcher match))
  4456. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4457. ;; expanding tags within `org-make-tags-matcher'
  4458. (org-agenda-prepare (concat "TAGS " match))
  4459. (setq match (car matcher)
  4460. matcher (cdr matcher))
  4461. (org-compile-prefix-format 'tags)
  4462. (org-set-sorting-strategy 'tags)
  4463. (setq org-agenda-query-string match)
  4464. (setq org-agenda-redo-command
  4465. (list 'org-tags-view
  4466. `(quote ,org--matcher-tags-todo-only)
  4467. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4468. (setq files (org-agenda-files nil 'ifmode)
  4469. rtnall nil)
  4470. (while (setq file (pop files))
  4471. (catch 'nextfile
  4472. (org-check-agenda-file file)
  4473. (setq buffer (if (file-exists-p file)
  4474. (org-get-agenda-file-buffer file)
  4475. (error "No such file %s" file)))
  4476. (if (not buffer)
  4477. ;; If file does not exist, error message to agenda
  4478. (setq rtn (list
  4479. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4480. rtnall (append rtnall rtn))
  4481. (with-current-buffer buffer
  4482. (unless (derived-mode-p 'org-mode)
  4483. (error "Agenda file %s is not in Org mode" file))
  4484. (save-excursion
  4485. (save-restriction
  4486. (if (eq buffer org-agenda-restrict)
  4487. (narrow-to-region org-agenda-restrict-begin
  4488. org-agenda-restrict-end)
  4489. (widen))
  4490. (setq rtn (org-scan-tags 'agenda
  4491. matcher
  4492. org--matcher-tags-todo-only))
  4493. (setq rtnall (append rtnall rtn))))))))
  4494. (org-agenda--insert-overriding-header
  4495. (with-temp-buffer
  4496. (insert "Headlines with TAGS match: ")
  4497. (add-text-properties (point-min) (1- (point))
  4498. (list 'face 'org-agenda-structure
  4499. 'short-heading
  4500. (concat "Match: " match)))
  4501. (setq pos (point))
  4502. (insert match "\n")
  4503. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4504. (setq pos (point))
  4505. (unless org-agenda-multi
  4506. (insert (substitute-command-keys
  4507. "Press \
  4508. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4509. to search again\n")))
  4510. (add-text-properties pos (1- (point))
  4511. (list 'face 'org-agenda-structure))
  4512. (buffer-string)))
  4513. (org-agenda-mark-header-line (point-min))
  4514. (when rtnall
  4515. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4516. (goto-char (point-min))
  4517. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4518. (add-text-properties
  4519. (point-min) (point-max)
  4520. `(org-agenda-type tags
  4521. org-last-args (,org--matcher-tags-todo-only ,match)
  4522. org-redo-cmd ,org-agenda-redo-command
  4523. org-series-cmd ,org-cmd))
  4524. (org-agenda-finalize)
  4525. (setq buffer-read-only t))))
  4526. ;;; Agenda Finding stuck projects
  4527. (defvar org-agenda-skip-regexp nil
  4528. "Regular expression used in skipping subtrees for the agenda.
  4529. This is basically a temporary global variable that can be set and then
  4530. used by user-defined selections using `org-agenda-skip-function'.")
  4531. (defvar org-agenda-overriding-header nil
  4532. "When set during agenda, todo and tags searches it replaces the header.
  4533. If an empty string, no header will be inserted. If any other
  4534. string, it will be inserted as a header. If nil, a header will
  4535. be generated automatically according to the command. This
  4536. variable should not be set directly, but custom commands can bind
  4537. it in the options section.")
  4538. (defun org-agenda-skip-entry-if (&rest conditions)
  4539. "Skip entry if any of CONDITIONS is true.
  4540. See `org-agenda-skip-if' for details."
  4541. (org-agenda-skip-if nil conditions))
  4542. (defun org-agenda-skip-subtree-if (&rest conditions)
  4543. "Skip subtree if any of CONDITIONS is true.
  4544. See `org-agenda-skip-if' for details."
  4545. (org-agenda-skip-if t conditions))
  4546. (defun org-agenda-skip-if (subtree conditions)
  4547. "Checks current entity for CONDITIONS.
  4548. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4549. the entry (i.e. the text before the next heading) is checked.
  4550. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4551. from different tests. Valid conditions are:
  4552. scheduled Check if there is a scheduled cookie
  4553. notscheduled Check if there is no scheduled cookie
  4554. deadline Check if there is a deadline
  4555. notdeadline Check if there is no deadline
  4556. timestamp Check if there is a timestamp (also deadline or scheduled)
  4557. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4558. regexp Check if regexp matches
  4559. notregexp Check if regexp does not match.
  4560. todo Check if TODO keyword matches
  4561. nottodo Check if TODO keyword does not match
  4562. The regexp is taken from the conditions list, it must come right after
  4563. the `regexp' or `notregexp' element.
  4564. `todo' and `nottodo' accept as an argument a list of todo
  4565. keywords, which may include \"*\" to match any todo keyword.
  4566. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4567. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4568. Instead of a list, a keyword class may be given. For example:
  4569. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4570. would skip entries that haven't been marked with any of \"DONE\"
  4571. keywords. Possible classes are: `todo', `done', `any'.
  4572. If any of these conditions is met, this function returns the end point of
  4573. the entity, causing the search to continue from there. This is a function
  4574. that can be put into `org-agenda-skip-function' for the duration of a command."
  4575. (org-back-to-heading t)
  4576. (let* ((beg (point))
  4577. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4578. (org-entry-end-position)))
  4579. (planning-end (if subtree end (line-end-position 2)))
  4580. m)
  4581. (and
  4582. (or (and (memq 'scheduled conditions)
  4583. (re-search-forward org-scheduled-time-regexp planning-end t))
  4584. (and (memq 'notscheduled conditions)
  4585. (not
  4586. (save-excursion
  4587. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4588. (and (memq 'deadline conditions)
  4589. (re-search-forward org-deadline-time-regexp planning-end t))
  4590. (and (memq 'notdeadline conditions)
  4591. (not
  4592. (save-excursion
  4593. (re-search-forward org-deadline-time-regexp planning-end t))))
  4594. (and (memq 'timestamp conditions)
  4595. (re-search-forward org-ts-regexp end t))
  4596. (and (memq 'nottimestamp conditions)
  4597. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4598. (and (setq m (memq 'regexp conditions))
  4599. (stringp (nth 1 m))
  4600. (re-search-forward (nth 1 m) end t))
  4601. (and (setq m (memq 'notregexp conditions))
  4602. (stringp (nth 1 m))
  4603. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4604. (and (or
  4605. (setq m (memq 'nottodo conditions))
  4606. (setq m (memq 'todo-unblocked conditions))
  4607. (setq m (memq 'nottodo-unblocked conditions))
  4608. (setq m (memq 'todo conditions)))
  4609. (org-agenda-skip-if-todo m end)))
  4610. end)))
  4611. (defun org-agenda-skip-if-todo (args end)
  4612. "Helper function for `org-agenda-skip-if', do not use it directly.
  4613. ARGS is a list with first element either `todo', `nottodo',
  4614. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4615. a list of TODO keywords, or a state symbol `todo' or `done' or
  4616. `any'."
  4617. (let ((todo-re
  4618. (concat "^\\*+[ \t]+"
  4619. (regexp-opt
  4620. (pcase args
  4621. (`(,_ todo)
  4622. (org-delete-all org-done-keywords
  4623. (copy-sequence org-todo-keywords-1)))
  4624. (`(,_ done) org-done-keywords)
  4625. (`(,_ any) org-todo-keywords-1)
  4626. (`(,_ ,(pred atom))
  4627. (error "Invalid TODO class or type: %S" args))
  4628. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4629. (`(,_ ,todo-list) todo-list))
  4630. 'words))))
  4631. (pcase args
  4632. (`(todo . ,_)
  4633. (let (case-fold-search) (re-search-forward todo-re end t)))
  4634. (`(nottodo . ,_)
  4635. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4636. (`(todo-unblocked . ,_)
  4637. (catch :unblocked
  4638. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4639. (when (org-entry-blocked-p) (throw :unblocked t)))
  4640. nil))
  4641. (`(nottodo-unblocked . ,_)
  4642. (catch :unblocked
  4643. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4644. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4645. t))
  4646. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4647. ;;;###autoload
  4648. (defun org-agenda-list-stuck-projects (&rest ignore)
  4649. "Create agenda view for projects that are stuck.
  4650. Stuck projects are project that have no next actions. For the definitions
  4651. of what a project is and how to check if it stuck, customize the variable
  4652. `org-stuck-projects'."
  4653. (interactive)
  4654. (let* ((org-agenda-overriding-header
  4655. (or org-agenda-overriding-header "List of stuck projects: "))
  4656. (matcher (nth 0 org-stuck-projects))
  4657. (todo (nth 1 org-stuck-projects))
  4658. (tags (nth 2 org-stuck-projects))
  4659. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4660. (todo-wds
  4661. (if (not (member "*" todo)) todo
  4662. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4663. (org-delete-all org-done-keywords-for-agenda
  4664. (copy-sequence org-todo-keywords-for-agenda))))
  4665. (todo-re (and todo
  4666. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4667. (mapconcat #'identity todo-wds "\\|"))))
  4668. (tags-re (cond ((null tags) nil)
  4669. ((member "*" tags) org-tag-line-re)
  4670. (tags
  4671. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4672. (concat org-outline-regexp-bol
  4673. ".*?[ \t]:"
  4674. other-tags
  4675. (regexp-opt tags t)
  4676. ":" other-tags "[ \t]*$")))
  4677. (t nil)))
  4678. (re-list (delq nil (list todo-re tags-re gen-re)))
  4679. (skip-re
  4680. (if (null re-list)
  4681. (error "Missing information to identify unstuck projects")
  4682. (mapconcat #'identity re-list "\\|")))
  4683. (org-agenda-skip-function
  4684. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4685. ;; in the subtree.
  4686. `(lambda ()
  4687. (and (save-excursion
  4688. (let ((case-fold-search nil))
  4689. (re-search-forward
  4690. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4691. (progn (outline-next-heading) (point))))))
  4692. (org-tags-view nil matcher)
  4693. (setq org-agenda-buffer-name (buffer-name))
  4694. (with-current-buffer org-agenda-buffer-name
  4695. (setq org-agenda-redo-command
  4696. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4697. (let ((inhibit-read-only t))
  4698. (add-text-properties
  4699. (point-min) (point-max)
  4700. `(org-redo-cmd ,org-agenda-redo-command))))))
  4701. ;;; Diary integration
  4702. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4703. (defvar diary-list-entries-hook)
  4704. (defvar diary-time-regexp)
  4705. (defun org-get-entries-from-diary (date)
  4706. "Get the (Emacs Calendar) diary entries for DATE."
  4707. (require 'diary-lib)
  4708. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4709. (diary-display-function 'diary-fancy-display)
  4710. (pop-up-frames nil)
  4711. (diary-list-entries-hook
  4712. (cons 'org-diary-default-entry diary-list-entries-hook))
  4713. (diary-file-name-prefix nil) ; turn this feature off
  4714. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4715. (diary-time-regexp (concat "^" diary-time-regexp))
  4716. entries
  4717. (org-disable-agenda-to-diary t))
  4718. (save-excursion
  4719. (save-window-excursion
  4720. (funcall (if (fboundp 'diary-list-entries)
  4721. 'diary-list-entries 'list-diary-entries)
  4722. date 1)))
  4723. (if (not (get-buffer diary-fancy-buffer))
  4724. (setq entries nil)
  4725. (with-current-buffer diary-fancy-buffer
  4726. (setq buffer-read-only nil)
  4727. (if (zerop (buffer-size))
  4728. ;; No entries
  4729. (setq entries nil)
  4730. ;; Omit the date and other unnecessary stuff
  4731. (org-agenda-cleanup-fancy-diary)
  4732. ;; Add prefix to each line and extend the text properties
  4733. (if (zerop (buffer-size))
  4734. (setq entries nil)
  4735. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4736. (setq entries
  4737. (with-temp-buffer
  4738. (insert entries) (goto-char (point-min))
  4739. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4740. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4741. (replace-match (concat "; " (match-string 1)))))
  4742. (buffer-string)))))
  4743. (set-buffer-modified-p nil)
  4744. (kill-buffer diary-fancy-buffer)))
  4745. (when entries
  4746. (setq entries (org-split-string entries "\n"))
  4747. (setq entries
  4748. (mapcar
  4749. (lambda (x)
  4750. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4751. ;; Extend the text properties to the beginning of the line
  4752. (org-add-props x (text-properties-at (1- (length x)) x)
  4753. 'type "diary" 'date date 'face 'org-agenda-diary))
  4754. entries)))))
  4755. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4756. "Hook run when the fancy diary buffer is cleaned up.")
  4757. (defun org-agenda-cleanup-fancy-diary ()
  4758. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4759. This gets rid of the date, the underline under the date, and the
  4760. dummy entry installed by Org mode to ensure non-empty diary for
  4761. each date. It also removes lines that contain only whitespace."
  4762. (goto-char (point-min))
  4763. (if (looking-at ".*?:[ \t]*")
  4764. (progn
  4765. (replace-match "")
  4766. (re-search-forward "\n=+$" nil t)
  4767. (replace-match "")
  4768. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4769. (re-search-forward "\n=+$" nil t)
  4770. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4771. (goto-char (point-min))
  4772. (while (re-search-forward "^ +\n" nil t)
  4773. (replace-match ""))
  4774. (goto-char (point-min))
  4775. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4776. (replace-match ""))
  4777. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4778. (defun org-modify-diary-entry-string (string)
  4779. "Add text properties to string, allowing Org to act on it."
  4780. (org-add-props string nil
  4781. 'mouse-face 'highlight
  4782. 'help-echo (if buffer-file-name
  4783. (format "mouse-2 or RET jump to diary file %s"
  4784. (abbreviate-file-name buffer-file-name))
  4785. "")
  4786. 'org-agenda-diary-link t
  4787. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4788. (defun org-diary-default-entry ()
  4789. "Add a dummy entry to the diary.
  4790. Needed to avoid empty dates which mess up holiday display."
  4791. ;; Catch the error if dealing with the new add-to-diary-alist
  4792. (when org-disable-agenda-to-diary
  4793. (condition-case nil
  4794. (org-add-to-diary-list original-date "Org mode dummy" "")
  4795. (error
  4796. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4797. (defun org-add-to-diary-list (&rest args)
  4798. (if (fboundp 'diary-add-to-list)
  4799. (apply 'diary-add-to-list args)
  4800. (apply 'add-to-diary-list args)))
  4801. (defvar org-diary-last-run-time nil)
  4802. ;;;###autoload
  4803. (defun org-diary (&rest args)
  4804. "Return diary information from org files.
  4805. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4806. It accesses org files and extracts information from those files to be
  4807. listed in the diary. The function accepts arguments specifying what
  4808. items should be listed. For a list of arguments allowed here, see the
  4809. variable `org-agenda-entry-types'.
  4810. The call in the diary file should look like this:
  4811. &%%(org-diary) ~/path/to/some/orgfile.org
  4812. Use a separate line for each org file to check. Or, if you omit the file name,
  4813. all files listed in `org-agenda-files' will be checked automatically:
  4814. &%%(org-diary)
  4815. If you don't give any arguments (as in the example above), the default value
  4816. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4817. So the example above may also be written as
  4818. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4819. The function expects the lisp variables `entry' and `date' to be provided
  4820. by the caller, because this is how the calendar works. Don't use this
  4821. function from a program - use `org-agenda-get-day-entries' instead."
  4822. (when (> (- (float-time)
  4823. org-agenda-last-marker-time)
  4824. 5)
  4825. ;; I am not sure if this works with sticky agendas, because the marker
  4826. ;; list is then no longer a global variable.
  4827. (org-agenda-reset-markers))
  4828. (org-compile-prefix-format 'agenda)
  4829. (org-set-sorting-strategy 'agenda)
  4830. (setq args (or args org-agenda-entry-types))
  4831. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4832. (list entry)
  4833. (org-agenda-files t)))
  4834. (time (float-time))
  4835. file rtn results)
  4836. (when (or (not org-diary-last-run-time)
  4837. (> (- time
  4838. org-diary-last-run-time)
  4839. 3))
  4840. (org-agenda-prepare-buffers files))
  4841. (setq org-diary-last-run-time time)
  4842. ;; If this is called during org-agenda, don't return any entries to
  4843. ;; the calendar. Org Agenda will list these entries itself.
  4844. (when org-disable-agenda-to-diary (setq files nil))
  4845. (while (setq file (pop files))
  4846. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4847. (setq results (append results rtn)))
  4848. (when results
  4849. (setq results
  4850. (mapcar (lambda (i) (replace-regexp-in-string
  4851. org-link-bracket-re "\\2" i)) results))
  4852. (concat (org-agenda-finalize-entries results) "\n"))))
  4853. ;;; Agenda entry finders
  4854. (defun org-agenda--timestamp-to-absolute (&rest args)
  4855. "Call `org-time-string-to-absolute' with ARGS.
  4856. However, throw `:skip' whenever an error is raised."
  4857. (condition-case e
  4858. (apply #'org-time-string-to-absolute args)
  4859. (org-diary-sexp-no-match (throw :skip nil))
  4860. (error
  4861. (message "%s; Skipping entry" (error-message-string e))
  4862. (throw :skip nil))))
  4863. (defun org-agenda-get-day-entries (file date &rest args)
  4864. "Does the work for `org-diary' and `org-agenda'.
  4865. FILE is the path to a file to be checked for entries. DATE is date like
  4866. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4867. which kind of entries should be extracted. For details about these, see
  4868. the documentation of `org-diary'."
  4869. (let* ((org-startup-folded nil)
  4870. (org-startup-align-all-tables nil)
  4871. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4872. (error "No such file %s" file))))
  4873. (if (not buffer)
  4874. ;; If file does not exist, signal it in diary nonetheless.
  4875. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4876. (with-current-buffer buffer
  4877. (unless (derived-mode-p 'org-mode)
  4878. (error "Agenda file %s is not in Org mode" file))
  4879. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4880. (setf org-agenda-current-date date)
  4881. (save-excursion
  4882. (save-restriction
  4883. (if (eq buffer org-agenda-restrict)
  4884. (narrow-to-region org-agenda-restrict-begin
  4885. org-agenda-restrict-end)
  4886. (widen))
  4887. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4888. ;; first in order to populate DEADLINES before passing it.
  4889. ;;
  4890. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4891. ;; guarding us from modifying `org-agenda-entry-types'.
  4892. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4893. (when (and (memq :scheduled args) (memq :scheduled* args))
  4894. (setf args (delq :scheduled* args)))
  4895. (cond
  4896. ((memq :deadline args)
  4897. (setf args (cons :deadline
  4898. (delq :deadline (delq :deadline* args)))))
  4899. ((memq :deadline* args)
  4900. (setf args (cons :deadline* (delq :deadline* args)))))
  4901. ;; Collect list of headlines. Return them flattened.
  4902. (let ((case-fold-search nil) results deadlines)
  4903. (dolist (arg args (apply #'nconc (nreverse results)))
  4904. (pcase arg
  4905. ((and :todo (guard (org-agenda-today-p date)))
  4906. (push (org-agenda-get-todos) results))
  4907. (:timestamp
  4908. (push (org-agenda-get-blocks) results)
  4909. (push (org-agenda-get-timestamps deadlines) results))
  4910. (:sexp
  4911. (push (org-agenda-get-sexps) results))
  4912. (:scheduled
  4913. (push (org-agenda-get-scheduled deadlines) results))
  4914. (:scheduled*
  4915. (push (org-agenda-get-scheduled deadlines t) results))
  4916. (:closed
  4917. (push (org-agenda-get-progress) results))
  4918. (:deadline
  4919. (setf deadlines (org-agenda-get-deadlines))
  4920. (push deadlines results))
  4921. (:deadline*
  4922. (setf deadlines (org-agenda-get-deadlines t))
  4923. (push deadlines results)))))))))))
  4924. (defsubst org-em (x y list)
  4925. "Is X or Y a member of LIST?"
  4926. (or (memq x list) (memq y list)))
  4927. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4928. (defvar org-agenda-sorting-strategy-selected nil)
  4929. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4930. "Retrieve timestamp information for sorting agenda views.
  4931. Given a point or marker POM, returns a cons cell of the timestamp
  4932. and the timestamp type relevant for the sorting strategy in
  4933. `org-agenda-sorting-strategy-selected'."
  4934. (let (ts ts-date-type)
  4935. (save-match-data
  4936. (cond ((org-em 'scheduled-up 'scheduled-down
  4937. org-agenda-sorting-strategy-selected)
  4938. (setq ts (org-entry-get pom "SCHEDULED")
  4939. ts-date-type " scheduled"))
  4940. ((org-em 'deadline-up 'deadline-down
  4941. org-agenda-sorting-strategy-selected)
  4942. (setq ts (org-entry-get pom "DEADLINE")
  4943. ts-date-type " deadline"))
  4944. ((org-em 'ts-up 'ts-down
  4945. org-agenda-sorting-strategy-selected)
  4946. (setq ts (org-entry-get pom "TIMESTAMP")
  4947. ts-date-type " timestamp"))
  4948. ((org-em 'tsia-up 'tsia-down
  4949. org-agenda-sorting-strategy-selected)
  4950. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4951. ts-date-type " timestamp_ia"))
  4952. ((org-em 'timestamp-up 'timestamp-down
  4953. org-agenda-sorting-strategy-selected)
  4954. (setq ts (or (org-entry-get pom "SCHEDULED")
  4955. (org-entry-get pom "DEADLINE")
  4956. (org-entry-get pom "TIMESTAMP")
  4957. (org-entry-get pom "TIMESTAMP_IA"))
  4958. ts-date-type ""))
  4959. (t (setq ts-date-type "")))
  4960. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4961. ts-date-type))))
  4962. (defun org-agenda-get-todos ()
  4963. "Return the TODO information for agenda display."
  4964. (let* ((props (list 'face nil
  4965. 'done-face 'org-agenda-done
  4966. 'org-not-done-regexp org-not-done-regexp
  4967. 'org-todo-regexp org-todo-regexp
  4968. 'org-complex-heading-regexp org-complex-heading-regexp
  4969. 'mouse-face 'highlight
  4970. 'help-echo
  4971. (format "mouse-2 or RET jump to org file %s"
  4972. (abbreviate-file-name buffer-file-name))))
  4973. (case-fold-search nil)
  4974. (regexp (format org-heading-keyword-regexp-format
  4975. (cond
  4976. ((and org-select-this-todo-keyword
  4977. (equal org-select-this-todo-keyword "*"))
  4978. org-todo-regexp)
  4979. (org-select-this-todo-keyword
  4980. (concat "\\("
  4981. (mapconcat 'identity
  4982. (org-split-string
  4983. org-select-this-todo-keyword
  4984. "|")
  4985. "\\|") "\\)"))
  4986. (t org-not-done-regexp))))
  4987. marker priority category level tags todo-state
  4988. ts-date ts-date-type ts-date-pair
  4989. ee txt beg end inherited-tags todo-state-end-pos)
  4990. (goto-char (point-min))
  4991. (while (re-search-forward regexp nil t)
  4992. (catch :skip
  4993. (save-match-data
  4994. (beginning-of-line)
  4995. (org-agenda-skip)
  4996. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4997. (unless (and (setq todo-state (org-get-todo-state))
  4998. (setq todo-state-end-pos (match-end 2)))
  4999. (goto-char end)
  5000. (throw :skip nil))
  5001. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5002. (goto-char (1+ beg))
  5003. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5004. (throw :skip nil)))
  5005. (goto-char (match-beginning 2))
  5006. (setq marker (org-agenda-new-marker (match-beginning 0))
  5007. category (org-get-category)
  5008. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5009. ts-date (car ts-date-pair)
  5010. ts-date-type (cdr ts-date-pair)
  5011. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5012. inherited-tags
  5013. (or (eq org-agenda-show-inherited-tags 'always)
  5014. (and (listp org-agenda-show-inherited-tags)
  5015. (memq 'todo org-agenda-show-inherited-tags))
  5016. (and (eq org-agenda-show-inherited-tags t)
  5017. (or (eq org-agenda-use-tag-inheritance t)
  5018. (memq 'todo org-agenda-use-tag-inheritance))))
  5019. tags (org-get-tags nil (not inherited-tags))
  5020. level (make-string (org-reduced-level (org-outline-level)) ? )
  5021. txt (org-agenda-format-item "" txt level category tags t)
  5022. priority (1+ (org-get-priority txt)))
  5023. (org-add-props txt props
  5024. 'org-marker marker 'org-hd-marker marker
  5025. 'priority priority
  5026. 'level level
  5027. 'ts-date ts-date
  5028. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5029. (push txt ee)
  5030. (if org-agenda-todo-list-sublevels
  5031. (goto-char todo-state-end-pos)
  5032. (org-end-of-subtree 'invisible))))
  5033. (nreverse ee)))
  5034. (defun org-agenda-todo-custom-ignore-p (time n)
  5035. "Check whether timestamp is farther away than n number of days.
  5036. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5037. `org-agenda-todo-ignore-scheduled' or
  5038. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5039. (let ((days (org-time-stamp-to-now
  5040. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5041. (if (>= n 0)
  5042. (>= days n)
  5043. (<= days n))))
  5044. ;;;###autoload
  5045. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5046. (&optional end)
  5047. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5048. (when (or org-agenda-todo-ignore-with-date
  5049. org-agenda-todo-ignore-scheduled
  5050. org-agenda-todo-ignore-deadlines
  5051. org-agenda-todo-ignore-timestamp)
  5052. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5053. (save-excursion
  5054. (or (and org-agenda-todo-ignore-with-date
  5055. (re-search-forward org-ts-regexp end t))
  5056. (and org-agenda-todo-ignore-scheduled
  5057. (re-search-forward org-scheduled-time-regexp end t)
  5058. (cond
  5059. ((eq org-agenda-todo-ignore-scheduled 'future)
  5060. (> (org-time-stamp-to-now
  5061. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5062. ((eq org-agenda-todo-ignore-scheduled 'past)
  5063. (<= (org-time-stamp-to-now
  5064. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5065. ((numberp org-agenda-todo-ignore-scheduled)
  5066. (org-agenda-todo-custom-ignore-p
  5067. (match-string 1) org-agenda-todo-ignore-scheduled))
  5068. (t)))
  5069. (and org-agenda-todo-ignore-deadlines
  5070. (re-search-forward org-deadline-time-regexp end t)
  5071. (cond
  5072. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5073. ((eq org-agenda-todo-ignore-deadlines 'far)
  5074. (not (org-deadline-close-p (match-string 1))))
  5075. ((eq org-agenda-todo-ignore-deadlines 'future)
  5076. (> (org-time-stamp-to-now
  5077. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5078. ((eq org-agenda-todo-ignore-deadlines 'past)
  5079. (<= (org-time-stamp-to-now
  5080. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5081. ((numberp org-agenda-todo-ignore-deadlines)
  5082. (org-agenda-todo-custom-ignore-p
  5083. (match-string 1) org-agenda-todo-ignore-deadlines))
  5084. (t (org-deadline-close-p (match-string 1)))))
  5085. (and org-agenda-todo-ignore-timestamp
  5086. (let ((buffer (current-buffer))
  5087. (regexp
  5088. (concat
  5089. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5090. (start (point)))
  5091. ;; Copy current buffer into a temporary one
  5092. (with-temp-buffer
  5093. (insert-buffer-substring buffer start end)
  5094. (goto-char (point-min))
  5095. ;; Delete SCHEDULED and DEADLINE items
  5096. (while (re-search-forward regexp end t)
  5097. (delete-region (match-beginning 0) (match-end 0)))
  5098. (goto-char (point-min))
  5099. ;; No search for timestamp left
  5100. (when (re-search-forward org-ts-regexp nil t)
  5101. (cond
  5102. ((eq org-agenda-todo-ignore-timestamp 'future)
  5103. (> (org-time-stamp-to-now
  5104. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5105. ((eq org-agenda-todo-ignore-timestamp 'past)
  5106. (<= (org-time-stamp-to-now
  5107. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5108. ((numberp org-agenda-todo-ignore-timestamp)
  5109. (org-agenda-todo-custom-ignore-p
  5110. (match-string 1) org-agenda-todo-ignore-timestamp))
  5111. (t))))))))))
  5112. (defun org-agenda-get-timestamps (&optional deadlines)
  5113. "Return the date stamp information for agenda display.
  5114. Optional argument DEADLINES is a list of deadline items to be
  5115. displayed in agenda view."
  5116. (let* ((props (list 'face 'org-agenda-calendar-event
  5117. 'org-not-done-regexp org-not-done-regexp
  5118. 'org-todo-regexp org-todo-regexp
  5119. 'org-complex-heading-regexp org-complex-heading-regexp
  5120. 'mouse-face 'highlight
  5121. 'help-echo
  5122. (format "mouse-2 or RET jump to Org file %s"
  5123. (abbreviate-file-name buffer-file-name))))
  5124. (current (calendar-absolute-from-gregorian date))
  5125. (today (org-today))
  5126. (deadline-position-alist
  5127. (mapcar (lambda (d)
  5128. (let ((m (get-text-property 0 'org-hd-marker d)))
  5129. (and m (marker-position m))))
  5130. deadlines))
  5131. ;; Match time-stamps set to current date, time-stamps with
  5132. ;; a repeater, and S-exp time-stamps.
  5133. (regexp
  5134. (concat
  5135. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5136. (regexp-quote
  5137. (substring
  5138. (format-time-string
  5139. (car org-time-stamp-formats)
  5140. (encode-time ; DATE bound by calendar
  5141. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5142. 1 11))
  5143. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5144. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5145. timestamp-items)
  5146. (goto-char (point-min))
  5147. (while (re-search-forward regexp nil t)
  5148. ;; Skip date ranges, scheduled and deadlines, which are handled
  5149. ;; specially. Also skip time-stamps before first headline as
  5150. ;; there would be no entry to add to the agenda. Eventually,
  5151. ;; ignore clock entries.
  5152. (catch :skip
  5153. (save-match-data
  5154. (when (or (org-at-date-range-p)
  5155. (org-at-planning-p)
  5156. (org-before-first-heading-p)
  5157. (and org-agenda-include-inactive-timestamps
  5158. (org-at-clock-log-p)))
  5159. (throw :skip nil))
  5160. (org-agenda-skip))
  5161. (let* ((pos (match-beginning 0))
  5162. (repeat (match-string 1))
  5163. (sexp-entry (match-string 3))
  5164. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5165. (save-excursion
  5166. (goto-char pos)
  5167. (looking-at org-ts-regexp-both)
  5168. (match-string 0))))
  5169. (todo-state (org-get-todo-state))
  5170. (warntime (get-text-property (point) 'org-appt-warntime))
  5171. (done? (member todo-state org-done-keywords)))
  5172. ;; Possibly skip done tasks.
  5173. (when (and done? org-agenda-skip-timestamp-if-done)
  5174. (throw :skip t))
  5175. ;; S-exp entry doesn't match current day: skip it.
  5176. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5177. (throw :skip nil))
  5178. (when repeat
  5179. (let* ((past
  5180. ;; A repeating time stamp is shown at its base
  5181. ;; date and every repeated date up to TODAY. If
  5182. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5183. ;; however, only the last repeat before today
  5184. ;; (inclusive) is shown.
  5185. (org-agenda--timestamp-to-absolute
  5186. repeat
  5187. (if (or (> current today)
  5188. (eq org-agenda-prefer-last-repeat t)
  5189. (member todo-state org-agenda-prefer-last-repeat))
  5190. today
  5191. current)
  5192. 'past (current-buffer) pos))
  5193. (future
  5194. ;; Display every repeated date past TODAY
  5195. ;; (exclusive) unless
  5196. ;; `org-agenda-show-future-repeats' is nil. If
  5197. ;; this variable is set to `next', only display
  5198. ;; the first repeated date after TODAY
  5199. ;; (exclusive).
  5200. (cond
  5201. ((<= current today) past)
  5202. ((not org-agenda-show-future-repeats) past)
  5203. (t
  5204. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5205. (1+ today)
  5206. current)))
  5207. (org-agenda--timestamp-to-absolute
  5208. repeat base 'future (current-buffer) pos))))))
  5209. (when (and (/= current past) (/= current future))
  5210. (throw :skip nil))))
  5211. (save-excursion
  5212. (re-search-backward org-outline-regexp-bol nil t)
  5213. ;; Possibly skip time-stamp when a deadline is set.
  5214. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5215. (assq (point) deadline-position-alist))
  5216. (throw :skip nil))
  5217. (let* ((category (org-get-category pos))
  5218. (inherited-tags
  5219. (or (eq org-agenda-show-inherited-tags 'always)
  5220. (and (consp org-agenda-show-inherited-tags)
  5221. (memq 'agenda org-agenda-show-inherited-tags))
  5222. (and (eq org-agenda-show-inherited-tags t)
  5223. (or (eq org-agenda-use-tag-inheritance t)
  5224. (memq 'agenda
  5225. org-agenda-use-tag-inheritance)))))
  5226. (tags (org-get-tags nil (not inherited-tags)))
  5227. (level (make-string (org-reduced-level (org-outline-level))
  5228. ?\s))
  5229. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5230. (match-string 1)))
  5231. (inactive? (= (char-after pos) ?\[))
  5232. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5233. (item
  5234. (org-agenda-format-item
  5235. (and inactive? org-agenda-inactive-leader)
  5236. head level category tags time-stamp org-ts-regexp habit?)))
  5237. (org-add-props item props
  5238. 'priority (if habit?
  5239. (org-habit-get-priority (org-habit-parse-todo))
  5240. (org-get-priority item))
  5241. 'org-marker (org-agenda-new-marker pos)
  5242. 'org-hd-marker (org-agenda-new-marker)
  5243. 'date date
  5244. 'level level
  5245. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5246. current)
  5247. 'todo-state todo-state
  5248. 'warntime warntime
  5249. 'type "timestamp")
  5250. (push item timestamp-items))))
  5251. (when org-agenda-skip-additional-timestamps-same-entry
  5252. (outline-next-heading))))
  5253. (nreverse timestamp-items)))
  5254. (defun org-agenda-get-sexps ()
  5255. "Return the sexp information for agenda display."
  5256. (require 'diary-lib)
  5257. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5258. 'mouse-face 'highlight
  5259. 'help-echo
  5260. (format "mouse-2 or RET jump to org file %s"
  5261. (abbreviate-file-name buffer-file-name))))
  5262. (regexp "^&?%%(")
  5263. marker category extra level ee txt tags entry
  5264. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5265. (goto-char (point-min))
  5266. (while (re-search-forward regexp nil t)
  5267. (catch :skip
  5268. (org-agenda-skip)
  5269. (setq beg (match-beginning 0))
  5270. (goto-char (1- (match-end 0)))
  5271. (setq b (point))
  5272. (forward-sexp 1)
  5273. (setq sexp (buffer-substring b (point)))
  5274. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5275. (org-trim (match-string 1))
  5276. ""))
  5277. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5278. (when result
  5279. (setq marker (org-agenda-new-marker beg)
  5280. level (make-string (org-reduced-level (org-outline-level)) ? )
  5281. category (org-get-category beg)
  5282. inherited-tags
  5283. (or (eq org-agenda-show-inherited-tags 'always)
  5284. (and (listp org-agenda-show-inherited-tags)
  5285. (memq 'agenda org-agenda-show-inherited-tags))
  5286. (and (eq org-agenda-show-inherited-tags t)
  5287. (or (eq org-agenda-use-tag-inheritance t)
  5288. (memq 'agenda org-agenda-use-tag-inheritance))))
  5289. tags (org-get-tags nil (not inherited-tags))
  5290. todo-state (org-get-todo-state)
  5291. warntime (get-text-property (point) 'org-appt-warntime)
  5292. extra nil)
  5293. (dolist (r (if (stringp result)
  5294. (list result)
  5295. result)) ;; we expect a list here
  5296. (when (and org-agenda-diary-sexp-prefix
  5297. (string-match org-agenda-diary-sexp-prefix r))
  5298. (setq extra (match-string 0 r)
  5299. r (replace-match "" nil nil r)))
  5300. (if (string-match "\\S-" r)
  5301. (setq txt r)
  5302. (setq txt "SEXP entry returned empty string"))
  5303. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5304. (org-add-props txt props 'org-marker marker
  5305. 'date date 'todo-state todo-state
  5306. 'level level 'type "sexp" 'warntime warntime)
  5307. (push txt ee)))))
  5308. (nreverse ee)))
  5309. ;; Calendar sanity: define some functions that are independent of
  5310. ;; `calendar-date-style'.
  5311. (defun org-anniversary (year month day &optional mark)
  5312. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5313. (with-no-warnings
  5314. (let ((calendar-date-style 'iso))
  5315. (diary-anniversary year month day mark))))
  5316. (defun org-cyclic (N year month day &optional mark)
  5317. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5318. (with-no-warnings
  5319. (let ((calendar-date-style 'iso))
  5320. (diary-cyclic N year month day mark))))
  5321. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5322. "Like `diary-block', but with fixed (ISO) order of arguments."
  5323. (with-no-warnings
  5324. (let ((calendar-date-style 'iso))
  5325. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5326. (defun org-date (year month day &optional mark)
  5327. "Like `diary-date', but with fixed (ISO) order of arguments."
  5328. (with-no-warnings
  5329. (let ((calendar-date-style 'iso))
  5330. (diary-date year month day mark))))
  5331. ;; Define the `org-class' function
  5332. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5333. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5334. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5335. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5336. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5337. `holidays', then any date that is known by the Emacs calendar to be a
  5338. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5339. then those holidays will be skipped."
  5340. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5341. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5342. (d (calendar-absolute-from-gregorian date))
  5343. (h (when skip-weeks (calendar-check-holidays date))))
  5344. (and
  5345. (<= date1 d)
  5346. (<= d date2)
  5347. (= (calendar-day-of-week date) dayname)
  5348. (or (not skip-weeks)
  5349. (progn
  5350. (require 'cal-iso)
  5351. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5352. (not (or (and h (memq 'holidays skip-weeks))
  5353. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5354. entry)))
  5355. (defalias 'org-get-closed 'org-agenda-get-progress)
  5356. (defun org-agenda-get-progress ()
  5357. "Return the logged TODO entries for agenda display."
  5358. (let* ((props (list 'mouse-face 'highlight
  5359. 'org-not-done-regexp org-not-done-regexp
  5360. 'org-todo-regexp org-todo-regexp
  5361. 'org-complex-heading-regexp org-complex-heading-regexp
  5362. 'help-echo
  5363. (format "mouse-2 or RET jump to org file %s"
  5364. (abbreviate-file-name buffer-file-name))))
  5365. (items (if (consp org-agenda-show-log-scoped)
  5366. org-agenda-show-log-scoped
  5367. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5368. '(clock)
  5369. org-agenda-log-mode-items)))
  5370. (parts
  5371. (delq nil
  5372. (list
  5373. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5374. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5375. (when (memq 'state items)
  5376. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5377. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5378. (error "`org-agenda-log-mode-items' is empty")))
  5379. (regexp (concat
  5380. "\\(" parts-re "\\)"
  5381. " *\\["
  5382. (regexp-quote
  5383. (substring
  5384. (format-time-string
  5385. (car org-time-stamp-formats)
  5386. (encode-time ; DATE bound by calendar
  5387. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5388. 1 11))))
  5389. (org-agenda-search-headline-for-time nil)
  5390. marker hdmarker priority category level tags closedp type
  5391. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5392. (goto-char (point-min))
  5393. (while (re-search-forward regexp nil t)
  5394. (catch :skip
  5395. (org-agenda-skip)
  5396. (setq marker (org-agenda-new-marker (match-beginning 0))
  5397. closedp (equal (match-string 1) org-closed-string)
  5398. statep (equal (string-to-char (match-string 1)) ?-)
  5399. clockp (not (or closedp statep))
  5400. state (and statep (match-string 2))
  5401. category (org-get-category (match-beginning 0))
  5402. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5403. (when (string-match "\\]" timestr)
  5404. ;; substring should only run to end of time stamp
  5405. (setq rest (substring timestr (match-end 0))
  5406. timestr (substring timestr 0 (match-end 0)))
  5407. (if (and (not closedp) (not statep)
  5408. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5409. rest))
  5410. (progn (setq timestr (concat (substring timestr 0 -1)
  5411. "-" (match-string 1 rest) "]"))
  5412. (setq clocked (match-string 2 rest)))
  5413. (setq clocked "-")))
  5414. (save-excursion
  5415. (setq extra
  5416. (cond
  5417. ((not org-agenda-log-mode-add-notes) nil)
  5418. (statep
  5419. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5420. (match-string 1)))
  5421. (clockp
  5422. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5423. (match-string 1)))))
  5424. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5425. (throw :skip nil)
  5426. (goto-char (match-beginning 0))
  5427. (setq hdmarker (org-agenda-new-marker)
  5428. inherited-tags
  5429. (or (eq org-agenda-show-inherited-tags 'always)
  5430. (and (listp org-agenda-show-inherited-tags)
  5431. (memq 'todo org-agenda-show-inherited-tags))
  5432. (and (eq org-agenda-show-inherited-tags t)
  5433. (or (eq org-agenda-use-tag-inheritance t)
  5434. (memq 'todo org-agenda-use-tag-inheritance))))
  5435. tags (org-get-tags nil (not inherited-tags))
  5436. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5437. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5438. (setq txt (match-string 1))
  5439. (when extra
  5440. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5441. (setq txt (concat (substring txt 0 (match-beginning 1))
  5442. " - " extra " " (match-string 2 txt)))
  5443. (setq txt (concat txt " - " extra))))
  5444. (setq txt (org-agenda-format-item
  5445. (cond
  5446. (closedp "Closed: ")
  5447. (statep (concat "State: (" state ")"))
  5448. (t (concat "Clocked: (" clocked ")")))
  5449. txt level category tags timestr)))
  5450. (setq type (cond (closedp "closed")
  5451. (statep "state")
  5452. (t "clock")))
  5453. (setq priority 100000)
  5454. (org-add-props txt props
  5455. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5456. 'priority priority 'level level
  5457. 'type type 'date date
  5458. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5459. (push txt ee))
  5460. (goto-char (point-at-eol))))
  5461. (nreverse ee)))
  5462. (defun org-agenda-show-clocking-issues ()
  5463. "Add overlays, showing issues with clocking.
  5464. See also the user option `org-agenda-clock-consistency-checks'."
  5465. (interactive)
  5466. (let* ((pl org-agenda-clock-consistency-checks)
  5467. (re (concat "^[ \t]*"
  5468. org-clock-string
  5469. "[ \t]+"
  5470. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5471. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5472. (tlstart 0.)
  5473. (tlend 0.)
  5474. (maxtime (org-duration-to-minutes
  5475. (or (plist-get pl :max-duration) "24:00")))
  5476. (mintime (org-duration-to-minutes
  5477. (or (plist-get pl :min-duration) 0)))
  5478. (maxgap (org-duration-to-minutes
  5479. ;; default 30:00 means never complain
  5480. (or (plist-get pl :max-gap) "30:00")))
  5481. (gapok (mapcar #'org-duration-to-minutes
  5482. (plist-get pl :gap-ok-around)))
  5483. (def-face (or (plist-get pl :default-face)
  5484. '((:background "DarkRed") (:foreground "white"))))
  5485. issue face m te ts dt ov)
  5486. (goto-char (point-min))
  5487. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5488. (setq issue nil face def-face)
  5489. (catch 'next
  5490. (setq m (org-get-at-bol 'org-marker)
  5491. te nil ts nil)
  5492. (unless (and m (markerp m))
  5493. (setq issue "No valid clock line") (throw 'next t))
  5494. (org-with-point-at m
  5495. (save-excursion
  5496. (goto-char (point-at-bol))
  5497. (unless (looking-at re)
  5498. (error "No valid Clock line")
  5499. (throw 'next t))
  5500. (unless (match-end 3)
  5501. (setq issue
  5502. (format
  5503. "No end time: (%s)"
  5504. (org-duration-from-minutes
  5505. (floor
  5506. (- (float-time (org-current-time))
  5507. (float-time (org-time-string-to-time (match-string 1))))
  5508. 60)))
  5509. face (or (plist-get pl :no-end-time-face) face))
  5510. (throw 'next t))
  5511. (setq ts (match-string 1)
  5512. te (match-string 3)
  5513. ts (float-time (org-time-string-to-time ts))
  5514. te (float-time (org-time-string-to-time te))
  5515. dt (- te ts))))
  5516. (cond
  5517. ((> dt (* 60 maxtime))
  5518. ;; a very long clocking chunk
  5519. (setq issue (format "Clocking interval is very long: %s"
  5520. (org-duration-from-minutes (floor dt 60)))
  5521. face (or (plist-get pl :long-face) face)))
  5522. ((< dt (* 60 mintime))
  5523. ;; a very short clocking chunk
  5524. (setq issue (format "Clocking interval is very short: %s"
  5525. (org-duration-from-minutes (floor dt 60)))
  5526. face (or (plist-get pl :short-face) face)))
  5527. ((and (> tlend 0) (< ts tlend))
  5528. ;; Two clock entries are overlapping
  5529. (setq issue (format "Clocking overlap: %d minutes"
  5530. (/ (- tlend ts) 60))
  5531. face (or (plist-get pl :overlap-face) face)))
  5532. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5533. ;; There is a gap, lets see if we need to report it
  5534. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5535. (setq issue (format "Clocking gap: %d minutes"
  5536. (/ (- ts tlend) 60))
  5537. face (or (plist-get pl :gap-face) face))))
  5538. (t nil)))
  5539. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5540. (when issue
  5541. ;; OK, there was some issue, add an overlay to show the issue
  5542. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5543. (overlay-put ov 'before-string
  5544. (concat
  5545. (org-add-props
  5546. (format "%-43s" (concat " " issue))
  5547. nil
  5548. 'face face)
  5549. "\n"))
  5550. (overlay-put ov 'evaporate t)))))
  5551. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5552. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5553. (catch 'exit
  5554. (unless ok-list
  5555. ;; there are no OK times for gaps...
  5556. (throw 'exit nil))
  5557. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5558. ;; This is more than 24 hours, so it is OK.
  5559. ;; because we have at least one OK time, that must be in the
  5560. ;; 24 hour interval.
  5561. (throw 'exit t))
  5562. ;; We have a shorter gap.
  5563. ;; Now we have to get the minute of the day when these times are
  5564. (let* ((t1dec (org-decode-time t1))
  5565. (t2dec (org-decode-time t2))
  5566. ;; compute the minute on the day
  5567. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5568. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5569. (when (< min2 min1)
  5570. ;; if min2 is smaller than min1, this means it is on the next day.
  5571. ;; Wrap it to after midnight.
  5572. (setq min2 (+ min2 1440)))
  5573. ;; Now check if any of the OK times is in the gap
  5574. (mapc (lambda (x)
  5575. ;; Wrap the time to after midnight if necessary
  5576. (when (< x min1) (setq x (+ x 1440)))
  5577. ;; Check if in interval
  5578. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5579. ok-list)
  5580. ;; Nope, this gap is not OK
  5581. nil)))
  5582. (defun org-agenda-get-deadlines (&optional with-hour)
  5583. "Return the deadline information for agenda display.
  5584. When WITH-HOUR is non-nil, only return deadlines with an hour
  5585. specification like [h]h:mm."
  5586. (let* ((props (list 'mouse-face 'highlight
  5587. 'org-not-done-regexp org-not-done-regexp
  5588. 'org-todo-regexp org-todo-regexp
  5589. 'org-complex-heading-regexp org-complex-heading-regexp
  5590. 'help-echo
  5591. (format "mouse-2 or RET jump to org file %s"
  5592. (abbreviate-file-name buffer-file-name))))
  5593. (regexp (if with-hour
  5594. org-deadline-time-hour-regexp
  5595. org-deadline-time-regexp))
  5596. (today (org-today))
  5597. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5598. (current (calendar-absolute-from-gregorian date))
  5599. deadline-items)
  5600. (goto-char (point-min))
  5601. (while (re-search-forward regexp nil t)
  5602. (catch :skip
  5603. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5604. (org-agenda-skip)
  5605. (let* ((s (match-string 1))
  5606. (pos (1- (match-beginning 1)))
  5607. (todo-state (save-match-data (org-get-todo-state)))
  5608. (done? (member todo-state org-done-keywords))
  5609. (sexp? (string-prefix-p "%%" s))
  5610. ;; DEADLINE is the deadline date for the entry. It is
  5611. ;; either the base date or the last repeat, according
  5612. ;; to `org-agenda-prefer-last-repeat'.
  5613. (deadline
  5614. (cond
  5615. (sexp? (org-agenda--timestamp-to-absolute s current))
  5616. ((or (eq org-agenda-prefer-last-repeat t)
  5617. (member todo-state org-agenda-prefer-last-repeat))
  5618. (org-agenda--timestamp-to-absolute
  5619. s today 'past (current-buffer) pos))
  5620. (t (org-agenda--timestamp-to-absolute s))))
  5621. ;; REPEAT is the future repeat closest from CURRENT,
  5622. ;; according to `org-agenda-show-future-repeats'. If
  5623. ;; the latter is nil, or if the time stamp has no
  5624. ;; repeat part, default to DEADLINE.
  5625. (repeat
  5626. (cond
  5627. (sexp? deadline)
  5628. ((<= current today) deadline)
  5629. ((not org-agenda-show-future-repeats) deadline)
  5630. (t
  5631. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5632. (1+ today)
  5633. current)))
  5634. (org-agenda--timestamp-to-absolute
  5635. s base 'future (current-buffer) pos)))))
  5636. (diff (- deadline current))
  5637. (suppress-prewarning
  5638. (let ((scheduled
  5639. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5640. (org-entry-get nil "SCHEDULED"))))
  5641. (cond
  5642. ((not scheduled) nil)
  5643. ;; The current item has a scheduled date, so
  5644. ;; evaluate its prewarning lead time.
  5645. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5646. ;; Use global prewarning-restart lead time.
  5647. org-agenda-skip-deadline-prewarning-if-scheduled)
  5648. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5649. 'pre-scheduled)
  5650. ;; Set pre-warning to no earlier than SCHEDULED.
  5651. (min (- deadline
  5652. (org-agenda--timestamp-to-absolute scheduled))
  5653. org-deadline-warning-days))
  5654. ;; Set pre-warning to deadline.
  5655. (t 0))))
  5656. (wdays (or suppress-prewarning (org-get-wdays s))))
  5657. (cond
  5658. ;; Only display deadlines at their base date, at future
  5659. ;; repeat occurrences or in today agenda.
  5660. ((= current deadline) nil)
  5661. ((= current repeat) nil)
  5662. ((not today?) (throw :skip nil))
  5663. ;; Upcoming deadline: display within warning period WDAYS.
  5664. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5665. ;; Overdue deadline: warn about it for
  5666. ;; `org-deadline-past-days' duration.
  5667. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5668. ;; Possibly skip done tasks.
  5669. (when (and done?
  5670. (or org-agenda-skip-deadline-if-done
  5671. (/= deadline current)))
  5672. (throw :skip nil))
  5673. (save-excursion
  5674. (re-search-backward "^\\*+[ \t]+" nil t)
  5675. (goto-char (match-end 0))
  5676. (let* ((category (org-get-category))
  5677. (level (make-string (org-reduced-level (org-outline-level))
  5678. ?\s))
  5679. (head (buffer-substring (point) (line-end-position)))
  5680. (inherited-tags
  5681. (or (eq org-agenda-show-inherited-tags 'always)
  5682. (and (listp org-agenda-show-inherited-tags)
  5683. (memq 'agenda org-agenda-show-inherited-tags))
  5684. (and (eq org-agenda-show-inherited-tags t)
  5685. (or (eq org-agenda-use-tag-inheritance t)
  5686. (memq 'agenda
  5687. org-agenda-use-tag-inheritance)))))
  5688. (tags (org-get-tags nil (not inherited-tags)))
  5689. (time
  5690. (cond
  5691. ;; No time of day designation if it is only
  5692. ;; a reminder.
  5693. ((and (/= current deadline) (/= current repeat)) nil)
  5694. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5695. (concat (substring s (match-beginning 1)) " "))
  5696. (t 'time)))
  5697. (item
  5698. (org-agenda-format-item
  5699. ;; Insert appropriate suffixes before deadlines.
  5700. ;; Those only apply to today agenda.
  5701. (pcase-let ((`(,now ,future ,past)
  5702. org-agenda-deadline-leaders))
  5703. (cond
  5704. ((and today? (< deadline today)) (format past (- diff)))
  5705. ((and today? (> deadline today)) (format future diff))
  5706. (t now)))
  5707. head level category tags time))
  5708. (face (org-agenda-deadline-face
  5709. (- 1 (/ (float diff) (max wdays 1)))))
  5710. (upcoming? (and today? (> deadline today)))
  5711. (warntime (get-text-property (point) 'org-appt-warntime)))
  5712. (org-add-props item props
  5713. 'org-marker (org-agenda-new-marker pos)
  5714. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5715. 'warntime warntime
  5716. 'level level
  5717. 'ts-date deadline
  5718. 'priority
  5719. ;; Adjust priority to today reminders about deadlines.
  5720. ;; Overdue deadlines get the highest priority
  5721. ;; increase, then imminent deadlines and eventually
  5722. ;; more distant deadlines.
  5723. (let ((adjust (if today? (- diff) 0)))
  5724. (+ adjust (org-get-priority item)))
  5725. 'todo-state todo-state
  5726. 'type (if upcoming? "upcoming-deadline" "deadline")
  5727. 'date (if upcoming? date deadline)
  5728. 'face (if done? 'org-agenda-done face)
  5729. 'undone-face face
  5730. 'done-face 'org-agenda-done)
  5731. (push item deadline-items))))))
  5732. (nreverse deadline-items)))
  5733. (defun org-agenda-deadline-face (fraction)
  5734. "Return the face to displaying a deadline item.
  5735. FRACTION is what fraction of the head-warning time has passed."
  5736. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5737. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5738. "Return the scheduled information for agenda display.
  5739. Optional argument DEADLINES is a list of deadline items to be
  5740. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5741. scheduled items with an hour specification like [h]h:mm."
  5742. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5743. 'org-todo-regexp org-todo-regexp
  5744. 'org-complex-heading-regexp org-complex-heading-regexp
  5745. 'done-face 'org-agenda-done
  5746. 'mouse-face 'highlight
  5747. 'help-echo
  5748. (format "mouse-2 or RET jump to Org file %s"
  5749. (abbreviate-file-name buffer-file-name))))
  5750. (regexp (if with-hour
  5751. org-scheduled-time-hour-regexp
  5752. org-scheduled-time-regexp))
  5753. (today (org-today))
  5754. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5755. (current (calendar-absolute-from-gregorian date))
  5756. (deadline-pos
  5757. (mapcar (lambda (d)
  5758. (let ((m (get-text-property 0 'org-hd-marker d)))
  5759. (and m (marker-position m))))
  5760. deadlines))
  5761. scheduled-items)
  5762. (goto-char (point-min))
  5763. (while (re-search-forward regexp nil t)
  5764. (catch :skip
  5765. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5766. (org-agenda-skip)
  5767. (let* ((s (match-string 1))
  5768. (pos (1- (match-beginning 1)))
  5769. (todo-state (save-match-data (org-get-todo-state)))
  5770. (donep (member todo-state org-done-keywords))
  5771. (sexp? (string-prefix-p "%%" s))
  5772. ;; SCHEDULE is the scheduled date for the entry. It is
  5773. ;; either the bare date or the last repeat, according
  5774. ;; to `org-agenda-prefer-last-repeat'.
  5775. (schedule
  5776. (cond
  5777. (sexp? (org-agenda--timestamp-to-absolute s current))
  5778. ((or (eq org-agenda-prefer-last-repeat t)
  5779. (member todo-state org-agenda-prefer-last-repeat))
  5780. (org-agenda--timestamp-to-absolute
  5781. s today 'past (current-buffer) pos))
  5782. (t (org-agenda--timestamp-to-absolute s))))
  5783. ;; REPEAT is the future repeat closest from CURRENT,
  5784. ;; according to `org-agenda-show-future-repeats'. If
  5785. ;; the latter is nil, or if the time stamp has no
  5786. ;; repeat part, default to SCHEDULE.
  5787. (repeat
  5788. (cond
  5789. (sexp? schedule)
  5790. ((<= current today) schedule)
  5791. ((not org-agenda-show-future-repeats) schedule)
  5792. (t
  5793. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5794. (1+ today)
  5795. current)))
  5796. (org-agenda--timestamp-to-absolute
  5797. s base 'future (current-buffer) pos)))))
  5798. (diff (- current schedule))
  5799. (warntime (get-text-property (point) 'org-appt-warntime))
  5800. (pastschedp (< schedule today))
  5801. (futureschedp (> schedule today))
  5802. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5803. (suppress-delay
  5804. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5805. (org-entry-get nil "DEADLINE"))))
  5806. (cond
  5807. ((not deadline) nil)
  5808. ;; The current item has a deadline date, so
  5809. ;; evaluate its delay time.
  5810. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5811. ;; Use global delay time.
  5812. (- org-agenda-skip-scheduled-delay-if-deadline))
  5813. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5814. 'post-deadline)
  5815. ;; Set delay to no later than DEADLINE.
  5816. (min (- schedule
  5817. (org-agenda--timestamp-to-absolute deadline))
  5818. org-scheduled-delay-days))
  5819. (t 0))))
  5820. (diff-r (abs (- repeat current)))
  5821. (ddays-once (or (and (string-match "--\\([0-9]+\\)[hdwmy]" s)
  5822. (string-to-number (match-string 1 s)))
  5823. 0))
  5824. (ddays
  5825. (cond
  5826. ;; Nullify delay when a repeater triggered already
  5827. ;; and the delay is of the form --Xd.
  5828. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5829. (> schedule (org-agenda--timestamp-to-absolute s)))
  5830. 0)
  5831. (suppress-delay
  5832. (let ((org-scheduled-delay-days suppress-delay))
  5833. (org-get-wdays s t t)))
  5834. (t (org-get-wdays s t)))))
  5835. ;; Display scheduled items at base date (SCHEDULE), today if
  5836. ;; scheduled before the current date, and at any repeat past
  5837. ;; today. However, skip delayed items and items that have
  5838. ;; been displayed for more than `org-scheduled-past-days'.
  5839. (unless (and todayp
  5840. habitp
  5841. (bound-and-true-p org-habit-show-all-today))
  5842. (when (or
  5843. ;; no one-time delay, not repeated delay
  5844. (and (not ddays-once) (not (= ddays diff-r)))
  5845. ;; one-time delay, but not for today
  5846. (and ddays-once
  5847. (not (= diff diff-r))
  5848. (= ddays-once diff-r))
  5849. ;; normal delay, but already in the past
  5850. (and (> ddays 0) (< diff ddays))
  5851. ;; a habit, but past `org-habit-scheduled-past-days'
  5852. (> diff (or (and habitp org-habit-scheduled-past-days)
  5853. org-scheduled-past-days))
  5854. ;; schedule in the future
  5855. (> schedule current)
  5856. ;; no delay, not scheduled today, no deadline for today
  5857. (and (= ddays 0)
  5858. (/= current schedule)
  5859. (/= current today)
  5860. (/= current repeat)))
  5861. (throw :skip nil)))
  5862. ;; Possibly skip done tasks.
  5863. (when (and donep
  5864. (or org-agenda-skip-scheduled-if-done
  5865. (/= schedule current)))
  5866. (throw :skip nil))
  5867. ;; Skip entry if it already appears as a deadline, per
  5868. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5869. ;; doesn't apply to habits.
  5870. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5871. ((guard
  5872. (or (not (memq (line-beginning-position 0) deadline-pos))
  5873. habitp))
  5874. nil)
  5875. (`repeated-after-deadline
  5876. (let ((deadline (time-to-days
  5877. (org-get-deadline-time (point)))))
  5878. (and (<= schedule deadline) (> current deadline))))
  5879. (`not-today pastschedp)
  5880. (`t t)
  5881. (_ nil))
  5882. (throw :skip nil))
  5883. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5884. ;; only show them for today. Also skip done habits.
  5885. (when (and habitp
  5886. (or donep
  5887. (not (bound-and-true-p org-habit-show-habits))
  5888. (and (not todayp)
  5889. (bound-and-true-p
  5890. org-habit-show-habits-only-for-today))))
  5891. (throw :skip nil))
  5892. (save-excursion
  5893. (re-search-backward "^\\*+[ \t]+" nil t)
  5894. (goto-char (match-end 0))
  5895. (let* ((category (org-get-category))
  5896. (inherited-tags
  5897. (or (eq org-agenda-show-inherited-tags 'always)
  5898. (and (listp org-agenda-show-inherited-tags)
  5899. (memq 'agenda org-agenda-show-inherited-tags))
  5900. (and (eq org-agenda-show-inherited-tags t)
  5901. (or (eq org-agenda-use-tag-inheritance t)
  5902. (memq 'agenda
  5903. org-agenda-use-tag-inheritance)))))
  5904. (tags (org-get-tags nil (not inherited-tags)))
  5905. (level (make-string (org-reduced-level (org-outline-level))
  5906. ?\s))
  5907. (head (buffer-substring (point) (line-end-position)))
  5908. (time
  5909. (cond
  5910. ;; No time of day designation if it is only a
  5911. ;; reminder, except for habits, which always show
  5912. ;; the time of day. Habits are an exception
  5913. ;; because if there is a time of day, that is
  5914. ;; interpreted to mean they should usually happen
  5915. ;; then, even if doing the habit was missed.
  5916. ((and
  5917. (not habitp)
  5918. (/= current schedule)
  5919. (/= current repeat))
  5920. nil)
  5921. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5922. (concat (substring s (match-beginning 1)) " "))
  5923. (t 'time)))
  5924. (item
  5925. (org-agenda-format-item
  5926. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5927. ;; Show a reminder of a past scheduled today.
  5928. (if (and todayp pastschedp)
  5929. (format past diff)
  5930. first))
  5931. head level category tags time nil habitp))
  5932. (face (cond ((and (not habitp) pastschedp)
  5933. 'org-scheduled-previously)
  5934. ((and habitp futureschedp)
  5935. 'org-agenda-done)
  5936. (todayp 'org-scheduled-today)
  5937. (t 'org-scheduled)))
  5938. (habitp (and habitp (org-habit-parse-todo))))
  5939. (org-add-props item props
  5940. 'undone-face face
  5941. 'face (if donep 'org-agenda-done face)
  5942. 'org-marker (org-agenda-new-marker pos)
  5943. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5944. 'type (if pastschedp "past-scheduled" "scheduled")
  5945. 'date (if pastschedp schedule date)
  5946. 'ts-date schedule
  5947. 'warntime warntime
  5948. 'level level
  5949. 'priority (if habitp (org-habit-get-priority habitp)
  5950. (+ 99 diff (org-get-priority item)))
  5951. 'org-habit-p habitp
  5952. 'todo-state todo-state)
  5953. (push item scheduled-items))))))
  5954. (nreverse scheduled-items)))
  5955. (defun org-agenda-get-blocks ()
  5956. "Return the date-range information for agenda display."
  5957. (let* ((props (list 'face nil
  5958. 'org-not-done-regexp org-not-done-regexp
  5959. 'org-todo-regexp org-todo-regexp
  5960. 'org-complex-heading-regexp org-complex-heading-regexp
  5961. 'mouse-face 'highlight
  5962. 'help-echo
  5963. (format "mouse-2 or RET jump to org file %s"
  5964. (abbreviate-file-name buffer-file-name))))
  5965. (regexp org-tr-regexp)
  5966. (d0 (calendar-absolute-from-gregorian date))
  5967. marker hdmarker ee txt d1 d2 s1 s2 category
  5968. level todo-state tags pos head donep inherited-tags)
  5969. (goto-char (point-min))
  5970. (while (re-search-forward regexp nil t)
  5971. (catch :skip
  5972. (org-agenda-skip)
  5973. (setq pos (point))
  5974. (let ((start-time (match-string 1))
  5975. (end-time (match-string 2)))
  5976. (setq s1 (match-string 1)
  5977. s2 (match-string 2)
  5978. d1 (time-to-days
  5979. (condition-case err
  5980. (org-time-string-to-time s1)
  5981. (error
  5982. (error
  5983. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5984. s1
  5985. pos
  5986. (current-buffer)
  5987. (error-message-string err)))))
  5988. d2 (time-to-days
  5989. (condition-case err
  5990. (org-time-string-to-time s2)
  5991. (error
  5992. (error
  5993. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5994. s2
  5995. pos
  5996. (current-buffer)
  5997. (error-message-string err))))))
  5998. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5999. ;; Only allow days between the limits, because the normal
  6000. ;; date stamps will catch the limits.
  6001. (save-excursion
  6002. (setq todo-state (org-get-todo-state))
  6003. (setq donep (member todo-state org-done-keywords))
  6004. (when (and donep org-agenda-skip-timestamp-if-done)
  6005. (throw :skip t))
  6006. (setq marker (org-agenda-new-marker (point))
  6007. category (org-get-category))
  6008. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6009. (throw :skip nil)
  6010. (goto-char (match-beginning 0))
  6011. (setq hdmarker (org-agenda-new-marker (point))
  6012. inherited-tags
  6013. (or (eq org-agenda-show-inherited-tags 'always)
  6014. (and (listp org-agenda-show-inherited-tags)
  6015. (memq 'agenda org-agenda-show-inherited-tags))
  6016. (and (eq org-agenda-show-inherited-tags t)
  6017. (or (eq org-agenda-use-tag-inheritance t)
  6018. (memq 'agenda org-agenda-use-tag-inheritance))))
  6019. tags (org-get-tags nil (not inherited-tags)))
  6020. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6021. (looking-at "\\*+[ \t]+\\(.*\\)")
  6022. (setq head (match-string 1))
  6023. (let ((remove-re
  6024. (if org-agenda-remove-timeranges-from-blocks
  6025. (concat
  6026. "<" (regexp-quote s1) ".*?>"
  6027. "--"
  6028. "<" (regexp-quote s2) ".*?>")
  6029. nil)))
  6030. (setq txt (org-agenda-format-item
  6031. (format
  6032. (nth (if (= d1 d2) 0 1)
  6033. org-agenda-timerange-leaders)
  6034. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6035. head level category tags
  6036. (save-match-data
  6037. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6038. (match-string 6 s1)))
  6039. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6040. (match-string 6 s2))))
  6041. (cond ((string= hhmm1 hhmm2)
  6042. (concat "<" start-time ">--<" end-time ">"))
  6043. ((and (= d1 d0) (= d2 d0))
  6044. (concat "<" start-time ">--<" end-time ">"))
  6045. ((= d1 d0)
  6046. (concat "<" start-time ">"))
  6047. ((= d2 d0)
  6048. (concat "<" end-time ">")))))
  6049. remove-re))))
  6050. (org-add-props txt props
  6051. 'org-marker marker 'org-hd-marker hdmarker
  6052. 'type "block" 'date date
  6053. 'level level
  6054. 'todo-state todo-state
  6055. 'priority (org-get-priority txt))
  6056. (push txt ee))))
  6057. (goto-char pos)))
  6058. ;; Sort the entries by expiration date.
  6059. (nreverse ee)))
  6060. ;;; Agenda presentation and sorting
  6061. (defvar org-prefix-has-time nil
  6062. "A flag, set by `org-compile-prefix-format'.
  6063. The flag is set if the currently compiled format contains a `%t'.")
  6064. (defvar org-prefix-has-tag nil
  6065. "A flag, set by `org-compile-prefix-format'.
  6066. The flag is set if the currently compiled format contains a `%T'.")
  6067. (defvar org-prefix-has-effort nil
  6068. "A flag, set by `org-compile-prefix-format'.
  6069. The flag is set if the currently compiled format contains a `%e'.")
  6070. (defvar org-prefix-has-breadcrumbs nil
  6071. "A flag, set by `org-compile-prefix-format'.
  6072. The flag is set if the currently compiled format contains a `%b'.")
  6073. (defvar org-prefix-category-length nil
  6074. "Used by `org-compile-prefix-format' to remember the category field width.")
  6075. (defvar org-prefix-category-max-length nil
  6076. "Used by `org-compile-prefix-format' to remember the category field width.")
  6077. (defun org-agenda-get-category-icon (category)
  6078. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6079. (cl-dolist (entry org-agenda-category-icon-alist)
  6080. (when (string-match-p (car entry) category)
  6081. (if (listp (cadr entry))
  6082. (cl-return (cadr entry))
  6083. (cl-return (apply #'create-image (cdr entry)))))))
  6084. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6085. remove-re habitp)
  6086. "Format TXT to be inserted into the agenda buffer.
  6087. In particular, add the prefix and corresponding text properties.
  6088. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6089. LEVEL may be a string to replace the `%l' specifier.
  6090. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6091. category taken from local variable or file name. It will replace the `%c'
  6092. specifier in the format.
  6093. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6094. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6095. When DOTIME is a string, this string is searched for a time before TXT is.
  6096. TAGS can be the tags of the headline.
  6097. Any match of REMOVE-RE will be removed from TXT."
  6098. ;; We keep the org-prefix-* variable values along with a compiled
  6099. ;; formatter, so that multiple agendas existing at the same time do
  6100. ;; not step on each other toes.
  6101. ;;
  6102. ;; It was inconvenient to make these variables buffer local in
  6103. ;; Agenda buffers, because this function expects to be called with
  6104. ;; the buffer where item comes from being current, and not agenda
  6105. ;; buffer
  6106. (let* ((bindings (car org-prefix-format-compiled))
  6107. (formatter (cadr org-prefix-format-compiled)))
  6108. (cl-loop for (var value) in bindings
  6109. do (set var value))
  6110. (save-match-data
  6111. ;; Diary entries sometimes have extra whitespace at the beginning
  6112. (setq txt (org-trim txt))
  6113. ;; Fix the tags part in txt
  6114. (setq txt (org-agenda-fix-displayed-tags
  6115. txt tags
  6116. org-agenda-show-inherited-tags
  6117. org-agenda-hide-tags-regexp))
  6118. (let* ((category (or category
  6119. (if buffer-file-name
  6120. (file-name-sans-extension
  6121. (file-name-nondirectory buffer-file-name))
  6122. "")))
  6123. (category-icon (org-agenda-get-category-icon category))
  6124. (category-icon (if category-icon
  6125. (propertize " " 'display category-icon)
  6126. ""))
  6127. (effort (and (not (string= txt ""))
  6128. (get-text-property 1 'effort txt)))
  6129. ;; time, tag, effort are needed for the eval of the prefix format
  6130. (tag (if tags (nth (1- (length tags)) tags) ""))
  6131. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6132. time
  6133. (ts (when dotime (concat
  6134. (if (stringp dotime) dotime "")
  6135. (and org-agenda-search-headline-for-time txt))))
  6136. (time-of-day (and dotime (org-get-time-of-day ts)))
  6137. stamp plain s0 s1 s2 rtn srp l
  6138. duration breadcrumbs)
  6139. (and (derived-mode-p 'org-mode) buffer-file-name
  6140. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6141. (when (and dotime time-of-day)
  6142. ;; Extract starting and ending time and move them to prefix
  6143. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6144. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6145. (setq s0 (match-string 0 ts)
  6146. srp (and stamp (match-end 3))
  6147. s1 (match-string (if plain 1 2) ts)
  6148. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6149. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6150. ;; them, we might want to remove them there to avoid duplication.
  6151. ;; The user can turn this off with a variable.
  6152. (when (and org-prefix-has-time
  6153. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6154. (string-match (concat (regexp-quote s0) " *") txt)
  6155. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6156. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6157. (= (match-beginning 0) 0)
  6158. t))
  6159. (setq txt (replace-match "" nil nil txt))))
  6160. ;; Normalize the time(s) to 24 hour
  6161. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6162. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6163. ;; Try to set s2 if s1 and
  6164. ;; `org-agenda-default-appointment-duration' are set
  6165. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6166. (setq s2
  6167. (org-duration-from-minutes
  6168. (+ (org-duration-to-minutes s1 t)
  6169. org-agenda-default-appointment-duration)
  6170. nil t)))
  6171. ;; Compute the duration
  6172. (when s2
  6173. (setq duration (- (org-duration-to-minutes s2)
  6174. (org-duration-to-minutes s1)))))
  6175. (when (string-match org-tag-group-re txt)
  6176. ;; Tags are in the string
  6177. (if (or (eq org-agenda-remove-tags t)
  6178. (and org-agenda-remove-tags
  6179. org-prefix-has-tag))
  6180. (setq txt (replace-match "" t t txt))
  6181. (setq txt (replace-match
  6182. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6183. (match-string 1 txt))
  6184. t t txt))))
  6185. (when remove-re
  6186. (while (string-match remove-re txt)
  6187. (setq txt (replace-match "" t t txt))))
  6188. ;; Set org-heading property on `txt' to mark the start of the
  6189. ;; heading.
  6190. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6191. ;; Prepare the variables needed in the eval of the compiled format
  6192. (when org-prefix-has-breadcrumbs
  6193. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6194. (let ((s (org-format-outline-path (org-get-outline-path)
  6195. (1- (frame-width))
  6196. nil org-agenda-breadcrumbs-separator)))
  6197. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6198. (setq time (cond (s2 (concat
  6199. (org-agenda-time-of-day-to-ampm-maybe s1)
  6200. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6201. (when org-agenda-timegrid-use-ampm " ")))
  6202. (s1 (concat
  6203. (org-agenda-time-of-day-to-ampm-maybe s1)
  6204. (if org-agenda-timegrid-use-ampm
  6205. (concat time-grid-trailing-characters " ")
  6206. time-grid-trailing-characters)))
  6207. (t ""))
  6208. extra (or (and (not habitp) extra) "")
  6209. category (if (symbolp category) (symbol-name category) category)
  6210. level (or level ""))
  6211. (if (string-match org-link-bracket-re category)
  6212. (progn
  6213. (setq l (string-width (or (match-string 2) (match-string 1))))
  6214. (when (< l (or org-prefix-category-length 0))
  6215. (setq category (copy-sequence category))
  6216. (org-add-props category nil
  6217. 'extra-space (make-string
  6218. (- org-prefix-category-length l 1) ?\ ))))
  6219. (when (and org-prefix-category-max-length
  6220. (>= (length category) org-prefix-category-max-length))
  6221. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6222. ;; Evaluate the compiled format
  6223. (setq rtn (concat (eval formatter) txt))
  6224. ;; And finally add the text properties
  6225. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6226. (org-add-props rtn nil
  6227. 'org-category category
  6228. 'tags (mapcar 'org-downcase-keep-props tags)
  6229. 'org-priority-highest org-priority-highest
  6230. 'org-priority-lowest org-priority-lowest
  6231. 'time-of-day time-of-day
  6232. 'duration duration
  6233. 'breadcrumbs breadcrumbs
  6234. 'txt txt
  6235. 'level level
  6236. 'time time
  6237. 'extra extra
  6238. 'format org-prefix-format-compiled
  6239. 'dotime dotime)))))
  6240. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6241. "Remove tags string from TXT, and add a modified list of tags.
  6242. The modified list may contain inherited tags, and tags matched by
  6243. `org-agenda-hide-tags-regexp' will be removed."
  6244. (when (or add-inherited hide-re)
  6245. (when (string-match org-tag-group-re txt)
  6246. (setq txt (substring txt 0 (match-beginning 0))))
  6247. (setq tags
  6248. (delq nil
  6249. (mapcar (lambda (tg)
  6250. (if (or (and hide-re (string-match hide-re tg))
  6251. (and (not add-inherited)
  6252. (get-text-property 0 'inherited tg)))
  6253. nil
  6254. tg))
  6255. tags)))
  6256. (when tags
  6257. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6258. i)
  6259. (setq txt (concat txt " :"
  6260. (mapconcat
  6261. (lambda (x)
  6262. (setq i (get-text-property 0 'inherited x))
  6263. (if (and have-i (not i))
  6264. (progn
  6265. (setq have-i nil)
  6266. (concat ":" x))
  6267. x))
  6268. tags ":")
  6269. (if have-i "::" ":"))))))
  6270. txt)
  6271. (defun org-downcase-keep-props (s)
  6272. (let ((props (text-properties-at 0 s)))
  6273. (setq s (downcase s))
  6274. (add-text-properties 0 (length s) props s)
  6275. s))
  6276. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6277. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6278. "Add a time-grid for agenda items which need it.
  6279. LIST is the list of agenda items formatted by `org-agenda-list'.
  6280. NDAYS is the span of the current agenda view.
  6281. TODAYP is t when the current agenda view is on today."
  6282. (catch 'exit
  6283. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6284. ((and todayp (member 'today (car org-agenda-time-grid))))
  6285. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6286. ((member 'weekly (car org-agenda-time-grid)))
  6287. (t (throw 'exit list)))
  6288. (let* ((have (delq nil (mapcar
  6289. (lambda (x) (get-text-property 1 'time-of-day x))
  6290. list)))
  6291. (string (nth 3 org-agenda-time-grid))
  6292. (gridtimes (nth 1 org-agenda-time-grid))
  6293. (req (car org-agenda-time-grid))
  6294. (remove (member 'remove-match req))
  6295. new time)
  6296. (when (and (member 'require-timed req) (not have))
  6297. ;; don't show empty grid
  6298. (throw 'exit list))
  6299. (while (setq time (pop gridtimes))
  6300. (unless (and remove (member time have))
  6301. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6302. (push (org-agenda-format-item
  6303. nil string nil "" nil
  6304. (concat (substring time 0 -2) ":" (substring time -2)))
  6305. new)
  6306. (put-text-property
  6307. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6308. (when (and todayp org-agenda-show-current-time-in-grid)
  6309. (push (org-agenda-format-item
  6310. nil org-agenda-current-time-string nil "" nil
  6311. (format-time-string "%H:%M "))
  6312. new)
  6313. (put-text-property
  6314. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6315. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6316. (append new list)
  6317. (append list new)))))
  6318. (defun org-compile-prefix-format (key)
  6319. "Compile the prefix format into a Lisp form that can be evaluated.
  6320. The resulting form and associated variable bindings is returned
  6321. and stored in the variable `org-prefix-format-compiled'."
  6322. (setq org-prefix-has-time nil
  6323. org-prefix-has-tag nil
  6324. org-prefix-category-length nil
  6325. org-prefix-has-effort nil
  6326. org-prefix-has-breadcrumbs nil)
  6327. (let ((s (cond
  6328. ((stringp org-agenda-prefix-format)
  6329. org-agenda-prefix-format)
  6330. ((assq key org-agenda-prefix-format)
  6331. (cdr (assq key org-agenda-prefix-format)))
  6332. (t " %-12:c%?-12t% s")))
  6333. (start 0)
  6334. varform vars var e c f opt)
  6335. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6336. s start)
  6337. (setq var (or (cdr (assoc (match-string 4 s)
  6338. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6339. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6340. 'eval)
  6341. c (or (match-string 3 s) "")
  6342. opt (match-beginning 1)
  6343. start (1+ (match-beginning 0)))
  6344. (cl-case var
  6345. (time (setq org-prefix-has-time t))
  6346. (tag (setq org-prefix-has-tag t))
  6347. (effort (setq org-prefix-has-effort t))
  6348. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6349. (setq f (concat "%" (match-string 2 s) "s"))
  6350. (when (eq var 'category)
  6351. (setq org-prefix-category-length
  6352. (floor (abs (string-to-number (match-string 2 s)))))
  6353. (setq org-prefix-category-max-length
  6354. (let ((x (match-string 2 s)))
  6355. (save-match-data
  6356. (and (string-match "\\.[0-9]+" x)
  6357. (string-to-number (substring (match-string 0 x) 1)))))))
  6358. (if (eq var 'eval)
  6359. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6360. (if opt
  6361. (setq varform
  6362. `(if (or (equal "" ,var) (equal nil ,var))
  6363. ""
  6364. (format ,f (concat ,var ,c))))
  6365. (setq varform
  6366. `(format ,f (if (or (equal ,var "")
  6367. (equal ,var nil)) ""
  6368. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6369. (setq s (replace-match "%s" t nil s))
  6370. (push varform vars))
  6371. (setq vars (nreverse vars))
  6372. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6373. (setq org-prefix-format-compiled
  6374. (list
  6375. `((org-prefix-has-time ,org-prefix-has-time)
  6376. (org-prefix-has-tag ,org-prefix-has-tag)
  6377. (org-prefix-category-length ,org-prefix-category-length)
  6378. (org-prefix-has-effort ,org-prefix-has-effort)
  6379. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6380. `(format ,s ,@vars))))))
  6381. (defun org-set-sorting-strategy (key)
  6382. (if (symbolp (car org-agenda-sorting-strategy))
  6383. ;; the old format
  6384. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6385. (setq org-agenda-sorting-strategy-selected
  6386. (or (cdr (assq key org-agenda-sorting-strategy))
  6387. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6388. '(time-up category-keep priority-down)))))
  6389. (defun org-get-time-of-day (s &optional string mod24)
  6390. "Check string S for a time of day.
  6391. If found, return it as a military time number between 0 and 2400.
  6392. If not found, return nil.
  6393. The optional STRING argument forces conversion into a 5 character wide string
  6394. HH:MM."
  6395. (save-match-data
  6396. (when
  6397. (and
  6398. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6399. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6400. (not (eq (get-text-property 1 'face s) 'org-link)))
  6401. (let* ((h (string-to-number (match-string 1 s)))
  6402. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6403. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6404. (am-p (equal ampm "am"))
  6405. (h1 (cond ((not ampm) h)
  6406. ((= h 12) (if am-p 0 12))
  6407. (t (+ h (if am-p 0 12)))))
  6408. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6409. (mod h1 24) h1))
  6410. (t0 (+ (* 100 h2) m))
  6411. (t1 (concat (if (>= h1 24) "+" " ")
  6412. (if (and org-agenda-time-leading-zero
  6413. (< t0 1000)) "0" "")
  6414. (if (< t0 100) "0" "")
  6415. (if (< t0 10) "0" "")
  6416. (number-to-string t0))))
  6417. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6418. (defvar org-agenda-before-sorting-filter-function nil
  6419. "Function to be applied to agenda items prior to sorting.
  6420. Prior to sorting also means just before they are inserted into the agenda.
  6421. To aid sorting, you may revisit the original entries and add more text
  6422. properties which will later be used by the sorting functions.
  6423. The function should take a string argument, an agenda line.
  6424. It has access to the text properties in that line, which contain among
  6425. other things, the property `org-hd-marker' that points to the entry
  6426. where the line comes from. Note that not all lines going into the agenda
  6427. have this property, only most.
  6428. The function should return the modified string. It is probably best
  6429. to ONLY change text properties.
  6430. You can also use this function as a filter, by returning nil for lines
  6431. you don't want to have in the agenda at all. For this application, you
  6432. could bind the variable in the options section of a custom command.")
  6433. (defun org-agenda-finalize-entries (list &optional type)
  6434. "Sort, limit and concatenate the LIST of agenda items.
  6435. The optional argument TYPE tells the agenda type."
  6436. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6437. (cdr (assoc type org-agenda-max-effort)))
  6438. (t org-agenda-max-effort)))
  6439. (max-todo (cond ((listp org-agenda-max-todos)
  6440. (cdr (assoc type org-agenda-max-todos)))
  6441. (t org-agenda-max-todos)))
  6442. (max-tags (cond ((listp org-agenda-max-tags)
  6443. (cdr (assoc type org-agenda-max-tags)))
  6444. (t org-agenda-max-tags)))
  6445. (max-entries (cond ((listp org-agenda-max-entries)
  6446. (cdr (assoc type org-agenda-max-entries)))
  6447. (t org-agenda-max-entries))))
  6448. (when org-agenda-before-sorting-filter-function
  6449. (setq list
  6450. (delq nil
  6451. (mapcar
  6452. org-agenda-before-sorting-filter-function list))))
  6453. (setq list (mapcar 'org-agenda-highlight-todo list)
  6454. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6455. (when max-effort
  6456. (setq list (org-agenda-limit-entries
  6457. list 'effort-minutes max-effort
  6458. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6459. 32767 -1))))))
  6460. (when max-todo
  6461. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6462. (when max-tags
  6463. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6464. (when max-entries
  6465. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6466. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6467. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6468. (mapconcat 'identity list "\n")))
  6469. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6470. "Limit the number of agenda entries."
  6471. (let ((include (and limit (< limit 0))))
  6472. (if limit
  6473. (let ((fun (or fn (lambda (p) (when p 1))))
  6474. (lim 0))
  6475. (delq nil
  6476. (mapcar
  6477. (lambda (e)
  6478. (let ((pval (funcall
  6479. fun (get-text-property (1- (length e))
  6480. prop e))))
  6481. (when pval (setq lim (+ lim pval)))
  6482. (cond ((and pval (<= lim (abs limit))) e)
  6483. ((and include (not pval)) e))))
  6484. list)))
  6485. list)))
  6486. (defun org-agenda-limit-interactively (remove)
  6487. "In agenda, interactively limit entries to various maximums."
  6488. (interactive "P")
  6489. (if remove
  6490. (progn (setq org-agenda-max-entries nil
  6491. org-agenda-max-todos nil
  6492. org-agenda-max-tags nil
  6493. org-agenda-max-effort nil)
  6494. (org-agenda-redo))
  6495. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6496. (msg (cond ((= max ?E) "How many minutes? ")
  6497. ((= max ?e) "How many entries? ")
  6498. ((= max ?t) "How many TODO entries? ")
  6499. ((= max ?T) "How many tagged entries? ")
  6500. (t (user-error "Wrong input"))))
  6501. (num (string-to-number (read-from-minibuffer msg))))
  6502. (cond ((equal max ?e)
  6503. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6504. ((equal max ?t)
  6505. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6506. ((equal max ?T)
  6507. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6508. ((equal max ?E)
  6509. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6510. (org-agenda-fit-window-to-buffer))
  6511. (defun org-agenda-highlight-todo (x)
  6512. (let ((org-done-keywords org-done-keywords-for-agenda)
  6513. (case-fold-search nil)
  6514. re)
  6515. (if (eq x 'line)
  6516. (save-excursion
  6517. (beginning-of-line 1)
  6518. (setq re (org-get-at-bol 'org-todo-regexp))
  6519. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6520. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6521. (add-text-properties (match-beginning 0) (match-end 1)
  6522. (list 'face (org-get-todo-face 1)))
  6523. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6524. (delete-region (match-beginning 1) (1- (match-end 0)))
  6525. (goto-char (match-beginning 1))
  6526. (insert (format org-agenda-todo-keyword-format s)))))
  6527. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6528. (setq re (get-text-property 0 'org-todo-regexp x))
  6529. (when (and re
  6530. ;; Test `pl' because if there's no heading content,
  6531. ;; there's no point matching to highlight. Note
  6532. ;; that if we didn't test `pl' first, and there
  6533. ;; happened to be no keyword from `org-todo-regexp'
  6534. ;; on this heading line, then the `equal' comparison
  6535. ;; afterwards would spuriously succeed in the case
  6536. ;; where `pl' is nil -- causing an args-out-of-range
  6537. ;; error when we try to add text properties to text
  6538. ;; that isn't there.
  6539. pl
  6540. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6541. x pl) pl))
  6542. (add-text-properties
  6543. (or (match-end 1) (match-end 0)) (match-end 0)
  6544. (list 'face (org-get-todo-face (match-string 2 x)))
  6545. x)
  6546. (when (match-end 1)
  6547. (setq x
  6548. (concat
  6549. (substring x 0 (match-end 1))
  6550. (format org-agenda-todo-keyword-format
  6551. (match-string 2 x))
  6552. ;; Remove `display' property as the icon could leak
  6553. ;; on the white space.
  6554. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6555. 'display))
  6556. (substring x (match-end 3)))))))
  6557. x)))
  6558. (defsubst org-cmp-values (a b property)
  6559. "Compare the numeric value of text PROPERTY for string A and B."
  6560. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6561. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6562. (cond ((> pa pb) +1)
  6563. ((< pa pb) -1))))
  6564. (defsubst org-cmp-effort (a b)
  6565. "Compare the effort values of string A and B."
  6566. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6567. ;; `effort-minutes' property is not directly accessible from
  6568. ;; the strings, but is stored as a property in `txt'.
  6569. (ea (or (get-text-property
  6570. 0 'effort-minutes (get-text-property 0 'txt a))
  6571. def))
  6572. (eb (or (get-text-property
  6573. 0 'effort-minutes (get-text-property 0 'txt b))
  6574. def)))
  6575. (cond ((> ea eb) +1)
  6576. ((< ea eb) -1))))
  6577. (defsubst org-cmp-category (a b)
  6578. "Compare the string values of categories of strings A and B."
  6579. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6580. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6581. (cond ((string-lessp ca cb) -1)
  6582. ((string-lessp cb ca) +1))))
  6583. (defsubst org-cmp-todo-state (a b)
  6584. "Compare the todo states of strings A and B."
  6585. (let* ((ma (or (get-text-property 1 'org-marker a)
  6586. (get-text-property 1 'org-hd-marker a)))
  6587. (mb (or (get-text-property 1 'org-marker b)
  6588. (get-text-property 1 'org-hd-marker b)))
  6589. (fa (and ma (marker-buffer ma)))
  6590. (fb (and mb (marker-buffer mb)))
  6591. (todo-kwds
  6592. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6593. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6594. (ta (or (get-text-property 1 'todo-state a) ""))
  6595. (tb (or (get-text-property 1 'todo-state b) ""))
  6596. (la (- (length (member ta todo-kwds))))
  6597. (lb (- (length (member tb todo-kwds))))
  6598. (donepa (member ta org-done-keywords-for-agenda))
  6599. (donepb (member tb org-done-keywords-for-agenda)))
  6600. (cond ((and donepa (not donepb)) -1)
  6601. ((and (not donepa) donepb) +1)
  6602. ((< la lb) -1)
  6603. ((< lb la) +1))))
  6604. (defsubst org-cmp-alpha (a b)
  6605. "Compare the headlines, alphabetically."
  6606. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6607. (plb (text-property-any 0 (length b) 'org-heading t b))
  6608. (ta (and pla (substring a pla)))
  6609. (tb (and plb (substring b plb)))
  6610. (case-fold-search nil))
  6611. (when pla
  6612. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6613. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6614. (setq ta (substring ta (match-end 0))))
  6615. (setq ta (downcase ta)))
  6616. (when plb
  6617. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6618. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6619. (setq tb (substring tb (match-end 0))))
  6620. (setq tb (downcase tb)))
  6621. (cond ((not (or ta tb)) nil)
  6622. ((not ta) +1)
  6623. ((not tb) -1)
  6624. ((string-lessp ta tb) -1)
  6625. ((string-lessp tb ta) +1))))
  6626. (defsubst org-cmp-tag (a b)
  6627. "Compare the string values of the first tags of A and B."
  6628. (let ((ta (car (last (get-text-property 1 'tags a))))
  6629. (tb (car (last (get-text-property 1 'tags b)))))
  6630. (cond ((not (or ta tb)) nil)
  6631. ((not ta) +1)
  6632. ((not tb) -1)
  6633. ((string-lessp ta tb) -1)
  6634. ((string-lessp tb ta) +1))))
  6635. (defsubst org-cmp-time (a b)
  6636. "Compare the time-of-day values of strings A and B."
  6637. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6638. (ta (or (get-text-property 1 'time-of-day a) def))
  6639. (tb (or (get-text-property 1 'time-of-day b) def)))
  6640. (cond ((< ta tb) -1)
  6641. ((< tb ta) +1))))
  6642. (defsubst org-cmp-ts (a b type)
  6643. "Compare the timestamps values of entries A and B.
  6644. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6645. \"timestamp_ia\", compare within each of these type. When TYPE
  6646. is the empty string, compare all timestamps without respect of
  6647. their type."
  6648. (let* ((def (and (not org-sort-agenda-notime-is-late) -1))
  6649. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6650. (get-text-property 1 'ts-date a))
  6651. def))
  6652. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6653. (get-text-property 1 'ts-date b))
  6654. def)))
  6655. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6656. ((if tb (and ta (< tb ta)) ta) +1))))
  6657. (defsubst org-cmp-habit-p (a b)
  6658. "Compare the todo states of strings A and B."
  6659. (let ((ha (get-text-property 1 'org-habit-p a))
  6660. (hb (get-text-property 1 'org-habit-p b)))
  6661. (cond ((and ha (not hb)) -1)
  6662. ((and (not ha) hb) +1))))
  6663. (defun org-entries-lessp (a b)
  6664. "Predicate for sorting agenda entries."
  6665. ;; The following variables will be used when the form is evaluated.
  6666. ;; So even though the compiler complains, keep them.
  6667. (let* ((ss org-agenda-sorting-strategy-selected)
  6668. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6669. (org-cmp-ts a b "")))
  6670. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6671. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6672. (org-cmp-ts a b "scheduled")))
  6673. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6674. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6675. (org-cmp-ts a b "deadline")))
  6676. (deadline-down (if deadline-up (- deadline-up) nil))
  6677. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6678. (org-cmp-ts a b "timestamp_ia")))
  6679. (tsia-down (if tsia-up (- tsia-up) nil))
  6680. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6681. (org-cmp-ts a b "timestamp")))
  6682. (ts-down (if ts-up (- ts-up) nil))
  6683. (time-up (and (org-em 'time-up 'time-down ss)
  6684. (org-cmp-time a b)))
  6685. (time-down (if time-up (- time-up) nil))
  6686. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6687. (org-cmp-values a b 'org-stats)))
  6688. (stats-down (if stats-up (- stats-up) nil))
  6689. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6690. (org-cmp-values a b 'priority)))
  6691. (priority-down (if priority-up (- priority-up) nil))
  6692. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6693. (org-cmp-effort a b)))
  6694. (effort-down (if effort-up (- effort-up) nil))
  6695. (category-up (and (or (org-em 'category-up 'category-down ss)
  6696. (memq 'category-keep ss))
  6697. (org-cmp-category a b)))
  6698. (category-down (if category-up (- category-up) nil))
  6699. (category-keep (if category-up +1 nil))
  6700. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6701. (org-cmp-tag a b)))
  6702. (tag-down (if tag-up (- tag-up) nil))
  6703. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6704. (org-cmp-todo-state a b)))
  6705. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6706. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6707. (org-cmp-habit-p a b)))
  6708. (habit-down (if habit-up (- habit-up) nil))
  6709. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6710. (org-cmp-alpha a b)))
  6711. (alpha-down (if alpha-up (- alpha-up) nil))
  6712. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6713. user-defined-up user-defined-down)
  6714. (when (and need-user-cmp org-agenda-cmp-user-defined
  6715. (functionp org-agenda-cmp-user-defined))
  6716. (setq user-defined-up
  6717. (funcall org-agenda-cmp-user-defined a b)
  6718. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6719. (cdr (assoc
  6720. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6721. '((-1 . t) (1 . nil) (nil . nil))))))
  6722. ;;; Agenda restriction lock
  6723. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6724. "Overlay to mark the headline to which agenda commands are restricted.")
  6725. (overlay-put org-agenda-restriction-lock-overlay
  6726. 'face 'org-agenda-restriction-lock)
  6727. (overlay-put org-agenda-restriction-lock-overlay
  6728. 'help-echo "Agendas are currently limited to this subtree.")
  6729. (delete-overlay org-agenda-restriction-lock-overlay)
  6730. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6731. "Set the restriction lock to the agenda item at point from within the agenda.
  6732. When called with a `\\[universal-argument]' prefix, restrict to
  6733. the file which contains the item.
  6734. Argument ARG is the prefix argument."
  6735. (interactive "P")
  6736. (unless (derived-mode-p 'org-agenda-mode)
  6737. (user-error "Not in an Org agenda buffer"))
  6738. (let* ((marker (or (org-get-at-bol 'org-marker)
  6739. (org-agenda-error)))
  6740. (buffer (marker-buffer marker))
  6741. (pos (marker-position marker)))
  6742. (with-current-buffer buffer
  6743. (goto-char pos)
  6744. (org-agenda-set-restriction-lock arg))))
  6745. ;;;###autoload
  6746. (defun org-agenda-set-restriction-lock (&optional type)
  6747. "Set restriction lock for agenda to current subtree or file.
  6748. When in a restricted subtree, remove it.
  6749. The restriction will span over the entire file if TYPE is `file',
  6750. or if type is '(4), or if the cursor is before the first headline
  6751. in the file. Otherwise, only apply the restriction to the current
  6752. subtree."
  6753. (interactive "P")
  6754. (if (and org-agenda-overriding-restriction
  6755. (member org-agenda-restriction-lock-overlay
  6756. (overlays-at (point)))
  6757. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6758. (point)))
  6759. (org-agenda-remove-restriction-lock 'noupdate)
  6760. (org-agenda-remove-restriction-lock 'noupdate)
  6761. (and (equal type '(4)) (setq type 'file))
  6762. (setq type (cond
  6763. (type type)
  6764. ((org-at-heading-p) 'subtree)
  6765. ((condition-case nil (org-back-to-heading t) (error nil))
  6766. 'subtree)
  6767. (t 'file)))
  6768. (if (eq type 'subtree)
  6769. (progn
  6770. (setq org-agenda-restrict (current-buffer))
  6771. (setq org-agenda-overriding-restriction 'subtree)
  6772. (put 'org-agenda-files 'org-restrict
  6773. (list (buffer-file-name (buffer-base-buffer))))
  6774. (org-back-to-heading t)
  6775. (move-overlay org-agenda-restriction-lock-overlay
  6776. (point)
  6777. (if org-agenda-restriction-lock-highlight-subtree
  6778. (save-excursion (org-end-of-subtree t t) (point))
  6779. (point-at-eol)))
  6780. (move-marker org-agenda-restrict-begin (point))
  6781. (move-marker org-agenda-restrict-end
  6782. (save-excursion (org-end-of-subtree t t)))
  6783. (message "Locking agenda restriction to subtree"))
  6784. (put 'org-agenda-files 'org-restrict
  6785. (list (buffer-file-name (buffer-base-buffer))))
  6786. (setq org-agenda-restrict nil)
  6787. (setq org-agenda-overriding-restriction 'file)
  6788. (move-marker org-agenda-restrict-begin nil)
  6789. (move-marker org-agenda-restrict-end nil)
  6790. (message "Locking agenda restriction to file"))
  6791. (setq current-prefix-arg nil))
  6792. (org-agenda-maybe-redo))
  6793. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6794. "Remove agenda restriction lock."
  6795. (interactive "P")
  6796. (if (not org-agenda-restrict)
  6797. (message "No agenda restriction to remove.")
  6798. (delete-overlay org-agenda-restriction-lock-overlay)
  6799. (delete-overlay org-speedbar-restriction-lock-overlay)
  6800. (setq org-agenda-overriding-restriction nil)
  6801. (setq org-agenda-restrict nil)
  6802. (put 'org-agenda-files 'org-restrict nil)
  6803. (move-marker org-agenda-restrict-begin nil)
  6804. (move-marker org-agenda-restrict-end nil)
  6805. (setq current-prefix-arg nil)
  6806. (message "Agenda restriction lock removed")
  6807. (or noupdate (org-agenda-maybe-redo))))
  6808. (defun org-agenda-maybe-redo ()
  6809. "If there is any window showing the agenda view, update it."
  6810. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6811. org-agenda-buffer-name)
  6812. t))
  6813. (w0 (selected-window)))
  6814. (when w
  6815. (select-window w)
  6816. (org-agenda-redo)
  6817. (select-window w0)
  6818. (if org-agenda-overriding-restriction
  6819. (message "Agenda view shifted to new %s restriction"
  6820. org-agenda-overriding-restriction)
  6821. (message "Agenda restriction lock removed")))))
  6822. ;;; Agenda commands
  6823. (defun org-agenda-check-type (error &rest types)
  6824. "Check if agenda buffer or component is of allowed type.
  6825. If ERROR is non-nil, throw an error, otherwise just return nil.
  6826. Allowed types are `agenda' `todo' `tags' `search'."
  6827. (cond ((not org-agenda-type)
  6828. (error "No Org agenda currently displayed"))
  6829. ((memq org-agenda-type types) t)
  6830. (error
  6831. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6832. (t nil)))
  6833. (defun org-agenda-Quit ()
  6834. "Exit the agenda, killing the agenda buffer.
  6835. Like `org-agenda-quit', but kill the buffer even when
  6836. `org-agenda-sticky' is non-nil."
  6837. (interactive)
  6838. (org-agenda--quit))
  6839. (defun org-agenda-quit ()
  6840. "Exit the agenda.
  6841. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6842. instead of killing it.
  6843. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6844. the pre-agenda window configuration.
  6845. When column view is active, exit column view instead of the
  6846. agenda."
  6847. (interactive)
  6848. (org-agenda--quit org-agenda-sticky))
  6849. (defun org-agenda--quit (&optional bury)
  6850. (if org-agenda-columns-active
  6851. (org-columns-quit)
  6852. (let ((wconf org-agenda-pre-window-conf)
  6853. (buf (current-buffer))
  6854. (org-agenda-last-indirect-window
  6855. (and (eq org-indirect-buffer-display 'other-window)
  6856. org-agenda-last-indirect-buffer
  6857. (get-buffer-window org-agenda-last-indirect-buffer))))
  6858. (cond
  6859. ((eq org-agenda-window-setup 'other-frame)
  6860. (delete-frame))
  6861. ((and org-agenda-restore-windows-after-quit
  6862. wconf)
  6863. ;; Maybe restore the pre-agenda window configuration. Reset
  6864. ;; `org-agenda-pre-window-conf' before running
  6865. ;; `set-window-configuration', which loses the current buffer.
  6866. (setq org-agenda-pre-window-conf nil)
  6867. (set-window-configuration wconf))
  6868. (t
  6869. (when org-agenda-last-indirect-window
  6870. (delete-window org-agenda-last-indirect-window))
  6871. (and (not (eq org-agenda-window-setup 'current-window))
  6872. (not (one-window-p))
  6873. (delete-window))))
  6874. (if bury
  6875. ;; Set the agenda buffer as the current buffer instead of
  6876. ;; passing it as an argument to `bury-buffer' so that
  6877. ;; `bury-buffer' removes it from the window.
  6878. (with-current-buffer buf
  6879. (bury-buffer))
  6880. (kill-buffer buf)
  6881. (setq org-agenda-archives-mode nil
  6882. org-agenda-buffer nil)))))
  6883. (defun org-agenda-exit ()
  6884. "Exit the agenda, killing Org buffers loaded by the agenda.
  6885. Like `org-agenda-Quit', but kill any buffers that were created by
  6886. the agenda. Org buffers visited directly by the user will not be
  6887. touched. Also, exit the agenda even if it is in column view."
  6888. (interactive)
  6889. (when org-agenda-columns-active
  6890. (org-columns-quit))
  6891. (org-release-buffers org-agenda-new-buffers)
  6892. (setq org-agenda-new-buffers nil)
  6893. (org-agenda-Quit))
  6894. (defun org-agenda-kill-all-agenda-buffers ()
  6895. "Kill all buffers in `org-agenda-mode'.
  6896. This is used when toggling sticky agendas."
  6897. (interactive)
  6898. (let (blist)
  6899. (dolist (buf (buffer-list))
  6900. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6901. (push buf blist)))
  6902. (mapc 'kill-buffer blist)))
  6903. (defun org-agenda-execute (arg)
  6904. "Execute another agenda command, keeping same window.
  6905. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6906. in the agenda."
  6907. (interactive "P")
  6908. (let ((org-agenda-window-setup 'current-window))
  6909. (org-agenda arg)))
  6910. (defun org-agenda-redo (&optional all)
  6911. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6912. (interactive "P")
  6913. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6914. (cpa (unless (eq all t) current-prefix-arg))
  6915. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6916. (org-agenda-sticky nil)
  6917. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6918. org-agenda-buffer-name))
  6919. (org-agenda-keep-modes t)
  6920. (tag-filter org-agenda-tag-filter)
  6921. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6922. (top-hl-filter org-agenda-top-headline-filter)
  6923. (cat-filter org-agenda-category-filter)
  6924. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6925. (re-filter org-agenda-regexp-filter)
  6926. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6927. (effort-filter org-agenda-effort-filter)
  6928. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6929. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6930. (cols org-agenda-columns-active)
  6931. (line (org-current-line))
  6932. (window-line (- line (org-current-line (window-start))))
  6933. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6934. (redo-cmd (get-text-property p 'org-redo-cmd))
  6935. (last-args (get-text-property p 'org-last-args))
  6936. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6937. (org-agenda-overriding-cmd-arguments
  6938. (unless (eq all t)
  6939. (cond ((listp last-args)
  6940. (cons (or cpa (car last-args)) (cdr last-args)))
  6941. ((stringp last-args)
  6942. last-args))))
  6943. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6944. (put 'org-agenda-tag-filter :preset-filter nil)
  6945. (put 'org-agenda-category-filter :preset-filter nil)
  6946. (put 'org-agenda-regexp-filter :preset-filter nil)
  6947. (put 'org-agenda-effort-filter :preset-filter nil)
  6948. (and cols (org-columns-quit))
  6949. (message "Rebuilding agenda buffer...")
  6950. (if series-redo-cmd
  6951. (eval series-redo-cmd)
  6952. (org-let lprops redo-cmd))
  6953. (setq org-agenda-undo-list nil
  6954. org-agenda-pending-undo-list nil
  6955. org-agenda-tag-filter tag-filter
  6956. org-agenda-category-filter cat-filter
  6957. org-agenda-regexp-filter re-filter
  6958. org-agenda-effort-filter effort-filter
  6959. org-agenda-top-headline-filter top-hl-filter)
  6960. (message "Rebuilding agenda buffer...done")
  6961. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6962. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6963. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6964. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6965. (let ((tag (or tag-filter tag-preset))
  6966. (cat (or cat-filter cat-preset))
  6967. (effort (or effort-filter effort-preset))
  6968. (re (or re-filter re-preset)))
  6969. (when tag (org-agenda-filter-apply tag 'tag t))
  6970. (when cat (org-agenda-filter-apply cat 'category))
  6971. (when effort (org-agenda-filter-apply effort 'effort))
  6972. (when re (org-agenda-filter-apply re 'regexp)))
  6973. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6974. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6975. (org-goto-line line)
  6976. (recenter window-line)))
  6977. (defun org-agenda-redo-all (&optional exhaustive)
  6978. "Rebuild all agenda views in the current buffer.
  6979. With a prefix argument, do so in all agenda buffers."
  6980. (interactive "P")
  6981. (if exhaustive
  6982. (dolist (buffer (buffer-list))
  6983. (with-current-buffer buffer
  6984. (when (derived-mode-p 'org-agenda-mode)
  6985. (org-agenda-redo t))))
  6986. (org-agenda-redo t)))
  6987. (defvar org-global-tags-completion-table nil)
  6988. (defvar org-agenda-filter-form nil)
  6989. (defvar org-agenda-filtered-by-category nil)
  6990. (defsubst org-agenda-get-category ()
  6991. "Return the category of the agenda line."
  6992. (org-get-at-bol 'org-category))
  6993. (defun org-agenda-filter-by-category (strip)
  6994. "Filter lines in the agenda buffer that have a specific category.
  6995. The category is that of the current line.
  6996. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  6997. When there is already a category filter in place, this command removes the filter."
  6998. (interactive "P")
  6999. (if (and org-agenda-filtered-by-category
  7000. org-agenda-category-filter)
  7001. (org-agenda-filter-show-all-cat)
  7002. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7003. (cond
  7004. ((and cat strip)
  7005. (org-agenda-filter-apply
  7006. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7007. (cat
  7008. (org-agenda-filter-apply
  7009. (setq org-agenda-category-filter
  7010. (list (concat "+" cat))) 'category))
  7011. (t (error "No category at point"))))))
  7012. (defun org-find-top-headline (&optional pos)
  7013. "Find the topmost parent headline and return it.
  7014. POS when non-nil is the marker or buffer position to start the
  7015. search from."
  7016. (save-excursion
  7017. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7018. (when pos (goto-char pos))
  7019. ;; Skip up to the topmost parent.
  7020. (while (org-up-heading-safe))
  7021. (ignore-errors (nth 4 (org-heading-components))))))
  7022. (defvar org-agenda-filtered-by-top-headline nil)
  7023. (defun org-agenda-filter-by-top-headline (strip)
  7024. "Keep only those lines that are descendants from the same top headline.
  7025. The top headline is that of the current line. With prefix arg STRIP, hide
  7026. all lines of the category at point."
  7027. (interactive "P")
  7028. (if org-agenda-filtered-by-top-headline
  7029. (progn
  7030. (setq org-agenda-filtered-by-top-headline nil
  7031. org-agenda-top-headline-filter nil)
  7032. (org-agenda-filter-show-all-top-filter))
  7033. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7034. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7035. (error "No top-level headline at point")))))
  7036. (defvar org-agenda-regexp-filter nil)
  7037. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7038. "Filter agenda entries by a regular expressions.
  7039. You will be prompted for the regular expression, and the agenda
  7040. view will only show entries that are matched by that expression.
  7041. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7042. When there is already a regexp filter active, this command removed the
  7043. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7044. an already existing regexp filter."
  7045. (interactive "P")
  7046. (let* ((strip (equal strip-or-accumulate '(4)))
  7047. (accumulate (equal strip-or-accumulate '(16))))
  7048. (cond
  7049. ((and org-agenda-regexp-filter (not accumulate))
  7050. (org-agenda-filter-show-all-re)
  7051. (message "Regexp filter removed"))
  7052. (t (let ((flt (concat (if strip "-" "+")
  7053. (read-from-minibuffer
  7054. (if strip
  7055. "Hide entries matching regexp: "
  7056. "Narrow to entries matching regexp: ")))))
  7057. (push flt org-agenda-regexp-filter)
  7058. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7059. (defvar org-agenda-effort-filter nil)
  7060. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7061. "Filter agenda entries by effort.
  7062. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7063. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7064. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7065. This last option is in practice not very useful, but it is available for
  7066. consistency with the other filter commands."
  7067. (interactive "P")
  7068. (let* ((efforts (split-string
  7069. (or (cdr (assoc (concat org-effort-property "_ALL")
  7070. org-global-properties))
  7071. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7072. ;; XXX: the following handles only up to 10 different
  7073. ;; effort values.
  7074. (allowed-keys (if (null efforts) nil
  7075. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7076. (number-sequence 1 (length efforts)))))
  7077. (keep (equal strip-or-accumulate '(16)))
  7078. (negative (equal strip-or-accumulate '(4)))
  7079. (current org-agenda-effort-filter)
  7080. (op nil))
  7081. (while (not (memq op '(?< ?> ?= ?_)))
  7082. (setq op (read-char-exclusive
  7083. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7084. ;; Select appropriate duration. Ignore non-digit characters.
  7085. (if (eq op ?_)
  7086. (progn
  7087. (org-agenda-filter-show-all-effort)
  7088. (message "Effort filter removed"))
  7089. (let ((prompt
  7090. (apply #'format
  7091. (concat "Effort %c "
  7092. (mapconcat (lambda (s) (concat "[%d]" s))
  7093. efforts
  7094. " "))
  7095. op allowed-keys))
  7096. (eff -1))
  7097. (while (not (memq eff allowed-keys))
  7098. (message prompt)
  7099. (setq eff (- (read-char-exclusive) 48)))
  7100. (org-agenda-filter-show-all-effort)
  7101. (setq org-agenda-effort-filter
  7102. (append
  7103. (list (concat (if negative "-" "+")
  7104. (char-to-string op)
  7105. ;; Numbering is 1 2 3 ... 9 0, but we want
  7106. ;; 0 1 2 ... 8 9.
  7107. (nth (mod (1- eff) 10) efforts)))
  7108. (if keep current nil)))
  7109. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7110. (defun org-agenda-filter (&optional strip-or-accumulate)
  7111. "Prompt for a general filter string and apply it to the agenda.
  7112. The string may contain filter elements like
  7113. +category
  7114. +tag
  7115. +<effort > and = are also allowed as effort operators
  7116. +/regexp/
  7117. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7118. `+' is optional if it is not required to separate two string parts.
  7119. Multiple filter elements can be concatenated without spaces, for example
  7120. +work-John<0:10-/plot/
  7121. selects entries with category `work' and effort estimates below 10 minutes,
  7122. and deselects entries with tag `John' or matching the regexp `plot'.
  7123. During entry of the filter, completion for tags, categories and effort
  7124. values is offered. Since the syntax for categories and tags is identical
  7125. there should be no overlap between categories and tags. If there is, tags
  7126. get priority.
  7127. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7128. entire filter, which can be useful in connection with the prompt history.
  7129. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7130. existing ones. A shortcut for this is to add an additional `+' at the
  7131. beginning of the string, like `+-John'.
  7132. With a triple prefix argument, execute the computed filtering defined in
  7133. the variable `org-agenda-auto-exclude-function'."
  7134. (interactive "P")
  7135. (if (equal strip-or-accumulate '(64))
  7136. ;; Execute the auto-exclude action
  7137. (if (not org-agenda-auto-exclude-function)
  7138. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7139. (org-agenda-filter-show-all-tag)
  7140. (setq org-agenda-tag-filter nil)
  7141. (dolist (tag (org-agenda-get-represented-tags))
  7142. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7143. (when modifier
  7144. (push modifier org-agenda-tag-filter))))
  7145. (unless (null org-agenda-tag-filter)
  7146. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7147. ;; Prompt for a filter and act
  7148. (let* ((tag-list (org-agenda-get-represented-tags))
  7149. (category-list (org-agenda-get-represented-categories))
  7150. (negate (equal strip-or-accumulate '(4)))
  7151. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7152. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7153. (rpl-fn (lambda (c) (replace-regexp-in-string "^\+" "" (or (car c) ""))))
  7154. (ef (replace-regexp-in-string "^\+" "" (or (car org-agenda-effort-filter) "")))
  7155. (rf (replace-regexp-in-string "^\+" "" (or (car org-agenda-regexp-filter) "")))
  7156. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7157. (f-string (completing-read
  7158. (concat
  7159. (if negate "Negative filter" "Filter")
  7160. " [+cat-tag<0:10-/regexp/]: ")
  7161. 'org-agenda-filter-completion-function
  7162. nil nil ff))
  7163. (keep (or (if (string-match "^\\+[+-]" f-string)
  7164. (progn (setq f-string (substring f-string 1)) t))
  7165. (equal strip-or-accumulate '(16))))
  7166. (fc (if keep org-agenda-category-filter))
  7167. (ft (if keep org-agenda-tag-filter))
  7168. (fe (if keep org-agenda-effort-filter))
  7169. (fr (if keep org-agenda-regexp-filter))
  7170. pm s)
  7171. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7172. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7173. (when negate
  7174. (setq pm (if (equal pm "+") "-" "+")))
  7175. (cond
  7176. ((match-beginning 3)
  7177. ;; category or tag
  7178. (setq s (match-string 3 f-string))
  7179. (cond
  7180. ((member s tag-list)
  7181. (add-to-list 'ft (concat pm s) 'append 'equal))
  7182. ((member s category-list)
  7183. (add-to-list 'fc (concat pm s) 'append 'equal))
  7184. (t (message
  7185. "`%s%s' filter ignored because tag/category is not represented"
  7186. pm s))))
  7187. ((match-beginning 4)
  7188. ;; effort
  7189. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7190. ((match-beginning 5)
  7191. ;; regexp
  7192. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7193. (setq f-string (substring f-string (match-end 0))))
  7194. (org-agenda-filter-remove-all)
  7195. (and fc (org-agenda-filter-apply
  7196. (setq org-agenda-category-filter fc) 'category))
  7197. (and ft (org-agenda-filter-apply
  7198. (setq org-agenda-tag-filter ft) 'tag))
  7199. (and fe (org-agenda-filter-apply
  7200. (setq org-agenda-effort-filter fe) 'effort))
  7201. (and fr (org-agenda-filter-apply
  7202. (setq org-agenda-regexp-filter fr) 'regexp)))))
  7203. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7204. "Complete a complex filter string.
  7205. FLAG specifies the type of completion operation to perform. This
  7206. function is passed as a collection function to `completing-read',
  7207. which see."
  7208. (let ((completion-ignore-case t) ;tags are case-sensitive
  7209. (confirm (lambda (x) (stringp x)))
  7210. (prefix "")
  7211. (operator "")
  7212. table)
  7213. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7214. (setq prefix (match-string 1 string)
  7215. operator (match-string 2 string)
  7216. string (match-string 3 string)))
  7217. (cond
  7218. ((member operator '("+" "-" "" nil))
  7219. (setq table (append (org-agenda-get-represented-categories)
  7220. (org-agenda-get-represented-tags))))
  7221. ((member operator '("<" ">" "="))
  7222. (setq table (split-string
  7223. (or (cdr (assoc (concat org-effort-property "_ALL")
  7224. org-global-properties))
  7225. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7226. " +")))
  7227. (t (setq table nil)))
  7228. (pcase flag
  7229. (`t (all-completions string table confirm))
  7230. (`lambda (assoc string table)) ;exact match?
  7231. (`nil
  7232. (pcase (try-completion string table confirm)
  7233. ((and completion (pred stringp))
  7234. (concat prefix completion))
  7235. (completion completion)))
  7236. (_ nil))))
  7237. (defun org-agenda-filter-remove-all ()
  7238. "Remove all filters from the current agenda buffer."
  7239. (interactive)
  7240. (when org-agenda-tag-filter
  7241. (org-agenda-filter-show-all-tag))
  7242. (when org-agenda-category-filter
  7243. (org-agenda-filter-show-all-cat))
  7244. (when org-agenda-regexp-filter
  7245. (org-agenda-filter-show-all-re))
  7246. (when org-agenda-top-headline-filter
  7247. (org-agenda-filter-show-all-top-filter))
  7248. (when org-agenda-effort-filter
  7249. (org-agenda-filter-show-all-effort))
  7250. (org-agenda-finalize)
  7251. (when (called-interactively-p 'interactive)
  7252. (message "All agenda filters removed")))
  7253. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7254. "Keep only those lines in the agenda buffer that have a specific tag.
  7255. The tag is selected with its fast selection letter, as configured.
  7256. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7257. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7258. instead of replacing it.
  7259. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7260. i.e. don't
  7261. filter on all its group members.
  7262. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7263. should be used to exclude the search - the interactive user can
  7264. also press `-' or `+' to switch between filtering and excluding."
  7265. (interactive "P")
  7266. (let* ((alist org-tag-alist-for-agenda)
  7267. (seen-chars nil)
  7268. (tag-chars (mapconcat
  7269. (lambda (x) (if (and (not (symbolp (car x)))
  7270. (cdr x)
  7271. (not (member (cdr x) seen-chars)))
  7272. (progn
  7273. (push (cdr x) seen-chars)
  7274. (char-to-string (cdr x)))
  7275. ""))
  7276. org-tag-alist-for-agenda ""))
  7277. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7278. (string-to-list tag-chars)))
  7279. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7280. (accumulate (equal strip-or-accumulate '(16)))
  7281. (expand (not (equal strip-or-accumulate '(64))))
  7282. (inhibit-read-only t)
  7283. (current org-agenda-tag-filter)
  7284. a n tag)
  7285. (unless char
  7286. (while (not (memq char valid-char-list))
  7287. (org-unlogged-message
  7288. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7289. (if exclude "Exclude[+]" "Filter[-]")
  7290. (if expand "" " (no grouptag expand)")
  7291. tag-chars
  7292. (if org-agenda-auto-exclude-function "[RET] " ""))
  7293. (setq char (read-char-exclusive))
  7294. ;; Excluding or filtering down
  7295. (cond ((eq char ?-) (setq exclude t))
  7296. ((eq char ?+) (setq exclude nil)))))
  7297. (when (eq char ?\t)
  7298. (unless (local-variable-p 'org-global-tags-completion-table)
  7299. (setq-local org-global-tags-completion-table
  7300. (org-global-tags-completion-table)))
  7301. (let ((completion-ignore-case t))
  7302. (setq tag (completing-read
  7303. "Tag: " org-global-tags-completion-table nil t))))
  7304. (cond
  7305. ((eq char ?\r)
  7306. (org-agenda-filter-show-all-tag)
  7307. (when org-agenda-auto-exclude-function
  7308. (setq org-agenda-tag-filter nil)
  7309. (dolist (tag (org-agenda-get-represented-tags))
  7310. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7311. (when modifier
  7312. (push modifier org-agenda-tag-filter))))
  7313. (unless (null org-agenda-tag-filter)
  7314. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7315. ((eq char ?\\)
  7316. (org-agenda-filter-show-all-tag)
  7317. (when (get 'org-agenda-tag-filter :preset-filter)
  7318. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7319. ((eq char ?.)
  7320. (setq org-agenda-tag-filter
  7321. (mapcar (lambda(tag) (concat "+" tag))
  7322. (org-get-at-bol 'tags)))
  7323. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7324. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7325. ((or (eq char ?\s)
  7326. (setq a (rassoc char alist))
  7327. (and tag (setq a (cons tag nil))))
  7328. (org-agenda-filter-show-all-tag)
  7329. (setq tag (car a))
  7330. (setq org-agenda-tag-filter
  7331. (cons (concat (if exclude "-" "+") tag)
  7332. (if accumulate current nil)))
  7333. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7334. (t (error "Invalid tag selection character %c" char)))))
  7335. (defun org-agenda-get-represented-categories ()
  7336. "Return a list of all categories used in this agenda buffer."
  7337. (or org-agenda-represented-categories
  7338. (when (derived-mode-p 'org-agenda-mode)
  7339. (let ((pos (point-min)) categories)
  7340. (while (and (< pos (point-max))
  7341. (setq pos (next-single-property-change
  7342. pos 'org-category nil (point-max))))
  7343. (push (get-text-property pos 'org-category) categories))
  7344. (setq org-agenda-represented-categories
  7345. (nreverse (org-uniquify (delq nil categories))))))))
  7346. (defun org-agenda-get-represented-tags ()
  7347. "Return a list of all tags used in this agenda buffer.
  7348. These will be lower-case, for filtering."
  7349. (or org-agenda-represented-tags
  7350. (when (derived-mode-p 'org-agenda-mode)
  7351. (let ((pos (point-min)) tags-lists tt)
  7352. (while (and (< pos (point-max))
  7353. (setq pos (next-single-property-change
  7354. pos 'tags nil (point-max))))
  7355. (setq tt (get-text-property pos 'tags))
  7356. (if tt (push tt tags-lists)))
  7357. (setq org-agenda-represented-tags
  7358. (nreverse (org-uniquify
  7359. (delq nil (apply 'append tags-lists)))))))))
  7360. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7361. "Create the form that tests a line for agenda filter. Optional
  7362. argument EXPAND can be used for the TYPE tag and will expand the
  7363. tags in the FILTER if any of the tags in FILTER are grouptags."
  7364. (let (f f1)
  7365. (cond
  7366. ;; Tag filter
  7367. ((eq type 'tag)
  7368. (setq filter
  7369. (delete-dups
  7370. (append (get 'org-agenda-tag-filter :preset-filter)
  7371. filter)))
  7372. (dolist (x filter)
  7373. (let ((op (string-to-char x)))
  7374. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7375. (setq x (list x)))
  7376. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7377. (push f1 f))))
  7378. ;; Category filter
  7379. ((eq type 'category)
  7380. (setq filter
  7381. (delete-dups
  7382. (append (get 'org-agenda-category-filter :preset-filter)
  7383. filter)))
  7384. (dolist (x filter)
  7385. (if (equal "-" (substring x 0 1))
  7386. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7387. (setq f1 (list 'equal (substring x 1) 'cat)))
  7388. (push f1 f)))
  7389. ;; Regexp filter
  7390. ((eq type 'regexp)
  7391. (setq filter
  7392. (delete-dups
  7393. (append (get 'org-agenda-regexp-filter :preset-filter)
  7394. filter)))
  7395. (dolist (x filter)
  7396. (if (equal "-" (substring x 0 1))
  7397. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7398. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7399. (push f1 f)))
  7400. ;; Effort filter
  7401. ((eq type 'effort)
  7402. (setq filter
  7403. (delete-dups
  7404. (append (get 'org-agenda-effort-filter :preset-filter)
  7405. filter)))
  7406. (dolist (x filter)
  7407. (push (org-agenda-filter-effort-form x) f))))
  7408. (cons (if (eq type 'category) 'or 'and) (nreverse f))))
  7409. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7410. "Return a form associated to tag-expression TAGS.
  7411. Build a form testing a line for agenda filter for
  7412. tag-expressions. OP is an operator of type CHAR that allows the
  7413. function to set the right switches in the returned form."
  7414. (let (form)
  7415. ;; Any of the expressions can match if OP is +, all must match if
  7416. ;; the operator is -.
  7417. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7418. (let* ((tag (substring x 1))
  7419. (f (cond
  7420. ((string= "" tag) 'tags)
  7421. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7422. ;; TAG is a regexp.
  7423. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7424. (t (list 'member (downcase tag) 'tags)))))
  7425. (push (if (eq op ?-) (list 'not f) f) form)))))
  7426. (defun org-agenda-filter-effort-form (e)
  7427. "Return the form to compare the effort of the current line with what E says.
  7428. E looks like \"+<2:25\"."
  7429. (let (op)
  7430. (setq e (substring e 1))
  7431. (setq op (string-to-char e) e (substring e 1))
  7432. (setq op (cond ((equal op ?<) '<=)
  7433. ((equal op ?>) '>=)
  7434. ((equal op ??) op)
  7435. (t '=)))
  7436. (list 'org-agenda-compare-effort (list 'quote op)
  7437. (org-duration-to-minutes e))))
  7438. (defun org-agenda-compare-effort (op value)
  7439. "Compare the effort of the current line with VALUE, using OP.
  7440. If the line does not have an effort defined, return nil."
  7441. ;; `effort-minutes' property cannot be extracted directly from
  7442. ;; current line but is stored as a property in `txt'.
  7443. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7444. (funcall op
  7445. (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
  7446. value)))
  7447. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7448. "Expand group tags in FILTER for the agenda.
  7449. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7450. (if org-group-tags
  7451. (let ((case-fold-search t) rtn)
  7452. (mapc
  7453. (lambda (f)
  7454. (let (f0 dir)
  7455. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7456. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7457. (setq dir (if no-operator "" "+") f0 f))
  7458. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7459. (org-tags-expand f0 t t))
  7460. rtn))))
  7461. filter)
  7462. (reverse rtn))
  7463. filter))
  7464. (defun org-agenda-filter-apply (filter type &optional expand)
  7465. "Set FILTER as the new agenda filter and apply it. Optional
  7466. argument EXPAND can be used for the TYPE tag and will expand the
  7467. tags in the FILTER if any of the tags in FILTER are grouptags."
  7468. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7469. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7470. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7471. filter type expand))
  7472. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7473. ;; category is used as the filter:
  7474. (setq org-agenda-filtered-by-category
  7475. (and (eq type 'category)
  7476. (not (equal (substring (car filter) 0 1) "-"))))
  7477. (org-agenda-set-mode-name)
  7478. (save-excursion
  7479. (goto-char (point-min))
  7480. (while (not (eobp))
  7481. (when (or (org-get-at-bol 'org-hd-marker)
  7482. (org-get-at-bol 'org-marker))
  7483. (let ((tags (org-get-at-bol 'tags))
  7484. (cat (org-agenda-get-category))
  7485. (txt (or (org-get-at-bol 'txt) "")))
  7486. (unless (eval org-agenda-filter-form)
  7487. (org-agenda-filter-hide-line type))))
  7488. (beginning-of-line 2)))
  7489. (when (get-char-property (point) 'invisible)
  7490. (ignore-errors (org-agenda-previous-line))))
  7491. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7492. "Filter by top headline HL."
  7493. (org-agenda-set-mode-name)
  7494. (save-excursion
  7495. (goto-char (point-min))
  7496. (while (not (eobp))
  7497. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7498. (tophl (and pos (org-find-top-headline pos))))
  7499. (when (and tophl (funcall (if negative 'identity 'not)
  7500. (string= hl tophl)))
  7501. (org-agenda-filter-hide-line 'top-headline)))
  7502. (beginning-of-line 2)))
  7503. (when (get-char-property (point) 'invisible)
  7504. (org-agenda-previous-line))
  7505. (setq org-agenda-top-headline-filter hl
  7506. org-agenda-filtered-by-top-headline t))
  7507. (defun org-agenda-filter-hide-line (type)
  7508. "Hide lines with TYPE in the agenda buffer."
  7509. (let* (buffer-invisibility-spec
  7510. (b (max (point-min) (1- (point-at-bol))))
  7511. (e (point-at-eol)))
  7512. (let ((inhibit-read-only t))
  7513. (add-text-properties
  7514. b e `(invisible org-filtered org-filter-type ,type)))))
  7515. (defun org-agenda-remove-filter (type)
  7516. (interactive)
  7517. "Remove filter of type TYPE from the agenda buffer."
  7518. (save-excursion
  7519. (goto-char (point-min))
  7520. (let ((inhibit-read-only t) pos)
  7521. (while (setq pos (text-property-any (point) (point-max)
  7522. 'org-filter-type type))
  7523. (goto-char pos)
  7524. (remove-text-properties
  7525. (point) (next-single-property-change (point) 'org-filter-type)
  7526. `(invisible org-filtered org-filter-type ,type))))
  7527. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7528. (setq org-agenda-filter-form nil)
  7529. (org-agenda-set-mode-name)
  7530. (org-agenda-finalize)))
  7531. (defun org-agenda-filter-show-all-tag nil
  7532. (org-agenda-remove-filter 'tag))
  7533. (defun org-agenda-filter-show-all-re nil
  7534. (org-agenda-remove-filter 'regexp))
  7535. (defun org-agenda-filter-show-all-effort nil
  7536. (org-agenda-remove-filter 'effort))
  7537. (defun org-agenda-filter-show-all-cat nil
  7538. (org-agenda-remove-filter 'category))
  7539. (defun org-agenda-filter-show-all-top-filter nil
  7540. (org-agenda-remove-filter 'top-headline))
  7541. (defun org-agenda-manipulate-query-add ()
  7542. "Manipulate the query by adding a search term with positive selection.
  7543. Positive selection means the term must be matched for selection of an entry."
  7544. (interactive)
  7545. (org-agenda-manipulate-query ?\[))
  7546. (defun org-agenda-manipulate-query-subtract ()
  7547. "Manipulate the query by adding a search term with negative selection.
  7548. Negative selection means term must not be matched for selection of an entry."
  7549. (interactive)
  7550. (org-agenda-manipulate-query ?\]))
  7551. (defun org-agenda-manipulate-query-add-re ()
  7552. "Manipulate the query by adding a search regexp with positive selection.
  7553. Positive selection means the regexp must match for selection of an entry."
  7554. (interactive)
  7555. (org-agenda-manipulate-query ?\{))
  7556. (defun org-agenda-manipulate-query-subtract-re ()
  7557. "Manipulate the query by adding a search regexp with negative selection.
  7558. Negative selection means regexp must not match for selection of an entry."
  7559. (interactive)
  7560. (org-agenda-manipulate-query ?\}))
  7561. (defun org-agenda-manipulate-query (char)
  7562. (cond
  7563. ((eq org-agenda-type 'agenda)
  7564. (let ((org-agenda-include-inactive-timestamps t))
  7565. (org-agenda-redo))
  7566. (message "Display now includes inactive timestamps as well"))
  7567. ((eq org-agenda-type 'search)
  7568. (org-add-to-string
  7569. 'org-agenda-query-string
  7570. (if org-agenda-last-search-view-search-was-boolean
  7571. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7572. (?\{ . " +{}") (?\} . " -{}"))))
  7573. " "))
  7574. (setq org-agenda-redo-command
  7575. (list 'org-search-view
  7576. (car (get-text-property (min (1- (point-max)) (point))
  7577. 'org-last-args))
  7578. org-agenda-query-string
  7579. (+ (length org-agenda-query-string)
  7580. (if (member char '(?\{ ?\})) 0 1))))
  7581. (set-register org-agenda-query-register org-agenda-query-string)
  7582. (let ((org-agenda-overriding-arguments
  7583. (cdr org-agenda-redo-command)))
  7584. (org-agenda-redo)))
  7585. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7586. org-agenda-type))))
  7587. (defun org-add-to-string (var string)
  7588. (set var (concat (symbol-value var) string)))
  7589. (defun org-agenda-goto-date (span)
  7590. "Jump to DATE in agenda."
  7591. (interactive "P")
  7592. (let* ((org-read-date-prefer-future
  7593. (eval org-agenda-jump-prefer-future))
  7594. (date (org-read-date))
  7595. (day (time-to-days (org-time-string-to-time date)))
  7596. (org-agenda-sticky-orig org-agenda-sticky)
  7597. (org-agenda-buffer-tmp-name (buffer-name))
  7598. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7599. (0-arg (or current-prefix-arg (car args)))
  7600. (2-arg (nth 2 args))
  7601. (with-hour-p (nth 4 org-agenda-redo-command))
  7602. (newcmd (list 'org-agenda-list 0-arg date
  7603. (org-agenda-span-to-ndays
  7604. 2-arg (org-time-string-to-absolute date))
  7605. with-hour-p))
  7606. (newargs (cdr newcmd))
  7607. (inhibit-read-only t)
  7608. org-agenda-sticky)
  7609. (if (not (org-agenda-check-type t 'agenda))
  7610. (error "Not available in non-agenda views")
  7611. (add-text-properties (point-min) (point-max)
  7612. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7613. (org-agenda-redo)
  7614. (goto-char (point-min))
  7615. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7616. (save-excursion (move-beginning-of-line 2) (eobp))))
  7617. (move-beginning-of-line 2))
  7618. (setq org-agenda-sticky org-agenda-sticky-orig
  7619. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7620. (defun org-agenda-goto-today ()
  7621. "Go to today."
  7622. (interactive)
  7623. (org-agenda-check-type t 'agenda)
  7624. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7625. (curspan (nth 2 args))
  7626. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7627. (cond
  7628. (tdpos (goto-char tdpos))
  7629. ((eq org-agenda-type 'agenda)
  7630. (let* ((sd (org-agenda-compute-starting-span
  7631. (org-today) (or curspan org-agenda-span)))
  7632. (org-agenda-overriding-arguments args))
  7633. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7634. (org-agenda-redo)
  7635. (org-agenda-find-same-or-today-or-agenda)))
  7636. (t (error "Cannot find today")))))
  7637. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7638. (goto-char
  7639. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7640. (text-property-any (point-min) (point-max) 'org-today t)
  7641. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7642. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7643. (org-agenda-backward-block))
  7644. (point-min))))
  7645. (defun org-agenda-backward-block ()
  7646. "Move backward by one agenda block."
  7647. (interactive)
  7648. (org-agenda-forward-block 'backward))
  7649. (defun org-agenda-forward-block (&optional backward)
  7650. "Move forward by one agenda block.
  7651. When optional argument BACKWARD is set, go backward."
  7652. (interactive)
  7653. (cond ((not (derived-mode-p 'org-agenda-mode))
  7654. (user-error
  7655. "Cannot execute this command outside of org-agenda-mode buffers"))
  7656. ((looking-at (if backward "\\`" "\\'"))
  7657. (message "Already at the %s block" (if backward "first" "last")))
  7658. (t (let ((pos (prog1 (point)
  7659. (ignore-errors (if backward (backward-char 1)
  7660. (move-end-of-line 1)))))
  7661. (f (if backward
  7662. 'previous-single-property-change
  7663. 'next-single-property-change))
  7664. moved dest)
  7665. (while (and (setq dest (funcall
  7666. f (point) 'org-agenda-structural-header))
  7667. (not (get-text-property
  7668. (point) 'org-agenda-structural-header)))
  7669. (setq moved t)
  7670. (goto-char dest))
  7671. (if moved (move-beginning-of-line 1)
  7672. (goto-char (if backward (point-min) (point-max)))
  7673. (move-beginning-of-line 1)
  7674. (message "No %s block" (if backward "previous" "further")))))))
  7675. (defun org-agenda-later (arg)
  7676. "Go forward in time by the current span.
  7677. With prefix ARG, go forward that many times the current span."
  7678. (interactive "p")
  7679. (org-agenda-check-type t 'agenda)
  7680. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7681. (span (or (nth 2 args) org-agenda-current-span))
  7682. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7683. (greg (calendar-gregorian-from-absolute sd))
  7684. (cnt (org-get-at-bol 'org-day-cnt))
  7685. greg2)
  7686. (cond
  7687. ((numberp span)
  7688. (setq sd (+ (* span arg) sd)))
  7689. ((eq span 'day)
  7690. (setq sd (+ arg sd)))
  7691. ((eq span 'week)
  7692. (setq sd (+ (* 7 arg) sd)))
  7693. ((eq span 'fortnight)
  7694. (setq sd (+ (* 14 arg) sd)))
  7695. ((eq span 'month)
  7696. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7697. sd (calendar-absolute-from-gregorian greg2))
  7698. (setcar greg2 (1+ (car greg2))))
  7699. ((eq span 'year)
  7700. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7701. sd (calendar-absolute-from-gregorian greg2))
  7702. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7703. (t
  7704. (setq sd (+ (* span arg) sd))))
  7705. (let ((org-agenda-overriding-cmd
  7706. ;; `cmd' may have been set by `org-agenda-run-series' which
  7707. ;; uses `org-agenda-overriding-cmd' to decide whether
  7708. ;; overriding is allowed for `cmd'
  7709. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7710. (org-agenda-overriding-arguments
  7711. (list (car args) sd span)))
  7712. (org-agenda-redo)
  7713. (org-agenda-find-same-or-today-or-agenda cnt))))
  7714. (defun org-agenda-earlier (arg)
  7715. "Go backward in time by the current span.
  7716. With prefix ARG, go backward that many times the current span."
  7717. (interactive "p")
  7718. (org-agenda-later (- arg)))
  7719. (defun org-agenda-view-mode-dispatch ()
  7720. "Call one of the view mode commands."
  7721. (interactive)
  7722. (org-unlogged-message
  7723. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7724. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7725. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7726. (pcase (read-char-exclusive)
  7727. (?\ (call-interactively 'org-agenda-reset-view))
  7728. (?d (call-interactively 'org-agenda-day-view))
  7729. (?w (call-interactively 'org-agenda-week-view))
  7730. (?t (call-interactively 'org-agenda-fortnight-view))
  7731. (?m (call-interactively 'org-agenda-month-view))
  7732. (?y (call-interactively 'org-agenda-year-view))
  7733. (?l (call-interactively 'org-agenda-log-mode))
  7734. (?L (org-agenda-log-mode '(4)))
  7735. (?c (org-agenda-log-mode 'clockcheck))
  7736. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7737. (?a (call-interactively 'org-agenda-archives-mode))
  7738. (?A (org-agenda-archives-mode 'files))
  7739. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7740. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7741. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7742. (?D (call-interactively 'org-agenda-toggle-diary))
  7743. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7744. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7745. (org-agenda-check-type t 'agenda)
  7746. (org-agenda-redo))
  7747. (message "Display now includes inactive timestamps as well"))
  7748. (?q (message "Abort"))
  7749. (key (user-error "Invalid key: %s" key))))
  7750. (defun org-agenda-reset-view ()
  7751. "Switch to default view for agenda."
  7752. (interactive)
  7753. (org-agenda-change-time-span org-agenda-span))
  7754. (defun org-agenda-day-view (&optional day-of-month)
  7755. "Switch to daily view for agenda.
  7756. With argument DAY-OF-MONTH, switch to that day of the month."
  7757. (interactive "P")
  7758. (org-agenda-change-time-span 'day day-of-month))
  7759. (defun org-agenda-week-view (&optional iso-week)
  7760. "Switch to weekly view for agenda.
  7761. With argument ISO-WEEK, switch to the corresponding ISO week.
  7762. If ISO-WEEK has more then 2 digits, only the last two encode
  7763. the week. Any digits before this encode a year. So 200712
  7764. means week 12 of year 2007. Years ranging from 70 years ago
  7765. to 30 years in the future can also be written as 2-digit years."
  7766. (interactive "P")
  7767. (org-agenda-change-time-span 'week iso-week))
  7768. (defun org-agenda-fortnight-view (&optional iso-week)
  7769. "Switch to fortnightly view for agenda.
  7770. With argument ISO-WEEK, switch to the corresponding ISO week.
  7771. If ISO-WEEK has more then 2 digits, only the last two encode
  7772. the week. Any digits before this encode a year. So 200712
  7773. means week 12 of year 2007. Years ranging from 70 years ago
  7774. to 30 years in the future can also be written as 2-digit years."
  7775. (interactive "P")
  7776. (org-agenda-change-time-span 'fortnight iso-week))
  7777. (defun org-agenda-month-view (&optional month)
  7778. "Switch to monthly view for agenda.
  7779. With argument MONTH, switch to that month. If MONTH has more
  7780. then 2 digits, only the last two encode the month. Any digits
  7781. before this encode a year. So 200712 means December year 2007.
  7782. Years ranging from 70 years ago to 30 years in the future can
  7783. also be written as 2-digit years."
  7784. (interactive "P")
  7785. (org-agenda-change-time-span 'month month))
  7786. (defun org-agenda-year-view (&optional year)
  7787. "Switch to yearly view for agenda.
  7788. With argument YEAR, switch to that year. Years ranging from 70
  7789. years ago to 30 years in the future can also be written as
  7790. 2-digit years."
  7791. (interactive "P")
  7792. (when year
  7793. (setq year (org-small-year-to-year year)))
  7794. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7795. (org-agenda-change-time-span 'year year)
  7796. (error "Abort")))
  7797. (defun org-agenda-change-time-span (span &optional n)
  7798. "Change the agenda view to SPAN.
  7799. SPAN may be `day', `week', `fortnight', `month', `year'."
  7800. (org-agenda-check-type t 'agenda)
  7801. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7802. (curspan (nth 2 args)))
  7803. (when (and (not n) (equal curspan span))
  7804. (error "Viewing span is already \"%s\"" span))
  7805. (let* ((sd (or (org-get-at-bol 'day)
  7806. (nth 1 args)
  7807. org-starting-day))
  7808. (sd (org-agenda-compute-starting-span sd span n))
  7809. (org-agenda-overriding-cmd
  7810. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7811. (org-agenda-overriding-arguments
  7812. (list (car args) sd span)))
  7813. (org-agenda-redo)
  7814. (org-agenda-find-same-or-today-or-agenda))
  7815. (org-agenda-set-mode-name)
  7816. (message "Switched to %s view" span)))
  7817. (defun org-agenda-compute-starting-span (sd span &optional n)
  7818. "Compute starting date for agenda.
  7819. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7820. is a cons cell with the starting date and the number of days,
  7821. so that the date SD will be in that range."
  7822. (let* ((greg (calendar-gregorian-from-absolute sd))
  7823. (dg (nth 1 greg))
  7824. (mg (car greg))
  7825. (yg (nth 2 greg)))
  7826. (cond
  7827. ((eq span 'day)
  7828. (when n
  7829. (setq sd (+ (calendar-absolute-from-gregorian
  7830. (list mg 1 yg))
  7831. n -1))))
  7832. ((or (eq span 'week) (eq span 'fortnight))
  7833. (let* ((nt (calendar-day-of-week
  7834. (calendar-gregorian-from-absolute sd)))
  7835. (d (if org-agenda-start-on-weekday
  7836. (- nt org-agenda-start-on-weekday)
  7837. 0))
  7838. y1)
  7839. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7840. (when n
  7841. (require 'cal-iso)
  7842. (when (> n 99)
  7843. (setq y1 (org-small-year-to-year (/ n 100))
  7844. n (mod n 100)))
  7845. (setq sd
  7846. (calendar-iso-to-absolute
  7847. (list n 1
  7848. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7849. ((eq span 'month)
  7850. (let (y1)
  7851. (when (and n (> n 99))
  7852. (setq y1 (org-small-year-to-year (/ n 100))
  7853. n (mod n 100)))
  7854. (setq sd (calendar-absolute-from-gregorian
  7855. (list (or n mg) 1 (or y1 yg))))))
  7856. ((eq span 'year)
  7857. (setq sd (calendar-absolute-from-gregorian
  7858. (list 1 1 (or n yg))))))
  7859. sd))
  7860. (defun org-agenda-next-date-line (&optional arg)
  7861. "Jump to the next line indicating a date in agenda buffer."
  7862. (interactive "p")
  7863. (org-agenda-check-type t 'agenda)
  7864. (beginning-of-line 1)
  7865. ;; This does not work if user makes date format that starts with a blank
  7866. (when (looking-at-p "^\\S-") (forward-char 1))
  7867. (unless (re-search-forward "^\\S-" nil t arg)
  7868. (backward-char 1)
  7869. (error "No next date after this line in this buffer"))
  7870. (goto-char (match-beginning 0)))
  7871. (defun org-agenda-previous-date-line (&optional arg)
  7872. "Jump to the previous line indicating a date in agenda buffer."
  7873. (interactive "p")
  7874. (org-agenda-check-type t 'agenda)
  7875. (beginning-of-line 1)
  7876. (unless (re-search-backward "^\\S-" nil t arg)
  7877. (error "No previous date before this line in this buffer")))
  7878. ;; Initialize the highlight
  7879. (defvar org-hl (make-overlay 1 1))
  7880. (overlay-put org-hl 'face 'highlight)
  7881. (defun org-highlight (begin end &optional buffer)
  7882. "Highlight a region with overlay."
  7883. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7884. (defun org-unhighlight ()
  7885. "Detach overlay INDEX."
  7886. (delete-overlay org-hl))
  7887. (defun org-unhighlight-once ()
  7888. "Remove the highlight from its position, and this function from the hook."
  7889. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7890. (org-unhighlight))
  7891. (defvar org-agenda-pre-follow-window-conf nil)
  7892. (defun org-agenda-follow-mode ()
  7893. "Toggle follow mode in an agenda buffer."
  7894. (interactive)
  7895. (unless org-agenda-follow-mode
  7896. (setq org-agenda-pre-follow-window-conf
  7897. (current-window-configuration)))
  7898. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7899. (unless org-agenda-follow-mode
  7900. (set-window-configuration org-agenda-pre-follow-window-conf))
  7901. (org-agenda-set-mode-name)
  7902. (org-agenda-do-context-action)
  7903. (message "Follow mode is %s"
  7904. (if org-agenda-follow-mode "on" "off")))
  7905. (defun org-agenda-entry-text-mode (&optional arg)
  7906. "Toggle entry text mode in an agenda buffer."
  7907. (interactive "P")
  7908. (if (or org-agenda-tag-filter
  7909. org-agenda-category-filter
  7910. org-agenda-regexp-filter
  7911. org-agenda-top-headline-filter)
  7912. (user-error "Can't show entry text in filtered views")
  7913. (setq org-agenda-entry-text-mode (or (integerp arg)
  7914. (not org-agenda-entry-text-mode)))
  7915. (org-agenda-entry-text-hide)
  7916. (and org-agenda-entry-text-mode
  7917. (let ((org-agenda-entry-text-maxlines
  7918. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7919. (org-agenda-entry-text-show)))
  7920. (org-agenda-set-mode-name)
  7921. (message "Entry text mode is %s%s"
  7922. (if org-agenda-entry-text-mode "on" "off")
  7923. (if (not org-agenda-entry-text-mode) ""
  7924. (format " (maximum number of lines is %d)"
  7925. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7926. (defun org-agenda-clockreport-mode ()
  7927. "Toggle clocktable mode in an agenda buffer."
  7928. (interactive)
  7929. (org-agenda-check-type t 'agenda)
  7930. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7931. (org-agenda-set-mode-name)
  7932. (org-agenda-redo)
  7933. (message "Clocktable mode is %s"
  7934. (if org-agenda-clockreport-mode "on" "off")))
  7935. (defun org-agenda-log-mode (&optional special)
  7936. "Toggle log mode in an agenda buffer.
  7937. With argument SPECIAL, show all possible log items, not only the ones
  7938. configured in `org-agenda-log-mode-items'.
  7939. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7940. log items, nothing else."
  7941. (interactive "P")
  7942. (org-agenda-check-type t 'agenda)
  7943. (setq org-agenda-show-log
  7944. (cond
  7945. ((equal special '(16)) 'only)
  7946. ((eq special 'clockcheck)
  7947. (if (eq org-agenda-show-log 'clockcheck)
  7948. nil 'clockcheck))
  7949. (special '(closed clock state))
  7950. (t (not org-agenda-show-log))))
  7951. (org-agenda-set-mode-name)
  7952. (org-agenda-redo)
  7953. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7954. (defun org-agenda-archives-mode (&optional with-files)
  7955. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7956. When called with a prefix argument, include all archive files as well."
  7957. (interactive "P")
  7958. (setq org-agenda-archives-mode
  7959. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7960. (org-agenda-set-mode-name)
  7961. (org-agenda-redo)
  7962. (message
  7963. "%s"
  7964. (cond
  7965. ((eq org-agenda-archives-mode nil)
  7966. "No archives are included")
  7967. ((eq org-agenda-archives-mode 'trees)
  7968. (format "Trees with :%s: tag are included" org-archive-tag))
  7969. ((eq org-agenda-archives-mode t)
  7970. (format "Trees with :%s: tag and all active archive files are included"
  7971. org-archive-tag)))))
  7972. (defun org-agenda-toggle-diary ()
  7973. "Toggle diary inclusion in an agenda buffer."
  7974. (interactive)
  7975. (org-agenda-check-type t 'agenda)
  7976. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7977. (org-agenda-redo)
  7978. (org-agenda-set-mode-name)
  7979. (message "Diary inclusion turned %s"
  7980. (if org-agenda-include-diary "on" "off")))
  7981. (defun org-agenda-toggle-deadlines ()
  7982. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7983. (interactive)
  7984. (org-agenda-check-type t 'agenda)
  7985. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7986. (org-agenda-redo)
  7987. (org-agenda-set-mode-name)
  7988. (message "Deadlines inclusion turned %s"
  7989. (if org-agenda-include-deadlines "on" "off")))
  7990. (defun org-agenda-toggle-time-grid ()
  7991. "Toggle time grid in an agenda buffer."
  7992. (interactive)
  7993. (org-agenda-check-type t 'agenda)
  7994. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7995. (org-agenda-redo)
  7996. (org-agenda-set-mode-name)
  7997. (message "Time-grid turned %s"
  7998. (if org-agenda-use-time-grid "on" "off")))
  7999. (defun org-agenda-set-mode-name ()
  8000. "Set the mode name to indicate all the small mode settings."
  8001. (setq mode-name
  8002. (list "Org-Agenda"
  8003. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8004. " "
  8005. '(:eval (org-agenda-span-name org-agenda-current-span))
  8006. (if org-agenda-follow-mode " Follow" "")
  8007. (if org-agenda-entry-text-mode " ETxt" "")
  8008. (if org-agenda-include-diary " Diary" "")
  8009. (if org-agenda-include-deadlines " Ddl" "")
  8010. (if org-agenda-use-time-grid " Grid" "")
  8011. (if (and (boundp 'org-habit-show-habits)
  8012. org-habit-show-habits) " Habit" "")
  8013. (cond
  8014. ((consp org-agenda-show-log) " LogAll")
  8015. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8016. (org-agenda-show-log " Log")
  8017. (t ""))
  8018. (if (org-agenda-filter-any) " " "")
  8019. (if (or org-agenda-category-filter
  8020. (get 'org-agenda-category-filter :preset-filter))
  8021. '(:eval (propertize
  8022. (concat "["
  8023. (mapconcat
  8024. 'identity
  8025. (append
  8026. (get 'org-agenda-category-filter :preset-filter)
  8027. org-agenda-category-filter)
  8028. "")
  8029. "]")
  8030. 'face 'org-agenda-filter-category
  8031. 'help-echo "Category used in filtering")) "")
  8032. (if (or org-agenda-tag-filter
  8033. (get 'org-agenda-tag-filter :preset-filter))
  8034. '(:eval (propertize
  8035. (concat (mapconcat
  8036. 'identity
  8037. (append
  8038. (get 'org-agenda-tag-filter :preset-filter)
  8039. org-agenda-tag-filter)
  8040. ""))
  8041. 'face 'org-agenda-filter-tags
  8042. 'help-echo "Tags used in filtering")) "")
  8043. (if (or org-agenda-effort-filter
  8044. (get 'org-agenda-effort-filter :preset-filter))
  8045. '(:eval (propertize
  8046. (concat (mapconcat
  8047. 'identity
  8048. (append
  8049. (get 'org-agenda-effort-filter :preset-filter)
  8050. org-agenda-effort-filter)
  8051. ""))
  8052. 'face 'org-agenda-filter-effort
  8053. 'help-echo "Effort conditions used in filtering")) "")
  8054. (if (or org-agenda-regexp-filter
  8055. (get 'org-agenda-regexp-filter :preset-filter))
  8056. '(:eval (propertize
  8057. (concat (mapconcat
  8058. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8059. (append
  8060. (get 'org-agenda-regexp-filter :preset-filter)
  8061. org-agenda-regexp-filter)
  8062. ""))
  8063. 'face 'org-agenda-filter-regexp
  8064. 'help-echo "Regexp used in filtering")) "")
  8065. (if org-agenda-archives-mode
  8066. (if (eq org-agenda-archives-mode t)
  8067. " Archives"
  8068. (format " :%s:" org-archive-tag))
  8069. "")
  8070. (if org-agenda-clockreport-mode " Clock" "")))
  8071. (force-mode-line-update))
  8072. (defun org-agenda-update-agenda-type ()
  8073. "Update the agenda type after each command."
  8074. (setq org-agenda-type
  8075. (or (get-text-property (point) 'org-agenda-type)
  8076. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8077. (defun org-agenda-next-line ()
  8078. "Move cursor to the next line, and show if follow mode is active."
  8079. (interactive)
  8080. (call-interactively 'next-line)
  8081. (org-agenda-do-context-action))
  8082. (defun org-agenda-previous-line ()
  8083. "Move cursor to the previous line, and show if follow-mode is active."
  8084. (interactive)
  8085. (call-interactively 'previous-line)
  8086. (org-agenda-do-context-action))
  8087. (defun org-agenda-next-item (n)
  8088. "Move cursor to next agenda item."
  8089. (interactive "p")
  8090. (let ((col (current-column)))
  8091. (dotimes (c n)
  8092. (when (next-single-property-change (point-at-eol) 'org-marker)
  8093. (move-end-of-line 1)
  8094. (goto-char (next-single-property-change (point) 'org-marker))))
  8095. (org-move-to-column col))
  8096. (org-agenda-do-context-action))
  8097. (defun org-agenda-previous-item (n)
  8098. "Move cursor to next agenda item."
  8099. (interactive "p")
  8100. (dotimes (c n)
  8101. (let ((col (current-column))
  8102. (goto (save-excursion
  8103. (move-end-of-line 0)
  8104. (previous-single-property-change (point) 'org-marker))))
  8105. (when goto (goto-char goto))
  8106. (org-move-to-column col)))
  8107. (org-agenda-do-context-action))
  8108. (defun org-agenda-do-context-action ()
  8109. "Show outline path and, maybe, follow mode window."
  8110. (let ((m (org-get-at-bol 'org-marker)))
  8111. (when (and (markerp m) (marker-buffer m))
  8112. (and org-agenda-follow-mode
  8113. (if org-agenda-follow-indirect
  8114. (org-agenda-tree-to-indirect-buffer nil)
  8115. (org-agenda-show)))
  8116. (and org-agenda-show-outline-path
  8117. (org-with-point-at m (org-display-outline-path t))))))
  8118. (defun org-agenda-show-tags ()
  8119. "Show the tags applicable to the current item."
  8120. (interactive)
  8121. (let* ((tags (org-get-at-bol 'tags)))
  8122. (if tags
  8123. (message "Tags are :%s:"
  8124. (org-no-properties (mapconcat 'identity tags ":")))
  8125. (message "No tags associated with this line"))))
  8126. (defun org-agenda-goto (&optional highlight)
  8127. "Go to the entry at point in the corresponding Org file."
  8128. (interactive)
  8129. (let* ((marker (or (org-get-at-bol 'org-marker)
  8130. (org-agenda-error)))
  8131. (buffer (marker-buffer marker))
  8132. (pos (marker-position marker)))
  8133. (switch-to-buffer-other-window buffer)
  8134. (widen)
  8135. (push-mark)
  8136. (goto-char pos)
  8137. (when (derived-mode-p 'org-mode)
  8138. (org-show-context 'agenda)
  8139. (recenter (/ (window-height) 2))
  8140. (org-back-to-heading t)
  8141. (let ((case-fold-search nil))
  8142. (when (re-search-forward org-complex-heading-regexp nil t)
  8143. (goto-char (match-beginning 4)))))
  8144. (run-hooks 'org-agenda-after-show-hook)
  8145. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8146. (defvar org-agenda-after-show-hook nil
  8147. "Normal hook run after an item has been shown from the agenda.
  8148. Point is in the buffer where the item originated.")
  8149. ;; Defined later in org-agenda.el
  8150. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8151. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8152. "Between region BEG and END, call agenda command CMD.
  8153. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8154. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8155. deletes the agenda entry and don't move to the next entry."
  8156. (save-excursion
  8157. (goto-char beg)
  8158. (let ((mend (move-marker (make-marker) end))
  8159. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8160. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8161. org-agenda-loop-over-headlines-in-active-region))
  8162. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8163. (org-get-at-bol 'level))))
  8164. (while (< (point) mend)
  8165. (let ((ov (make-overlay (point) (point-at-eol))))
  8166. (if (not (or all
  8167. (and match (looking-at-p match))
  8168. (eq level (org-get-at-bol 'level))))
  8169. (org-agenda-next-item 1)
  8170. (overlay-put ov 'face 'region)
  8171. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8172. (when (not delete) (org-agenda-next-item 1))
  8173. (delete-overlay ov)))))))
  8174. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8175. ;; kill,set-property,set-effort] commands may loop over agenda
  8176. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8177. ;; use their own mechanisms on active regions.
  8178. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8179. "Maybe loop over agenda entries and perform CMD.
  8180. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8181. (declare (debug t))
  8182. `(if (and (called-interactively-p 'any)
  8183. org-agenda-loop-over-headlines-in-active-region
  8184. (org-region-active-p))
  8185. (org-agenda-do-in-region
  8186. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8187. ,@body))
  8188. (defun org-agenda-kill ()
  8189. "Kill the entry or subtree belonging to the current agenda entry."
  8190. (interactive)
  8191. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8192. (org-agenda-maybe-loop
  8193. #'org-agenda-kill nil nil t
  8194. (let* ((bufname-orig (buffer-name))
  8195. (marker (or (org-get-at-bol 'org-marker)
  8196. (org-agenda-error)))
  8197. (buffer (marker-buffer marker))
  8198. (pos (marker-position marker))
  8199. (type (org-get-at-bol 'type))
  8200. dbeg dend (n 0))
  8201. (org-with-remote-undo buffer
  8202. (with-current-buffer buffer
  8203. (save-excursion
  8204. (goto-char pos)
  8205. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8206. (setq dbeg (progn (org-back-to-heading t) (point))
  8207. dend (org-end-of-subtree t t))
  8208. (setq dbeg (point-at-bol)
  8209. dend (min (point-max) (1+ (point-at-eol)))))
  8210. (goto-char dbeg)
  8211. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8212. (when (or (eq t org-agenda-confirm-kill)
  8213. (and (numberp org-agenda-confirm-kill)
  8214. (> n org-agenda-confirm-kill)))
  8215. (let ((win-conf (current-window-configuration)))
  8216. (unwind-protect
  8217. (and
  8218. (prog2
  8219. (org-agenda-tree-to-indirect-buffer nil)
  8220. (not (y-or-n-p
  8221. (format "Delete entry with %d lines in buffer \"%s\"? "
  8222. n (buffer-name buffer))))
  8223. (kill-buffer org-last-indirect-buffer))
  8224. (error "Abort"))
  8225. (set-window-configuration win-conf))))
  8226. (let ((org-agenda-buffer-name bufname-orig))
  8227. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8228. (with-current-buffer buffer (delete-region dbeg dend))
  8229. (message "Agenda item and source killed")))))
  8230. (defvar org-archive-default-command) ; defined in org-archive.el
  8231. (defun org-agenda-archive-default ()
  8232. "Archive the entry or subtree belonging to the current agenda entry."
  8233. (interactive)
  8234. (require 'org-archive)
  8235. (funcall-interactively
  8236. #'org-agenda-archive-with org-archive-default-command))
  8237. (defun org-agenda-archive-default-with-confirmation ()
  8238. "Archive the entry or subtree belonging to the current agenda entry."
  8239. (interactive)
  8240. (require 'org-archive)
  8241. (funcall-interactively
  8242. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8243. (defun org-agenda-archive ()
  8244. "Archive the entry or subtree belonging to the current agenda entry."
  8245. (interactive)
  8246. (funcall-interactively
  8247. #'org-agenda-archive-with 'org-archive-subtree))
  8248. (defun org-agenda-archive-to-archive-sibling ()
  8249. "Move the entry to the archive sibling."
  8250. (interactive)
  8251. (funcall-interactively
  8252. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8253. (defun org-agenda-archive-with (cmd &optional confirm)
  8254. "Move the entry to the archive sibling."
  8255. (interactive)
  8256. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8257. (org-agenda-maybe-loop
  8258. #'org-agenda-archive-with cmd nil t
  8259. (let* ((bufname-orig (buffer-name))
  8260. (marker (or (org-get-at-bol 'org-marker)
  8261. (org-agenda-error)))
  8262. (buffer (marker-buffer marker))
  8263. (pos (marker-position marker)))
  8264. (org-with-remote-undo buffer
  8265. (with-current-buffer buffer
  8266. (if (derived-mode-p 'org-mode)
  8267. (if (and confirm
  8268. (not (y-or-n-p "Archive this subtree or entry? ")))
  8269. (error "Abort")
  8270. (save-window-excursion
  8271. (goto-char pos)
  8272. (let ((org-agenda-buffer-name bufname-orig))
  8273. (org-remove-subtree-entries-from-agenda))
  8274. (org-back-to-heading t)
  8275. (let ((org-archive-from-agenda t))
  8276. (funcall cmd))))
  8277. (error "Archiving works only in Org files")))))))
  8278. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8279. "Remove all lines in the agenda that correspond to a given subtree.
  8280. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8281. If this information is not given, the function uses the tree at point."
  8282. (let ((buf (or buf (current-buffer))) m p)
  8283. (save-excursion
  8284. (unless (and beg end)
  8285. (org-back-to-heading t)
  8286. (setq beg (point))
  8287. (org-end-of-subtree t)
  8288. (setq end (point)))
  8289. (set-buffer (get-buffer org-agenda-buffer-name))
  8290. (save-excursion
  8291. (goto-char (point-max))
  8292. (beginning-of-line 1)
  8293. (while (not (bobp))
  8294. (when (and (setq m (org-get-at-bol 'org-marker))
  8295. (equal buf (marker-buffer m))
  8296. (setq p (marker-position m))
  8297. (>= p beg)
  8298. (< p end))
  8299. (let ((inhibit-read-only t))
  8300. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8301. (beginning-of-line 0))))))
  8302. (defun org-agenda-refile (&optional goto rfloc no-update)
  8303. "Refile the item at point.
  8304. When called with `\\[universal-argument] \\[universal-argument]', \
  8305. go to the location of the last
  8306. refiled item.
  8307. When called with `\\[universal-argument] \\[universal-argument] \
  8308. \\[universal-argument]' prefix or when GOTO is 0, clear
  8309. the refile cache.
  8310. RFLOC can be a refile location obtained in a different way.
  8311. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8312. (interactive "P")
  8313. (cond
  8314. ((member goto '(0 (64)))
  8315. (org-refile-cache-clear))
  8316. ((equal goto '(16))
  8317. (org-refile-goto-last-stored))
  8318. (t
  8319. (let* ((buffer-orig (buffer-name))
  8320. (marker (or (org-get-at-bol 'org-hd-marker)
  8321. (org-agenda-error)))
  8322. (buffer (marker-buffer marker))
  8323. (pos (marker-position marker))
  8324. (rfloc (or rfloc
  8325. (org-refile-get-location
  8326. (if goto "Goto" "Refile to") buffer
  8327. org-refile-allow-creating-parent-nodes))))
  8328. (with-current-buffer buffer
  8329. (org-with-wide-buffer
  8330. (goto-char marker)
  8331. (let ((org-agenda-buffer-name buffer-orig))
  8332. (org-remove-subtree-entries-from-agenda))
  8333. (org-refile goto buffer rfloc))))
  8334. (unless no-update (org-agenda-redo)))))
  8335. (defun org-agenda-open-link (&optional arg)
  8336. "Open the link(s) in the current entry, if any.
  8337. This looks for a link in the displayed line in the agenda.
  8338. It also looks at the text of the entry itself."
  8339. (interactive "P")
  8340. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8341. (org-get-at-bol 'org-marker)))
  8342. (buffer (and marker (marker-buffer marker)))
  8343. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8344. (lkall (and buffer (org-offer-links-in-entry
  8345. buffer marker arg prefix)))
  8346. (lk0 (car lkall))
  8347. (lk (if (stringp lk0) (list lk0) lk0))
  8348. (lkend (cdr lkall))
  8349. trg)
  8350. (cond
  8351. ((and buffer lk)
  8352. (mapcar (lambda(l)
  8353. (with-current-buffer buffer
  8354. (setq trg (and (string-match org-link-bracket-re l)
  8355. (match-string 1 l)))
  8356. (if (or (not trg) (string-match org-link-any-re trg))
  8357. ;; Don't use `org-with-wide-buffer' here as
  8358. ;; opening the link may result in moving the point
  8359. (save-restriction
  8360. (widen)
  8361. (goto-char marker)
  8362. (when (search-forward l nil lkend)
  8363. (goto-char (match-beginning 0))
  8364. (org-open-at-point)))
  8365. ;; This is an internal link, widen the buffer
  8366. (switch-to-buffer-other-window buffer)
  8367. (widen)
  8368. (goto-char marker)
  8369. (when (search-forward l nil lkend)
  8370. (goto-char (match-beginning 0))
  8371. (org-open-at-point)))))
  8372. lk))
  8373. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8374. (save-excursion
  8375. (beginning-of-line 1)
  8376. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8377. (org-link-open-from-string (match-string 1)))
  8378. (t (message "No link to open here")))))
  8379. (defun org-agenda-copy-local-variable (var)
  8380. "Get a variable from a referenced buffer and install it here."
  8381. (let ((m (org-get-at-bol 'org-marker)))
  8382. (when (and m (buffer-live-p (marker-buffer m)))
  8383. (set (make-local-variable var)
  8384. (with-current-buffer (marker-buffer m)
  8385. (symbol-value var))))))
  8386. (defun org-agenda-switch-to (&optional delete-other-windows)
  8387. "Go to the Org mode file which contains the item at point.
  8388. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8389. displayed Org file fills the frame."
  8390. (interactive)
  8391. (if (and org-return-follows-link
  8392. (not (org-get-at-bol 'org-marker))
  8393. (org-in-regexp org-link-bracket-re))
  8394. (org-link-open-from-string (match-string 0))
  8395. (let* ((marker (or (org-get-at-bol 'org-marker)
  8396. (org-agenda-error)))
  8397. (buffer (marker-buffer marker))
  8398. (pos (marker-position marker)))
  8399. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8400. (pop-to-buffer-same-window buffer)
  8401. (when delete-other-windows (delete-other-windows))
  8402. (widen)
  8403. (goto-char pos)
  8404. (when (derived-mode-p 'org-mode)
  8405. (org-show-context 'agenda)
  8406. (run-hooks 'org-agenda-after-show-hook)))))
  8407. (defun org-agenda-goto-mouse (ev)
  8408. "Go to the Org file which contains the item at the mouse click."
  8409. (interactive "e")
  8410. (mouse-set-point ev)
  8411. (org-agenda-goto))
  8412. (defun org-agenda-show (&optional full-entry)
  8413. "Display the Org file which contains the item at point.
  8414. With prefix argument FULL-ENTRY, make the entire entry visible
  8415. if it was hidden in the outline."
  8416. (interactive "P")
  8417. (let ((win (selected-window)))
  8418. (org-agenda-goto t)
  8419. (when full-entry (org-show-entry))
  8420. (select-window win)))
  8421. (defvar org-agenda-show-window nil)
  8422. (defun org-agenda-show-and-scroll-up (&optional arg)
  8423. "Display the Org file which contains the item at point.
  8424. When called repeatedly, scroll the window that is displaying the buffer.
  8425. With a `\\[universal-argument]' prefix argument, display the item, but \
  8426. fold drawers."
  8427. (interactive "P")
  8428. (let ((win (selected-window)))
  8429. (if (and (window-live-p org-agenda-show-window)
  8430. (eq this-command last-command))
  8431. (progn
  8432. (select-window org-agenda-show-window)
  8433. (ignore-errors (scroll-up)))
  8434. (org-agenda-goto t)
  8435. (org-show-entry)
  8436. (if arg (org-cycle-hide-drawers 'children)
  8437. (org-with-wide-buffer
  8438. (narrow-to-region (org-entry-beginning-position)
  8439. (org-entry-end-position))
  8440. (org-show-all '(drawers))))
  8441. (setq org-agenda-show-window (selected-window)))
  8442. (select-window win)))
  8443. (defun org-agenda-show-scroll-down ()
  8444. "Scroll down the window showing the agenda."
  8445. (interactive)
  8446. (let ((win (selected-window)))
  8447. (when (window-live-p org-agenda-show-window)
  8448. (select-window org-agenda-show-window)
  8449. (ignore-errors (scroll-down))
  8450. (select-window win))))
  8451. (defun org-agenda-show-1 (&optional more)
  8452. "Display the Org file which contains the item at point.
  8453. The prefix arg selects the amount of information to display:
  8454. 0 hide the subtree
  8455. 1 just show the entry according to defaults.
  8456. 2 show the children view
  8457. 3 show the subtree view
  8458. 4 show the entire subtree and any LOGBOOK drawers
  8459. 5 show the entire subtree and any drawers
  8460. With prefix argument FULL-ENTRY, make the entire entry visible
  8461. if it was hidden in the outline."
  8462. (interactive "p")
  8463. (let ((win (selected-window)))
  8464. (org-agenda-goto t)
  8465. (org-back-to-heading)
  8466. (set-window-start (selected-window) (point-at-bol))
  8467. (cond
  8468. ((= more 0)
  8469. (org-flag-subtree t)
  8470. (save-excursion
  8471. (org-back-to-heading)
  8472. (run-hook-with-args 'org-cycle-hook 'folded))
  8473. (message "Remote: FOLDED"))
  8474. ((and (called-interactively-p 'any) (= more 1))
  8475. (message "Remote: show with default settings"))
  8476. ((= more 2)
  8477. (outline-show-entry)
  8478. (org-show-children)
  8479. (save-excursion
  8480. (org-back-to-heading)
  8481. (run-hook-with-args 'org-cycle-hook 'children))
  8482. (message "Remote: CHILDREN"))
  8483. ((= more 3)
  8484. (outline-show-subtree)
  8485. (save-excursion
  8486. (org-back-to-heading)
  8487. (run-hook-with-args 'org-cycle-hook 'subtree))
  8488. (message "Remote: SUBTREE"))
  8489. ((= more 4)
  8490. (outline-show-subtree)
  8491. (save-excursion
  8492. (org-back-to-heading)
  8493. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8494. (message "Remote: SUBTREE AND LOGBOOK"))
  8495. ((> more 4)
  8496. (outline-show-subtree)
  8497. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8498. (select-window win)))
  8499. (defvar org-agenda-cycle-counter nil)
  8500. (defun org-agenda-cycle-show (&optional n)
  8501. "Show the current entry in another window, with default settings.
  8502. Default settings are taken from `org-show-context-detail'. When
  8503. use repeatedly in immediate succession, the remote entry will
  8504. cycle through visibility
  8505. children -> subtree -> folded
  8506. When called with a numeric prefix arg, that arg will be passed through to
  8507. `org-agenda-show-1'. For the interpretation of that argument, see the
  8508. docstring of `org-agenda-show-1'."
  8509. (interactive "P")
  8510. (if (integerp n)
  8511. (setq org-agenda-cycle-counter n)
  8512. (if (not (eq last-command this-command))
  8513. (setq org-agenda-cycle-counter 1)
  8514. (if (equal org-agenda-cycle-counter 0)
  8515. (setq org-agenda-cycle-counter 2)
  8516. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8517. (when (> org-agenda-cycle-counter 3)
  8518. (setq org-agenda-cycle-counter 0)))))
  8519. (org-agenda-show-1 org-agenda-cycle-counter))
  8520. (defun org-agenda-recenter (arg)
  8521. "Display the Org file which contains the item at point and recenter."
  8522. (interactive "P")
  8523. (let ((win (selected-window)))
  8524. (org-agenda-goto t)
  8525. (recenter arg)
  8526. (select-window win)))
  8527. (defun org-agenda-show-mouse (ev)
  8528. "Display the Org file which contains the item at the mouse click."
  8529. (interactive "e")
  8530. (mouse-set-point ev)
  8531. (org-agenda-show))
  8532. (defun org-agenda-check-no-diary ()
  8533. "Check if the entry is a diary link and abort if yes."
  8534. (when (org-get-at-bol 'org-agenda-diary-link)
  8535. (org-agenda-error)))
  8536. (defun org-agenda-error ()
  8537. "Throw an error when a command is not allowed in the agenda."
  8538. (user-error "Command not allowed in this line"))
  8539. (defun org-agenda-tree-to-indirect-buffer (arg)
  8540. "Show the subtree corresponding to the current entry in an indirect buffer.
  8541. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8542. With a numerical prefix ARG, go up to this level and then take that tree.
  8543. With a negative numeric ARG, go up by this number of levels.
  8544. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8545. i.e. don't use
  8546. the dedicated frame."
  8547. (interactive "P")
  8548. (if current-prefix-arg
  8549. (org-agenda-do-tree-to-indirect-buffer arg)
  8550. (let ((agenda-buffer (buffer-name))
  8551. (agenda-window (selected-window))
  8552. (indirect-window
  8553. (and org-last-indirect-buffer
  8554. (get-buffer-window org-last-indirect-buffer))))
  8555. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8556. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8557. (eq org-indirect-buffer-display 'dedicated-frame))
  8558. (unwind-protect
  8559. (unless (and indirect-window (window-live-p indirect-window))
  8560. (setq indirect-window (split-window agenda-window)))
  8561. (and indirect-window (select-window indirect-window))
  8562. (switch-to-buffer org-last-indirect-buffer :norecord)
  8563. (fit-window-to-buffer indirect-window)))
  8564. (select-window (get-buffer-window agenda-buffer))
  8565. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8566. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8567. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8568. (org-agenda-check-no-diary)
  8569. (let* ((marker (or (org-get-at-bol 'org-marker)
  8570. (org-agenda-error)))
  8571. (buffer (marker-buffer marker))
  8572. (pos (marker-position marker)))
  8573. (with-current-buffer buffer
  8574. (save-excursion
  8575. (goto-char pos)
  8576. (org-tree-to-indirect-buffer arg)))))
  8577. (defvar org-last-heading-marker (make-marker)
  8578. "Marker pointing to the headline that last changed its TODO state
  8579. by a remote command from the agenda.")
  8580. (defun org-agenda-todo-nextset ()
  8581. "Switch TODO entry to next sequence."
  8582. (interactive)
  8583. (org-agenda-todo 'nextset))
  8584. (defun org-agenda-todo-previousset ()
  8585. "Switch TODO entry to previous sequence."
  8586. (interactive)
  8587. (org-agenda-todo 'previousset))
  8588. (defun org-agenda-todo (&optional arg)
  8589. "Cycle TODO state of line at point, also in Org file.
  8590. This changes the line at point, all other lines in the agenda referring to
  8591. the same tree node, and the headline of the tree node in the Org file."
  8592. (interactive "P")
  8593. (org-agenda-check-no-diary)
  8594. (org-agenda-maybe-loop
  8595. #'org-agenda-todo arg nil nil
  8596. (let* ((col (current-column))
  8597. (marker (or (org-get-at-bol 'org-marker)
  8598. (org-agenda-error)))
  8599. (buffer (marker-buffer marker))
  8600. (pos (marker-position marker))
  8601. (hdmarker (org-get-at-bol 'org-hd-marker))
  8602. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8603. (inhibit-read-only t)
  8604. org-loop-over-headlines-in-active-region
  8605. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8606. (org-with-remote-undo buffer
  8607. (with-current-buffer buffer
  8608. (widen)
  8609. (goto-char pos)
  8610. (org-show-context 'agenda)
  8611. (let ((current-prefix-arg arg))
  8612. (call-interactively 'org-todo))
  8613. (and (bolp) (forward-char 1))
  8614. (setq newhead (org-get-heading))
  8615. (when (and (bound-and-true-p
  8616. org-agenda-headline-snapshot-before-repeat)
  8617. (not (equal org-agenda-headline-snapshot-before-repeat
  8618. newhead))
  8619. todayp)
  8620. (setq newhead org-agenda-headline-snapshot-before-repeat
  8621. just-one t))
  8622. (save-excursion
  8623. (org-back-to-heading)
  8624. (move-marker org-last-heading-marker (point))))
  8625. (beginning-of-line 1)
  8626. (save-window-excursion
  8627. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8628. (when (bound-and-true-p org-clock-out-when-done)
  8629. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8630. newhead)
  8631. (org-agenda-unmark-clocking-task))
  8632. (org-move-to-column col)
  8633. (org-agenda-mark-clocking-task)))))
  8634. (defun org-agenda-add-note (&optional arg)
  8635. "Add a time-stamped note to the entry at point."
  8636. (interactive "P")
  8637. (org-agenda-check-no-diary)
  8638. (let* ((marker (or (org-get-at-bol 'org-marker)
  8639. (org-agenda-error)))
  8640. (buffer (marker-buffer marker))
  8641. (pos (marker-position marker))
  8642. (hdmarker (org-get-at-bol 'org-hd-marker))
  8643. (inhibit-read-only t))
  8644. (with-current-buffer buffer
  8645. (widen)
  8646. (goto-char pos)
  8647. (org-show-context 'agenda)
  8648. (org-add-note))))
  8649. (defun org-agenda-change-all-lines (newhead hdmarker
  8650. &optional fixface just-this)
  8651. "Change all lines in the agenda buffer which match HDMARKER.
  8652. The new content of the line will be NEWHEAD (as modified by
  8653. `org-agenda-format-item'). HDMARKER is checked with
  8654. `equal' against all `org-hd-marker' text properties in the file.
  8655. If FIXFACE is non-nil, the face of each item is modified according to
  8656. the new TODO state.
  8657. If JUST-THIS is non-nil, change just the current line, not all.
  8658. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8659. (let* ((inhibit-read-only t)
  8660. (line (org-current-line))
  8661. (org-agenda-buffer (current-buffer))
  8662. (thetags (with-current-buffer (marker-buffer hdmarker)
  8663. (org-get-tags hdmarker)))
  8664. props m pl undone-face done-face finish new dotime level cat tags)
  8665. (save-excursion
  8666. (goto-char (point-max))
  8667. (beginning-of-line 1)
  8668. (while (not finish)
  8669. (setq finish (bobp))
  8670. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8671. (or (not just-this) (= (org-current-line) line))
  8672. (equal m hdmarker))
  8673. (setq props (text-properties-at (point))
  8674. dotime (org-get-at-bol 'dotime)
  8675. cat (org-agenda-get-category)
  8676. level (org-get-at-bol 'level)
  8677. tags thetags
  8678. new
  8679. (let ((org-prefix-format-compiled
  8680. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8681. org-prefix-format-compiled))
  8682. (extra (org-get-at-bol 'extra)))
  8683. (with-current-buffer (marker-buffer hdmarker)
  8684. (org-with-wide-buffer
  8685. (org-agenda-format-item extra newhead level cat tags dotime))))
  8686. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8687. undone-face (org-get-at-bol 'undone-face)
  8688. done-face (org-get-at-bol 'done-face))
  8689. (beginning-of-line 1)
  8690. (cond
  8691. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8692. ((looking-at ".*")
  8693. ;; When replacing the whole line, preserve bulk mark
  8694. ;; overlay, if any.
  8695. (let ((mark (catch :overlay
  8696. (dolist (o (overlays-in (point) (+ 2 (point))))
  8697. (when (eq (overlay-get o 'type)
  8698. 'org-marked-entry-overlay)
  8699. (throw :overlay o))))))
  8700. (replace-match new t t)
  8701. (beginning-of-line)
  8702. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8703. (add-text-properties (point-at-bol) (point-at-eol) props)
  8704. (when fixface
  8705. (add-text-properties
  8706. (point-at-bol) (point-at-eol)
  8707. (list 'face
  8708. (if org-last-todo-state-is-todo
  8709. undone-face done-face))))
  8710. (org-agenda-highlight-todo 'line)
  8711. (beginning-of-line 1))
  8712. (t (error "Line update did not work")))
  8713. (save-restriction
  8714. (narrow-to-region (point-at-bol) (point-at-eol))
  8715. (org-agenda-finalize)))
  8716. (beginning-of-line 0)))))
  8717. (defun org-agenda-align-tags (&optional line)
  8718. "Align all tags in agenda items to `org-agenda-tags-column'.
  8719. When optional argument LINE is non-nil, align tags only on the
  8720. current line."
  8721. (let ((inhibit-read-only t)
  8722. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8723. (- (window-text-width))
  8724. org-agenda-tags-column))
  8725. (end (and line (line-end-position)))
  8726. l c)
  8727. (save-excursion
  8728. (goto-char (if line (line-beginning-position) (point-min)))
  8729. (while (re-search-forward org-tag-group-re end t)
  8730. (add-text-properties
  8731. (match-beginning 1) (match-end 1)
  8732. (list 'face (delq nil (let ((prop (get-text-property
  8733. (match-beginning 1) 'face)))
  8734. (or (listp prop) (setq prop (list prop)))
  8735. (if (memq 'org-tag prop)
  8736. prop
  8737. (cons 'org-tag prop))))))
  8738. (setq l (string-width (match-string 1))
  8739. c (if (< org-agenda-tags-column 0)
  8740. (- (abs org-agenda-tags-column) l)
  8741. org-agenda-tags-column))
  8742. (goto-char (match-beginning 1))
  8743. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8744. (point))
  8745. (insert (org-add-props
  8746. (make-string (max 1 (- c (current-column))) ?\s)
  8747. (plist-put (copy-sequence (text-properties-at (point)))
  8748. 'face nil))))
  8749. (goto-char (point-min))
  8750. (org-font-lock-add-tag-faces (point-max)))))
  8751. (defun org-agenda-priority-up ()
  8752. "Increase the priority of line at point, also in Org file."
  8753. (interactive)
  8754. (org-agenda-priority 'up))
  8755. (defun org-agenda-priority-down ()
  8756. "Decrease the priority of line at point, also in Org file."
  8757. (interactive)
  8758. (org-agenda-priority 'down))
  8759. (defun org-agenda-priority (&optional force-direction)
  8760. "Set the priority of line at point, also in Org file.
  8761. This changes the line at point, all other lines in the agenda referring to
  8762. the same tree node, and the headline of the tree node in the Org file.
  8763. Called with a universal prefix arg, show the priority instead of setting it."
  8764. (interactive "P")
  8765. (if (equal force-direction '(4))
  8766. (org-priority-show)
  8767. (unless org-priority-enable-commands
  8768. (user-error "Priority commands are disabled"))
  8769. (org-agenda-check-no-diary)
  8770. (let* ((col (current-column))
  8771. (marker (or (org-get-at-bol 'org-marker)
  8772. (org-agenda-error)))
  8773. (hdmarker (org-get-at-bol 'org-hd-marker))
  8774. (buffer (marker-buffer hdmarker))
  8775. (pos (marker-position hdmarker))
  8776. (inhibit-read-only t)
  8777. newhead)
  8778. (org-with-remote-undo buffer
  8779. (with-current-buffer buffer
  8780. (widen)
  8781. (goto-char pos)
  8782. (org-show-context 'agenda)
  8783. (org-priority force-direction)
  8784. (end-of-line 1)
  8785. (setq newhead (org-get-heading)))
  8786. (org-agenda-change-all-lines newhead hdmarker)
  8787. (org-move-to-column col)))))
  8788. ;; FIXME: should fix the tags property of the agenda line.
  8789. (defun org-agenda-set-tags (&optional tag onoff)
  8790. "Set tags for the current headline."
  8791. (interactive)
  8792. (org-agenda-check-no-diary)
  8793. (if (and (org-region-active-p) (called-interactively-p 'any))
  8794. (call-interactively 'org-change-tag-in-region)
  8795. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8796. (org-agenda-error)))
  8797. (buffer (marker-buffer hdmarker))
  8798. (pos (marker-position hdmarker))
  8799. (inhibit-read-only t)
  8800. newhead)
  8801. (org-with-remote-undo buffer
  8802. (with-current-buffer buffer
  8803. (widen)
  8804. (goto-char pos)
  8805. (org-show-context 'agenda)
  8806. (if tag
  8807. (org-toggle-tag tag onoff)
  8808. (call-interactively #'org-set-tags-command))
  8809. (end-of-line 1)
  8810. (setq newhead (org-get-heading)))
  8811. (org-agenda-change-all-lines newhead hdmarker)
  8812. (beginning-of-line 1)))))
  8813. (defun org-agenda-set-property ()
  8814. "Set a property for the current headline."
  8815. (interactive)
  8816. (org-agenda-check-no-diary)
  8817. (org-agenda-maybe-loop
  8818. #'org-agenda-set-property nil nil nil
  8819. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8820. (org-agenda-error)))
  8821. (buffer (marker-buffer hdmarker))
  8822. (pos (marker-position hdmarker))
  8823. (inhibit-read-only t)
  8824. newhead)
  8825. (org-with-remote-undo buffer
  8826. (with-current-buffer buffer
  8827. (widen)
  8828. (goto-char pos)
  8829. (org-show-context 'agenda)
  8830. (call-interactively 'org-set-property))))))
  8831. (defun org-agenda-set-effort ()
  8832. "Set the effort property for the current headline."
  8833. (interactive)
  8834. (org-agenda-check-no-diary)
  8835. (org-agenda-maybe-loop
  8836. #'org-agenda-set-effort nil nil nil
  8837. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8838. (org-agenda-error)))
  8839. (buffer (marker-buffer hdmarker))
  8840. (pos (marker-position hdmarker))
  8841. (inhibit-read-only t)
  8842. newhead)
  8843. (org-with-remote-undo buffer
  8844. (with-current-buffer buffer
  8845. (widen)
  8846. (goto-char pos)
  8847. (org-show-context 'agenda)
  8848. (call-interactively 'org-set-effort)
  8849. (end-of-line 1)
  8850. (setq newhead (org-get-heading)))
  8851. (org-agenda-change-all-lines newhead hdmarker)))))
  8852. (defun org-agenda-toggle-archive-tag ()
  8853. "Toggle the archive tag for the current entry."
  8854. (interactive)
  8855. (org-agenda-check-no-diary)
  8856. (org-agenda-maybe-loop
  8857. #'org-agenda-toggle-archive-tag nil nil nil
  8858. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8859. (org-agenda-error)))
  8860. (buffer (marker-buffer hdmarker))
  8861. (pos (marker-position hdmarker))
  8862. (inhibit-read-only t)
  8863. newhead)
  8864. (org-with-remote-undo buffer
  8865. (with-current-buffer buffer
  8866. (widen)
  8867. (goto-char pos)
  8868. (org-show-context 'agenda)
  8869. (call-interactively 'org-toggle-archive-tag)
  8870. (end-of-line 1)
  8871. (setq newhead (org-get-heading)))
  8872. (org-agenda-change-all-lines newhead hdmarker)
  8873. (beginning-of-line 1)))))
  8874. (defun org-agenda-do-date-later (arg)
  8875. (interactive "P")
  8876. (cond
  8877. ((or (equal arg '(16))
  8878. (memq last-command
  8879. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8880. (setq this-command 'org-agenda-date-later-minutes)
  8881. (org-agenda-date-later-minutes 1))
  8882. ((or (equal arg '(4))
  8883. (memq last-command
  8884. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8885. (setq this-command 'org-agenda-date-later-hours)
  8886. (org-agenda-date-later-hours 1))
  8887. (t
  8888. (org-agenda-date-later (prefix-numeric-value arg)))))
  8889. (defun org-agenda-do-date-earlier (arg)
  8890. (interactive "P")
  8891. (cond
  8892. ((or (equal arg '(16))
  8893. (memq last-command
  8894. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8895. (setq this-command 'org-agenda-date-earlier-minutes)
  8896. (org-agenda-date-earlier-minutes 1))
  8897. ((or (equal arg '(4))
  8898. (memq last-command
  8899. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8900. (setq this-command 'org-agenda-date-earlier-hours)
  8901. (org-agenda-date-earlier-hours 1))
  8902. (t
  8903. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8904. (defun org-agenda-date-later (arg &optional what)
  8905. "Change the date of this item to ARG day(s) later."
  8906. (interactive "p")
  8907. (org-agenda-check-type t 'agenda)
  8908. (org-agenda-check-no-diary)
  8909. (let* ((marker (or (org-get-at-bol 'org-marker)
  8910. (org-agenda-error)))
  8911. (buffer (marker-buffer marker))
  8912. (pos (marker-position marker))
  8913. cdate today)
  8914. (org-with-remote-undo buffer
  8915. (with-current-buffer buffer
  8916. (widen)
  8917. (goto-char pos)
  8918. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8919. (when (and org-agenda-move-date-from-past-immediately-to-today
  8920. (equal arg 1)
  8921. (or (not what) (eq what 'day))
  8922. (not (save-match-data (org-at-date-range-p))))
  8923. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8924. cdate (calendar-absolute-from-gregorian
  8925. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8926. today (org-today))
  8927. (when (> today cdate)
  8928. ;; immediately shift to today
  8929. (setq arg (- today cdate))))
  8930. (org-timestamp-change arg (or what 'day))
  8931. (when (and (org-at-date-range-p)
  8932. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8933. (let ((end org-last-changed-timestamp))
  8934. (org-timestamp-change arg (or what 'day))
  8935. (setq org-last-changed-timestamp
  8936. (concat org-last-changed-timestamp "--" end)))))
  8937. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8938. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8939. (defun org-agenda-date-earlier (arg &optional what)
  8940. "Change the date of this item to ARG day(s) earlier."
  8941. (interactive "p")
  8942. (org-agenda-date-later (- arg) what))
  8943. (defun org-agenda-date-later-minutes (arg)
  8944. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8945. (interactive "p")
  8946. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8947. (org-agenda-date-later arg 'minute))
  8948. (defun org-agenda-date-earlier-minutes (arg)
  8949. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8950. (interactive "p")
  8951. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8952. (org-agenda-date-earlier arg 'minute))
  8953. (defun org-agenda-date-later-hours (arg)
  8954. "Change the time of this item, in hour steps."
  8955. (interactive "p")
  8956. (org-agenda-date-later arg 'hour))
  8957. (defun org-agenda-date-earlier-hours (arg)
  8958. "Change the time of this item, in hour steps."
  8959. (interactive "p")
  8960. (org-agenda-date-earlier arg 'hour))
  8961. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8962. "Show new date stamp via text properties."
  8963. ;; We use text properties to make this undoable
  8964. (let ((inhibit-read-only t))
  8965. (setq stamp (concat prefix " => " stamp " "))
  8966. (save-excursion
  8967. (goto-char (point-max))
  8968. (while (not (bobp))
  8969. (when (equal marker (org-get-at-bol 'org-marker))
  8970. (remove-text-properties (line-beginning-position)
  8971. (line-end-position)
  8972. '(display nil))
  8973. (org-move-to-column
  8974. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  8975. (add-text-properties
  8976. (1- (point)) (point-at-eol)
  8977. (list 'display (org-add-props stamp nil
  8978. 'face '(secondary-selection default))))
  8979. (beginning-of-line 1))
  8980. (beginning-of-line 0)))))
  8981. (defun org-agenda-date-prompt (arg)
  8982. "Change the date of this item. Date is prompted for, with default today.
  8983. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8984. be used to request time specification in the time stamp."
  8985. (interactive "P")
  8986. (org-agenda-check-type t 'agenda)
  8987. (org-agenda-check-no-diary)
  8988. (org-agenda-maybe-loop
  8989. #'org-agenda-date-prompt arg t nil
  8990. (let* ((marker (or (org-get-at-bol 'org-marker)
  8991. (org-agenda-error)))
  8992. (buffer (marker-buffer marker))
  8993. (pos (marker-position marker)))
  8994. (org-with-remote-undo buffer
  8995. (with-current-buffer buffer
  8996. (widen)
  8997. (goto-char pos)
  8998. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8999. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9000. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9001. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9002. (defun org-agenda-schedule (arg &optional time)
  9003. "Schedule the item at point.
  9004. ARG is passed through to `org-schedule'."
  9005. (interactive "P")
  9006. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9007. (org-agenda-check-no-diary)
  9008. (org-agenda-maybe-loop
  9009. #'org-agenda-schedule arg t nil
  9010. (let* ((marker (or (org-get-at-bol 'org-marker)
  9011. (org-agenda-error)))
  9012. (type (marker-insertion-type marker))
  9013. (buffer (marker-buffer marker))
  9014. (pos (marker-position marker))
  9015. ts)
  9016. (set-marker-insertion-type marker t)
  9017. (org-with-remote-undo buffer
  9018. (with-current-buffer buffer
  9019. (widen)
  9020. (goto-char pos)
  9021. (setq ts (org-schedule arg time)))
  9022. (org-agenda-show-new-time marker ts " S"))
  9023. (message "%s" ts))))
  9024. (defun org-agenda-deadline (arg &optional time)
  9025. "Schedule the item at point.
  9026. ARG is passed through to `org-deadline'."
  9027. (interactive "P")
  9028. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9029. (org-agenda-check-no-diary)
  9030. (org-agenda-maybe-loop
  9031. #'org-agenda-deadline arg t nil
  9032. (let* ((marker (or (org-get-at-bol 'org-marker)
  9033. (org-agenda-error)))
  9034. (buffer (marker-buffer marker))
  9035. (pos (marker-position marker))
  9036. ts)
  9037. (org-with-remote-undo buffer
  9038. (with-current-buffer buffer
  9039. (widen)
  9040. (goto-char pos)
  9041. (setq ts (org-deadline arg time)))
  9042. (org-agenda-show-new-time marker ts " D"))
  9043. (message "%s" ts))))
  9044. (defun org-agenda-clock-in (&optional arg)
  9045. "Start the clock on the currently selected item."
  9046. (interactive "P")
  9047. (org-agenda-check-no-diary)
  9048. (if (equal arg '(4))
  9049. (org-clock-in arg)
  9050. (let* ((marker (or (org-get-at-bol 'org-marker)
  9051. (org-agenda-error)))
  9052. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9053. (pos (marker-position marker))
  9054. (col (current-column))
  9055. newhead)
  9056. (org-with-remote-undo (marker-buffer marker)
  9057. (with-current-buffer (marker-buffer marker)
  9058. (widen)
  9059. (goto-char pos)
  9060. (org-show-context 'agenda)
  9061. (org-clock-in arg)
  9062. (setq newhead (org-get-heading)))
  9063. (org-agenda-change-all-lines newhead hdmarker))
  9064. (org-move-to-column col))))
  9065. (defun org-agenda-clock-out ()
  9066. "Stop the currently running clock."
  9067. (interactive)
  9068. (unless (marker-buffer org-clock-marker)
  9069. (error "No running clock"))
  9070. (let ((marker (make-marker)) (col (current-column)) newhead)
  9071. (org-with-remote-undo (marker-buffer org-clock-marker)
  9072. (with-current-buffer (marker-buffer org-clock-marker)
  9073. (org-with-wide-buffer
  9074. (goto-char org-clock-marker)
  9075. (org-back-to-heading t)
  9076. (move-marker marker (point))
  9077. (org-clock-out)
  9078. (setq newhead (org-get-heading)))))
  9079. (org-agenda-change-all-lines newhead marker)
  9080. (move-marker marker nil)
  9081. (org-move-to-column col)
  9082. (org-agenda-unmark-clocking-task)))
  9083. (defun org-agenda-clock-cancel (&optional arg)
  9084. "Cancel the currently running clock."
  9085. (interactive "P")
  9086. (unless (marker-buffer org-clock-marker)
  9087. (user-error "No running clock"))
  9088. (org-with-remote-undo (marker-buffer org-clock-marker)
  9089. (org-clock-cancel)))
  9090. (defun org-agenda-clock-goto ()
  9091. "Jump to the currently clocked in task within the agenda.
  9092. If the currently clocked in task is not listed in the agenda
  9093. buffer, display it in another window."
  9094. (interactive)
  9095. (let (pos)
  9096. (mapc (lambda (o)
  9097. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9098. (setq pos (overlay-start o))))
  9099. (overlays-in (point-min) (point-max)))
  9100. (cond (pos (goto-char pos))
  9101. ;; If the currently clocked entry is not in the agenda
  9102. ;; buffer, we visit it in another window:
  9103. ((bound-and-true-p org-clock-current-task)
  9104. (org-switch-to-buffer-other-window (org-clock-goto)))
  9105. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9106. (defun org-agenda-diary-entry-in-org-file ()
  9107. "Make a diary entry in the file `org-agenda-diary-file'."
  9108. (let (d1 d2 char (text "") dp1 dp2)
  9109. (if (equal (buffer-name) "*Calendar*")
  9110. (setq d1 (calendar-cursor-to-date t)
  9111. d2 (car calendar-mark-ring))
  9112. (setq dp1 (get-text-property (point-at-bol) 'day))
  9113. (unless dp1 (user-error "No date defined in current line"))
  9114. (setq d1 (calendar-gregorian-from-absolute dp1)
  9115. d2 (and (ignore-errors (mark))
  9116. (save-excursion
  9117. (goto-char (mark))
  9118. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9119. (calendar-gregorian-from-absolute dp2))))
  9120. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9121. (setq char (read-char-exclusive))
  9122. (cond
  9123. ((equal char ?d)
  9124. (setq text (read-string "Day entry: "))
  9125. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9126. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9127. ((equal char ?a)
  9128. (setq d1 (list (car d1) (nth 1 d1)
  9129. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9130. (nth 2 d1))))
  9131. (setq text (read-string "Anniversary (use %d to show years): "))
  9132. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9133. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9134. ((equal char ?b)
  9135. (setq text (read-string "Block entry: "))
  9136. (unless (and d1 d2 (not (equal d1 d2)))
  9137. (user-error "No block of days selected"))
  9138. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9139. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9140. ((equal char ?j)
  9141. (org-switch-to-buffer-other-window
  9142. (find-file-noselect org-agenda-diary-file))
  9143. (require 'org-datetree)
  9144. (org-datetree-find-date-create d1)
  9145. (org-reveal t))
  9146. (t (user-error "Invalid selection character `%c'" char)))))
  9147. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9148. "Where in `org-agenda-diary-file' should new entries be added?
  9149. Valid values:
  9150. date-tree in the date tree, as first child of the date
  9151. date-tree-last in the date tree, as last child of the date
  9152. top-level as top-level entries at the end of the file."
  9153. :group 'org-agenda
  9154. :type '(choice
  9155. (const :tag "first in a date tree" date-tree)
  9156. (const :tag "last in a date tree" date-tree-last)
  9157. (const :tag "as top level at end of file" top-level)))
  9158. (defcustom org-agenda-insert-diary-extract-time nil
  9159. "Non-nil means extract any time specification from the diary entry."
  9160. :group 'org-agenda
  9161. :version "24.1"
  9162. :type 'boolean)
  9163. (defcustom org-agenda-bulk-mark-char ">"
  9164. "A single-character string to be used as the bulk mark."
  9165. :group 'org-agenda
  9166. :version "24.1"
  9167. :type 'string)
  9168. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9169. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9170. If TEXT is not empty, it will become the headline of the new entry, and
  9171. the resulting entry will not be shown. When TEXT is empty, switch to
  9172. `org-agenda-diary-file' and let the user finish the entry there."
  9173. (let ((cw (current-window-configuration)))
  9174. (org-switch-to-buffer-other-window
  9175. (find-file-noselect org-agenda-diary-file))
  9176. (widen)
  9177. (goto-char (point-min))
  9178. (cl-case type
  9179. (anniversary
  9180. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9181. (progn
  9182. (or (org-at-heading-p t)
  9183. (progn
  9184. (outline-next-heading)
  9185. (insert "* Anniversaries\n\n")
  9186. (beginning-of-line -1)))))
  9187. (outline-next-heading)
  9188. (org-back-over-empty-lines)
  9189. (backward-char 1)
  9190. (insert "\n")
  9191. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9192. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9193. (day
  9194. (let ((org-prefix-has-time t)
  9195. (org-agenda-time-leading-zero t)
  9196. fmt time time2)
  9197. (when org-agenda-insert-diary-extract-time
  9198. ;; Use org-agenda-format-item to parse text for a time-range and
  9199. ;; remove it. FIXME: This is a hack, we should refactor
  9200. ;; that function to make time extraction available separately
  9201. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9202. time (get-text-property 0 'time fmt)
  9203. time2 (if (> (length time) 0)
  9204. ;; split-string removes trailing ...... if
  9205. ;; no end time given. First space
  9206. ;; separates time from date.
  9207. (concat " " (car (split-string time "\\.")))
  9208. nil)
  9209. text (get-text-property 0 'txt fmt)))
  9210. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9211. (org-agenda-insert-diary-as-top-level text)
  9212. (require 'org-datetree)
  9213. (org-datetree-find-date-create d1)
  9214. (org-agenda-insert-diary-make-new-entry text))
  9215. (org-insert-time-stamp (org-time-from-absolute
  9216. (calendar-absolute-from-gregorian d1))
  9217. nil nil nil nil time2))
  9218. (end-of-line 0))
  9219. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9220. ;; otherwise the indentation gets confused by the
  9221. ;; special meaning of 'block
  9222. (when (> (calendar-absolute-from-gregorian d1)
  9223. (calendar-absolute-from-gregorian d2))
  9224. (setq d1 (prog1 d2 (setq d2 d1))))
  9225. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9226. (org-agenda-insert-diary-as-top-level text)
  9227. (require 'org-datetree)
  9228. (org-datetree-find-date-create d1)
  9229. (org-agenda-insert-diary-make-new-entry text))
  9230. (org-insert-time-stamp (org-time-from-absolute
  9231. (calendar-absolute-from-gregorian d1)))
  9232. (insert "--")
  9233. (org-insert-time-stamp (org-time-from-absolute
  9234. (calendar-absolute-from-gregorian d2)))
  9235. (end-of-line 0)))
  9236. (if (string-match "\\S-" text)
  9237. (progn
  9238. (set-window-configuration cw)
  9239. (message "%s entry added to %s"
  9240. (capitalize (symbol-name type))
  9241. (abbreviate-file-name org-agenda-diary-file)))
  9242. (org-reveal t)
  9243. (message "Please finish entry here"))))
  9244. (defun org-agenda-insert-diary-as-top-level (text)
  9245. "Make new entry as a top-level entry at the end of the file.
  9246. Add TEXT as headline, and position the cursor in the second line so that
  9247. a timestamp can be added there."
  9248. (widen)
  9249. (goto-char (point-max))
  9250. (unless (bolp) (insert "\n"))
  9251. (org-insert-heading nil t t)
  9252. (insert text)
  9253. (org-end-of-meta-data)
  9254. (unless (bolp) (insert "\n"))
  9255. (when org-adapt-indentation (indent-to-column 2)))
  9256. (defun org-agenda-insert-diary-make-new-entry (text)
  9257. "Make a new entry with TEXT as a child of the current subtree.
  9258. Position the point in the heading's first body line so that
  9259. a timestamp can be added there."
  9260. (cond
  9261. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9262. (end-of-line)
  9263. (org-insert-heading '(4) t)
  9264. (org-do-demote))
  9265. (t
  9266. (outline-next-heading)
  9267. (org-back-over-empty-lines)
  9268. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9269. (org-insert-heading nil t)
  9270. (org-do-demote)))
  9271. (let ((col (current-column)))
  9272. (insert text)
  9273. (org-end-of-meta-data)
  9274. ;; Ensure point is left on a blank line, at proper indentation.
  9275. (unless (bolp) (insert "\n"))
  9276. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9277. (when org-adapt-indentation (indent-to-column col)))
  9278. (org-show-set-visibility 'lineage))
  9279. (defun org-agenda-diary-entry ()
  9280. "Make a diary entry, like the `i' command from the calendar.
  9281. All the standard commands work: block, weekly etc.
  9282. When `org-agenda-diary-file' points to a file,
  9283. `org-agenda-diary-entry-in-org-file' is called instead to create
  9284. entries in that Org file."
  9285. (interactive)
  9286. (if (not (eq org-agenda-diary-file 'diary-file))
  9287. (org-agenda-diary-entry-in-org-file)
  9288. (require 'diary-lib)
  9289. (let* ((char (read-char-exclusive
  9290. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9291. [a]nniversary [b]lock [c]yclic"))
  9292. (cmd (cdr (assoc char
  9293. '((?d . diary-insert-entry)
  9294. (?w . diary-insert-weekly-entry)
  9295. (?m . diary-insert-monthly-entry)
  9296. (?y . diary-insert-yearly-entry)
  9297. (?a . diary-insert-anniversary-entry)
  9298. (?b . diary-insert-block-entry)
  9299. (?c . diary-insert-cyclic-entry)))))
  9300. (oldf (symbol-function 'calendar-cursor-to-date))
  9301. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9302. (point (point))
  9303. (mark (or (mark t) (point))))
  9304. (unless cmd
  9305. (user-error "No command associated with <%c>" char))
  9306. (unless (and (get-text-property point 'day)
  9307. (or (not (equal ?b char))
  9308. (get-text-property mark 'day)))
  9309. (user-error "Don't know which date to use for diary entry"))
  9310. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9311. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9312. (let ((calendar-mark-ring
  9313. (list (calendar-gregorian-from-absolute
  9314. (or (get-text-property mark 'day)
  9315. (get-text-property point 'day))))))
  9316. (unwind-protect
  9317. (progn
  9318. (fset 'calendar-cursor-to-date
  9319. (lambda (&optional error dummy)
  9320. (calendar-gregorian-from-absolute
  9321. (get-text-property point 'day))))
  9322. (call-interactively cmd))
  9323. (fset 'calendar-cursor-to-date oldf))))))
  9324. (defun org-agenda-execute-calendar-command (cmd)
  9325. "Execute a calendar command from the agenda with date from cursor."
  9326. (org-agenda-check-type t 'agenda)
  9327. (require 'diary-lib)
  9328. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9329. (user-error "Don't know which date to use for the calendar command"))
  9330. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9331. (point (point))
  9332. (date (calendar-gregorian-from-absolute
  9333. (get-text-property point 'day)))
  9334. ;; the following 2 vars are needed in the calendar
  9335. (displayed-month (car date))
  9336. (displayed-year (nth 2 date)))
  9337. (unwind-protect
  9338. (progn
  9339. (fset 'calendar-cursor-to-date
  9340. (lambda (&optional error dummy)
  9341. (calendar-gregorian-from-absolute
  9342. (get-text-property point 'day))))
  9343. (call-interactively cmd))
  9344. (fset 'calendar-cursor-to-date oldf))))
  9345. (defun org-agenda-phases-of-moon ()
  9346. "Display the phases of the moon for the 3 months around the cursor date."
  9347. (interactive)
  9348. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9349. (defun org-agenda-holidays ()
  9350. "Display the holidays for the 3 months around the cursor date."
  9351. (interactive)
  9352. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9353. (defvar calendar-longitude) ; defined in calendar.el
  9354. (defvar calendar-latitude) ; defined in calendar.el
  9355. (defvar calendar-location-name) ; defined in calendar.el
  9356. (defun org-agenda-sunrise-sunset (arg)
  9357. "Display sunrise and sunset for the cursor date.
  9358. Latitude and longitude can be specified with the variables
  9359. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9360. argument, latitude and longitude will be prompted for."
  9361. (interactive "P")
  9362. (require 'solar)
  9363. (let ((calendar-longitude (if arg nil calendar-longitude))
  9364. (calendar-latitude (if arg nil calendar-latitude))
  9365. (calendar-location-name
  9366. (if arg "the given coordinates" calendar-location-name)))
  9367. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9368. (defun org-agenda-goto-calendar ()
  9369. "Open the Emacs calendar with the date at the cursor."
  9370. (interactive)
  9371. (org-agenda-check-type t 'agenda)
  9372. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9373. (user-error "Don't know which date to open in calendar")))
  9374. (date (calendar-gregorian-from-absolute day))
  9375. (calendar-move-hook nil)
  9376. (calendar-view-holidays-initially-flag nil)
  9377. (calendar-view-diary-initially-flag nil))
  9378. (calendar)
  9379. (calendar-goto-date date)))
  9380. ;;;###autoload
  9381. (defun org-calendar-goto-agenda ()
  9382. "Compute the Org agenda for the calendar date displayed at the cursor.
  9383. This is a command that has to be installed in `calendar-mode-map'."
  9384. (interactive)
  9385. ;; Temporarily disable sticky agenda since user clearly wants to
  9386. ;; refresh view anyway.
  9387. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9388. (org-agenda-sticky nil))
  9389. (org-agenda-list nil (calendar-absolute-from-gregorian
  9390. (calendar-cursor-to-date))
  9391. nil)))
  9392. (defun org-agenda-convert-date ()
  9393. (interactive)
  9394. (org-agenda-check-type t 'agenda)
  9395. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9396. date s)
  9397. (unless day
  9398. (user-error "Don't know which date to convert"))
  9399. (setq date (calendar-gregorian-from-absolute day))
  9400. (setq s (concat
  9401. "Gregorian: " (calendar-date-string date) "\n"
  9402. "ISO: " (calendar-iso-date-string date) "\n"
  9403. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9404. "Julian: " (calendar-julian-date-string date) "\n"
  9405. "Astron. JD: " (calendar-astro-date-string date)
  9406. " (Julian date number at noon UTC)\n"
  9407. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9408. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9409. "French: " (calendar-french-date-string date) "\n"
  9410. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9411. "Mayan: " (calendar-mayan-date-string date) "\n"
  9412. "Coptic: " (calendar-coptic-date-string date) "\n"
  9413. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9414. "Persian: " (calendar-persian-date-string date) "\n"
  9415. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9416. (with-output-to-temp-buffer "*Dates*"
  9417. (princ s))
  9418. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9419. ;;; Bulk commands
  9420. (defun org-agenda-bulk-marked-p ()
  9421. "Non-nil when current entry is marked for bulk action."
  9422. (eq (get-char-property (point-at-bol) 'type)
  9423. 'org-marked-entry-overlay))
  9424. (defun org-agenda-bulk-mark (&optional arg)
  9425. "Mark entries for future bulk action.
  9426. When ARG is nil or one and region is not active then mark the
  9427. entry at point.
  9428. When ARG is nil or one and region is active then mark the entries
  9429. in the region.
  9430. When ARG is greater than one mark ARG lines."
  9431. (interactive "p")
  9432. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9433. (setq arg (count-lines (region-beginning) (region-end)))
  9434. (goto-char (region-beginning))
  9435. (deactivate-mark))
  9436. (dotimes (i (or arg 1))
  9437. (unless (org-get-at-bol 'org-agenda-diary-link)
  9438. (let* ((m (org-get-at-bol 'org-hd-marker))
  9439. ov)
  9440. (unless (org-agenda-bulk-marked-p)
  9441. (unless m (user-error "Nothing to mark at point"))
  9442. (push m org-agenda-bulk-marked-entries)
  9443. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9444. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9445. (org-get-todo-face "TODO")
  9446. 'evaporate)
  9447. (overlay-put ov 'type 'org-marked-entry-overlay))
  9448. (end-of-line 1)
  9449. (or (ignore-errors
  9450. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9451. (beginning-of-line 2))
  9452. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9453. (beginning-of-line 2)))))
  9454. (message "%d entries marked for bulk action"
  9455. (length org-agenda-bulk-marked-entries)))
  9456. (defun org-agenda-bulk-mark-all ()
  9457. "Mark all entries for future agenda bulk action."
  9458. (interactive)
  9459. (org-agenda-bulk-mark-regexp "."))
  9460. (defun org-agenda-bulk-mark-regexp (regexp)
  9461. "Mark entries matching REGEXP for future agenda bulk action."
  9462. (interactive "sMark entries matching regexp: ")
  9463. (let ((entries-marked 0) txt-at-point)
  9464. (save-excursion
  9465. (goto-char (point-min))
  9466. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9467. (while (and (re-search-forward regexp nil t)
  9468. (setq txt-at-point (get-text-property (point) 'txt)))
  9469. (if (get-char-property (point) 'invisible)
  9470. (beginning-of-line 2)
  9471. (when (string-match regexp txt-at-point)
  9472. (setq entries-marked (1+ entries-marked))
  9473. (call-interactively 'org-agenda-bulk-mark)))))
  9474. (unless entries-marked
  9475. (message "No entry matching this regexp."))))
  9476. (defun org-agenda-bulk-unmark (&optional arg)
  9477. "Unmark the entry at point for future bulk action."
  9478. (interactive "P")
  9479. (if arg
  9480. (org-agenda-bulk-unmark-all)
  9481. (cond ((org-agenda-bulk-marked-p)
  9482. (org-agenda-bulk-remove-overlays
  9483. (point-at-bol) (+ 2 (point-at-bol)))
  9484. (setq org-agenda-bulk-marked-entries
  9485. (delete (org-get-at-bol 'org-hd-marker)
  9486. org-agenda-bulk-marked-entries))
  9487. (end-of-line 1)
  9488. (or (ignore-errors
  9489. (goto-char (next-single-property-change (point) 'txt)))
  9490. (beginning-of-line 2))
  9491. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9492. (beginning-of-line 2))
  9493. (message "%d entries left marked for bulk action"
  9494. (length org-agenda-bulk-marked-entries)))
  9495. (t (message "No entry to unmark here")))))
  9496. (defun org-agenda-bulk-toggle-all ()
  9497. "Toggle all marks for bulk action."
  9498. (interactive)
  9499. (save-excursion
  9500. (goto-char (point-min))
  9501. (while (ignore-errors
  9502. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9503. (org-agenda-bulk-toggle))))
  9504. (defun org-agenda-bulk-toggle ()
  9505. "Toggle the mark at point for bulk action."
  9506. (interactive)
  9507. (if (org-agenda-bulk-marked-p)
  9508. (org-agenda-bulk-unmark)
  9509. (org-agenda-bulk-mark)))
  9510. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9511. "Remove the mark overlays between BEG and END in the agenda buffer.
  9512. BEG and END default to the buffer limits.
  9513. This only removes the overlays, it does not remove the markers
  9514. from the list in `org-agenda-bulk-marked-entries'."
  9515. (interactive)
  9516. (mapc (lambda (ov)
  9517. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9518. (delete-overlay ov)))
  9519. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9520. (defun org-agenda-bulk-unmark-all ()
  9521. "Remove all marks in the agenda buffer.
  9522. This will remove the markers and the overlays."
  9523. (interactive)
  9524. (if (null org-agenda-bulk-marked-entries)
  9525. (message "No entry to unmark")
  9526. (setq org-agenda-bulk-marked-entries nil)
  9527. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9528. (defcustom org-agenda-persistent-marks nil
  9529. "Non-nil means marked items will stay marked after a bulk action.
  9530. You can toggle this interactively by typing `p' when prompted for a
  9531. bulk action."
  9532. :group 'org-agenda
  9533. :version "24.1"
  9534. :type 'boolean)
  9535. (defcustom org-agenda-loop-over-headlines-in-active-region nil
  9536. "Shall some commands act upon headlines in the active region?
  9537. When set to t, some commands will be performed in all headlines
  9538. within the active region.
  9539. When set to `start-level', some commands will be performed in all
  9540. headlines within the active region, provided that these headlines
  9541. are of the same level than the first one.
  9542. When set to a regular expression, those commands will be
  9543. performed on the matching headlines within the active region.
  9544. The list of commands is: `org-agenda-schedule',
  9545. `org-agenda-deadline', `org-agenda-date-prompt',
  9546. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9547. See `org-loop-over-headlines-in-active-region' for the equivalent
  9548. option for Org buffers."
  9549. :type '(choice (const :tag "Don't loop" nil)
  9550. (const :tag "All headlines in active region" t)
  9551. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9552. (regexp :tag "Regular expression matcher"))
  9553. :package-version '(Org . "9.4")
  9554. :group 'org-agenda)
  9555. (defun org-agenda-bulk-action (&optional arg)
  9556. "Execute an remote-editing action on all marked entries.
  9557. The prefix arg is passed through to the command if possible."
  9558. (interactive "P")
  9559. ;; When there is no mark, act on the agenda entry at point.
  9560. (if (not org-agenda-bulk-marked-entries)
  9561. (save-excursion (org-agenda-bulk-mark)))
  9562. (dolist (m org-agenda-bulk-marked-entries)
  9563. (unless (and (markerp m)
  9564. (marker-buffer m)
  9565. (buffer-live-p (marker-buffer m))
  9566. (marker-position m))
  9567. (user-error "Marker %s for bulk command is invalid" m)))
  9568. ;; Prompt for the bulk command.
  9569. (org-unlogged-message
  9570. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9571. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9572. "[S]catter [f]unction "
  9573. (and org-agenda-bulk-custom-functions
  9574. (format " Custom: [%s]"
  9575. (mapconcat (lambda (f) (char-to-string (car f)))
  9576. org-agenda-bulk-custom-functions
  9577. "")))))
  9578. (catch 'exit
  9579. (let* ((org-log-refile (if org-log-refile 'time nil))
  9580. (entries (reverse org-agenda-bulk-marked-entries))
  9581. (org-overriding-default-time
  9582. (and (get-text-property (point) 'org-agenda-date-header)
  9583. (org-get-cursor-date)))
  9584. redo-at-end
  9585. cmd)
  9586. (pcase (read-char-exclusive)
  9587. (?p
  9588. (let ((org-agenda-persistent-marks
  9589. (not org-agenda-persistent-marks)))
  9590. (org-agenda-bulk-action)
  9591. (throw 'exit nil)))
  9592. (?$
  9593. (setq cmd #'org-agenda-archive))
  9594. (?A
  9595. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9596. ((or ?r ?w)
  9597. (let ((refile-location
  9598. (org-refile-get-location
  9599. "Refile to"
  9600. (marker-buffer (car entries))
  9601. org-refile-allow-creating-parent-nodes)))
  9602. (when (nth 3 refile-location)
  9603. (setcar (nthcdr 3 refile-location)
  9604. (move-marker
  9605. (make-marker)
  9606. (nth 3 refile-location)
  9607. (or (get-file-buffer (nth 1 refile-location))
  9608. (find-buffer-visiting (nth 1 refile-location))
  9609. (error "This should not happen")))))
  9610. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9611. (setq redo-at-end t)))
  9612. (?t
  9613. (let ((state (completing-read
  9614. "Todo state: "
  9615. (with-current-buffer (marker-buffer (car entries))
  9616. (mapcar #'list org-todo-keywords-1)))))
  9617. (setq cmd `(lambda ()
  9618. (let ((org-inhibit-blocking t)
  9619. (org-inhibit-logging 'note))
  9620. (org-agenda-todo ,state))))))
  9621. ((and (or ?- ?+) action)
  9622. (let ((tag (completing-read
  9623. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9624. (with-current-buffer (marker-buffer (car entries))
  9625. (delq nil
  9626. (mapcar (lambda (x) (and (stringp (car x)) x))
  9627. org-current-tag-alist))))))
  9628. (setq cmd
  9629. `(lambda ()
  9630. (org-agenda-set-tags ,tag
  9631. ,(if (eq action ?+) ''on ''off))))))
  9632. ((and (or ?s ?d) c)
  9633. (let* ((schedule? (eq c ?s))
  9634. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9635. (time
  9636. (and (not arg)
  9637. (let ((new (org-read-date
  9638. nil nil nil prompt org-overriding-default-time)))
  9639. ;; A "double plus" answer applies to every
  9640. ;; scheduled time. Do not turn it into
  9641. ;; a fixed date yet.
  9642. (if (string-match-p "\\`[ \t]*\\+\\+"
  9643. org-read-date-final-answer)
  9644. org-read-date-final-answer
  9645. new)))))
  9646. ;; Make sure to not prompt for a note when bulk
  9647. ;; rescheduling/resetting deadline as Org cannot cope with
  9648. ;; simultaneous notes. Besides, it could be annoying
  9649. ;; depending on the number of marked items.
  9650. (setq cmd
  9651. (if schedule?
  9652. `(lambda ()
  9653. (let ((org-log-reschedule
  9654. (and org-log-reschedule 'time)))
  9655. (org-agenda-schedule arg ,time)))
  9656. `(lambda ()
  9657. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9658. (org-agenda-deadline arg ,time)))))))
  9659. (?S
  9660. (unless (org-agenda-check-type nil 'agenda 'todo)
  9661. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9662. (let ((days (read-number
  9663. (format "Scatter tasks across how many %sdays: "
  9664. (if arg "week" ""))
  9665. 7)))
  9666. (setq cmd
  9667. `(lambda ()
  9668. (let ((distance (1+ (random ,days))))
  9669. (when arg
  9670. (let ((dist distance)
  9671. (day-of-week
  9672. (calendar-day-of-week
  9673. (calendar-gregorian-from-absolute (org-today)))))
  9674. (dotimes (i (1+ dist))
  9675. (while (member day-of-week org-agenda-weekend-days)
  9676. (cl-incf distance)
  9677. (cl-incf day-of-week)
  9678. (when (= day-of-week 7)
  9679. (setq day-of-week 0)))
  9680. (cl-incf day-of-week)
  9681. (when (= day-of-week 7)
  9682. (setq day-of-week 0)))))
  9683. ;; Silently fail when try to replan a sexp entry.
  9684. (ignore-errors
  9685. (let* ((date (calendar-gregorian-from-absolute
  9686. (+ (org-today) distance)))
  9687. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9688. (nth 2 date))))
  9689. (org-agenda-schedule nil time))))))))
  9690. (?f
  9691. (setq cmd
  9692. (intern
  9693. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9694. (action
  9695. (pcase (assoc action org-agenda-bulk-custom-functions)
  9696. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9697. (_ (user-error "Invalid bulk action: %c" action)))))
  9698. ;; Sort the markers, to make sure that parents are handled
  9699. ;; before children.
  9700. (setq entries (sort entries
  9701. (lambda (a b)
  9702. (cond
  9703. ((eq (marker-buffer a) (marker-buffer b))
  9704. (< (marker-position a) (marker-position b)))
  9705. (t
  9706. (string< (buffer-name (marker-buffer a))
  9707. (buffer-name (marker-buffer b))))))))
  9708. ;; Now loop over all markers and apply CMD.
  9709. (let ((processed 0)
  9710. (skipped 0))
  9711. (dolist (e entries)
  9712. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9713. (if (not pos)
  9714. (progn (message "Skipping removed entry at %s" e)
  9715. (cl-incf skipped))
  9716. (goto-char pos)
  9717. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9718. ;; `post-command-hook' is not run yet. We make sure any
  9719. ;; pending log note is processed.
  9720. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9721. (memq 'org-add-log-note post-command-hook))
  9722. (org-add-log-note))
  9723. (cl-incf processed))))
  9724. (when redo-at-end (org-agenda-redo))
  9725. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9726. (message "Acted on %d entries%s%s"
  9727. processed
  9728. (if (= skipped 0)
  9729. ""
  9730. (format ", skipped %d (disappeared before their turn)"
  9731. skipped))
  9732. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9733. (defun org-agenda-capture (&optional with-time)
  9734. "Call `org-capture' with the date at point.
  9735. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9736. current HH:MM time."
  9737. (interactive "P")
  9738. (if (not (eq major-mode 'org-agenda-mode))
  9739. (user-error "You cannot do this outside of agenda buffers")
  9740. (let ((org-overriding-default-time
  9741. (org-get-cursor-date (equal with-time 1))))
  9742. (call-interactively 'org-capture))))
  9743. ;;; Dragging agenda lines forward/backward
  9744. (defun org-agenda-reapply-filters ()
  9745. "Re-apply all agenda filters."
  9746. (mapcar
  9747. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9748. `((,org-agenda-tag-filter tag)
  9749. (,org-agenda-category-filter category)
  9750. (,org-agenda-regexp-filter regexp)
  9751. (,org-agenda-effort-filter effort)
  9752. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9753. (,(get 'org-agenda-category-filter :preset-filter) category)
  9754. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9755. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9756. (defun org-agenda-drag-line-forward (arg &optional backward)
  9757. "Drag an agenda line forward by ARG lines.
  9758. When the optional argument `backward' is non-nil, move backward."
  9759. (interactive "p")
  9760. (let ((inhibit-read-only t) lst line)
  9761. (if (or (not (get-text-property (point) 'txt))
  9762. (save-excursion
  9763. (dotimes (n arg)
  9764. (move-beginning-of-line (if backward 0 2))
  9765. (push (not (get-text-property (point) 'txt)) lst))
  9766. (delq nil lst)))
  9767. (message "Cannot move line forward")
  9768. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9769. (move-beginning-of-line 1)
  9770. (setq line (buffer-substring (point) end))
  9771. (delete-region (point) end)
  9772. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9773. (insert line)
  9774. (org-agenda-reapply-filters)
  9775. (org-agenda-mark-clocking-task)
  9776. (move-beginning-of-line 0)))))
  9777. (defun org-agenda-drag-line-backward (arg)
  9778. "Drag an agenda line backward by ARG lines."
  9779. (interactive "p")
  9780. (org-agenda-drag-line-forward arg t))
  9781. ;;; Flagging notes
  9782. (defun org-agenda-show-the-flagging-note ()
  9783. "Display the flagging note in the other window.
  9784. When called a second time in direct sequence, offer to remove the FLAGGING
  9785. tag and (if present) the flagging note."
  9786. (interactive)
  9787. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9788. (win (selected-window))
  9789. note heading newhead)
  9790. (unless hdmarker
  9791. (user-error "No linked entry at point"))
  9792. (if (and (eq this-command last-command)
  9793. (y-or-n-p "Unflag and remove any flagging note? "))
  9794. (progn
  9795. (org-agenda-remove-flag hdmarker)
  9796. (let ((win (get-buffer-window "*Flagging Note*")))
  9797. (and win (delete-window win)))
  9798. (message "Entry unflagged"))
  9799. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9800. (unless note
  9801. (user-error "No flagging note"))
  9802. (org-kill-new note)
  9803. (org-switch-to-buffer-other-window "*Flagging Note*")
  9804. (erase-buffer)
  9805. (insert note)
  9806. (goto-char (point-min))
  9807. (while (re-search-forward "\\\\n" nil t)
  9808. (replace-match "\n" t t))
  9809. (goto-char (point-min))
  9810. (select-window win)
  9811. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9812. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9813. tag and note")))))
  9814. (defun org-agenda-remove-flag (marker)
  9815. "Remove the FLAGGED tag and any flagging note in the entry."
  9816. (let (newhead)
  9817. (org-with-point-at marker
  9818. (org-toggle-tag "FLAGGED" 'off)
  9819. (org-entry-delete nil "THEFLAGGINGNOTE")
  9820. (setq newhead (org-get-heading)))
  9821. (org-agenda-change-all-lines newhead marker)
  9822. (message "Entry unflagged")))
  9823. (defun org-agenda-get-any-marker (&optional pos)
  9824. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9825. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9826. ;;; Appointment reminders
  9827. (defvar appt-time-msg-list) ; defined in appt.el
  9828. ;;;###autoload
  9829. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9830. "Activate appointments found in `org-agenda-files'.
  9831. With a `\\[universal-argument]' prefix, refresh the list of \
  9832. appointments.
  9833. If FILTER is t, interactively prompt the user for a regular
  9834. expression, and filter out entries that don't match it.
  9835. If FILTER is a string, use this string as a regular expression
  9836. for filtering entries out.
  9837. If FILTER is a function, filter out entries against which
  9838. calling the function returns nil. This function takes one
  9839. argument: an entry from `org-agenda-get-day-entries'.
  9840. FILTER can also be an alist with the car of each cell being
  9841. either `headline' or `category'. For example:
  9842. \\='((headline \"IMPORTANT\")
  9843. (category \"Work\"))
  9844. will only add headlines containing IMPORTANT or headlines
  9845. belonging to the \"Work\" category.
  9846. ARGS are symbols indicating what kind of entries to consider.
  9847. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9848. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9849. and :timestamp entries. See the docstring of `org-diary' for
  9850. details and examples.
  9851. If an entry has a APPT_WARNTIME property, its value will be used
  9852. to override `appt-message-warning-time'."
  9853. (interactive "P")
  9854. (when refresh (setq appt-time-msg-list nil))
  9855. (when (eq filter t)
  9856. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9857. (let* ((cnt 0) ; count added events
  9858. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9859. (org-agenda-new-buffers nil)
  9860. (org-deadline-warning-days 0)
  9861. ;; Do not use `org-today' here because appt only takes
  9862. ;; time and without date as argument, so it may pass wrong
  9863. ;; information otherwise
  9864. (today (org-date-to-gregorian
  9865. (time-to-days nil)))
  9866. (org-agenda-restrict nil)
  9867. (files (org-agenda-files 'unrestricted)) entries file
  9868. (org-agenda-buffer nil))
  9869. ;; Get all entries which may contain an appt
  9870. (org-agenda-prepare-buffers files)
  9871. (while (setq file (pop files))
  9872. (setq entries
  9873. (delq nil
  9874. (append entries
  9875. (apply 'org-agenda-get-day-entries
  9876. file today scope)))))
  9877. ;; Map through entries and find if we should filter them out
  9878. (mapc
  9879. (lambda (x)
  9880. (let* ((evt (org-trim
  9881. (replace-regexp-in-string
  9882. org-link-bracket-re "\\2"
  9883. (or (get-text-property 1 'txt x) ""))))
  9884. (cat (get-text-property (1- (length x)) 'org-category x))
  9885. (tod (get-text-property 1 'time-of-day x))
  9886. (ok (or (null filter)
  9887. (and (stringp filter) (string-match filter evt))
  9888. (and (functionp filter) (funcall filter x))
  9889. (and (listp filter)
  9890. (let ((cat-filter (cadr (assq 'category filter)))
  9891. (evt-filter (cadr (assq 'headline filter))))
  9892. (or (and (stringp cat-filter)
  9893. (string-match cat-filter cat))
  9894. (and (stringp evt-filter)
  9895. (string-match evt-filter evt)))))))
  9896. (wrn (get-text-property 1 'warntime x)))
  9897. ;; FIXME: Shall we remove text-properties for the appt text?
  9898. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9899. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9900. (setq tod (concat "00" (number-to-string tod)))
  9901. (setq tod (when (string-match
  9902. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9903. (concat (match-string 1 tod) ":"
  9904. (match-string 2 tod))))
  9905. (when (appt-add tod evt wrn)
  9906. (setq cnt (1+ cnt))))))
  9907. entries)
  9908. (org-release-buffers org-agenda-new-buffers)
  9909. (if (eq cnt 0)
  9910. (message "No event to add")
  9911. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9912. (defun org-agenda-today-p (date)
  9913. "Non-nil when DATE means today.
  9914. DATE is either a list of the form (month day year) or a number of
  9915. days as returned by `calendar-absolute-from-gregorian' or
  9916. `org-today'. This function considers `org-extend-today-until'
  9917. when defining today."
  9918. (eq (org-today)
  9919. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9920. (defun org-agenda-todo-yesterday (&optional arg)
  9921. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9922. (interactive "P")
  9923. (let* ((org-use-effective-time t)
  9924. (hour (nth 2 (decode-time (org-current-time))))
  9925. (org-extend-today-until (1+ hour)))
  9926. (org-agenda-todo arg)))
  9927. (defun org-agenda-ctrl-c-ctrl-c ()
  9928. "Set tags in agenda buffer."
  9929. (interactive)
  9930. (org-agenda-set-tags))
  9931. (provide 'org-agenda)
  9932. ;;; org-agenda.el ends here