org-agenda.el 414 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2021 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'cl-lib)
  42. (require 'ol)
  43. (require 'org)
  44. (require 'org-macs)
  45. (require 'org-refile)
  46. (declare-function diary-add-to-list "diary-lib"
  47. (date string specifier &optional marker globcolor literal))
  48. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  49. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  50. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  51. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  52. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  54. (declare-function calendar-french-date-string "cal-french" (&optional date))
  55. (declare-function calendar-goto-date "cal-move" (date))
  56. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  57. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  58. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  59. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  60. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  61. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  62. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  63. (declare-function calendar-check-holidays "holidays" (date))
  64. (declare-function org-columns-remove-overlays "org-colview" ())
  65. (declare-function org-datetree-find-date-create "org-datetree"
  66. (date &optional keep-restriction))
  67. (declare-function org-columns-quit "org-colview" ())
  68. (declare-function diary-date-display-form "diary-lib" (&optional type))
  69. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  70. (declare-function org-habit-insert-consistency-graphs
  71. "org-habit" (&optional line))
  72. (declare-function org-is-habit-p "org-habit" (&optional pom))
  73. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  74. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  79. (defvar calendar-mode-map)
  80. (defvar org-clock-current-task)
  81. (defvar org-current-tag-alist)
  82. (defvar org-mobile-force-id-on-agenda-items)
  83. (defvar org-habit-show-habits)
  84. (defvar org-habit-show-habits-only-for-today)
  85. (defvar org-habit-show-all-today)
  86. (defvar org-habit-scheduled-past-days)
  87. ;; Defined somewhere in this file, but used before definition.
  88. (defvar org-agenda-buffer-name "*Org Agenda*")
  89. (defvar org-agenda-overriding-header nil)
  90. (defvar org-agenda-title-append nil)
  91. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  92. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  93. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  94. (defvar org-agenda-undo-list nil
  95. "List of undoable operations in the agenda since last refresh.")
  96. (defvar org-agenda-pending-undo-list nil
  97. "In a series of undo commands, this is the list of remaining undo items.")
  98. (defcustom org-agenda-confirm-kill 1
  99. "When set, remote killing from the agenda buffer needs confirmation.
  100. When t, a confirmation is always needed. When a number N, confirmation is
  101. only needed when the text to be killed contains more than N non-white lines."
  102. :group 'org-agenda
  103. :type '(choice
  104. (const :tag "Never" nil)
  105. (const :tag "Always" t)
  106. (integer :tag "When more than N lines")))
  107. (defcustom org-agenda-compact-blocks nil
  108. "Non-nil means make the block agenda more compact.
  109. This is done globally by leaving out lines like the agenda span
  110. name and week number or the separator lines."
  111. :group 'org-agenda
  112. :type 'boolean)
  113. (defcustom org-agenda-block-separator ?=
  114. "The separator between blocks in the agenda.
  115. If this is a string, it will be used as the separator, with a newline added.
  116. If it is a character, it will be repeated to fill the window width.
  117. If nil the separator is disabled. In `org-agenda-custom-commands' this
  118. addresses the separator between the current and the previous block."
  119. :group 'org-agenda
  120. :type '(choice
  121. (const :tag "Disabled" nil)
  122. (character)
  123. (string)))
  124. (defgroup org-agenda-export nil
  125. "Options concerning exporting agenda views in Org mode."
  126. :tag "Org Agenda Export"
  127. :group 'org-agenda)
  128. (defcustom org-agenda-with-colors t
  129. "Non-nil means use colors in agenda views."
  130. :group 'org-agenda-export
  131. :type 'boolean)
  132. (defcustom org-agenda-exporter-settings nil
  133. "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 is 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-filter-hook nil
  900. "Hook run just after filtering with `org-agenda-filter'."
  901. :group 'org-agenda-startup
  902. :package-version '(Org . "9.4")
  903. :type 'hook)
  904. (defcustom org-agenda-mouse-1-follows-link nil
  905. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  906. A longer mouse click will still set point. Needs to be set
  907. before org.el is loaded."
  908. :group 'org-agenda-startup
  909. :type 'boolean)
  910. (defcustom org-agenda-start-with-follow-mode nil
  911. "The initial value of follow mode in a newly created agenda window."
  912. :group 'org-agenda-startup
  913. :type 'boolean)
  914. (defcustom org-agenda-follow-indirect nil
  915. "Non-nil means `org-agenda-follow-mode' displays only the
  916. current item's tree, in an indirect buffer."
  917. :group 'org-agenda
  918. :version "24.1"
  919. :type 'boolean)
  920. (defcustom org-agenda-show-outline-path t
  921. "Non-nil means show outline path in echo area after line motion."
  922. :group 'org-agenda-startup
  923. :type 'boolean)
  924. (defcustom org-agenda-start-with-entry-text-mode nil
  925. "The initial value of entry-text-mode in a newly created agenda window."
  926. :group 'org-agenda-startup
  927. :type 'boolean)
  928. (defcustom org-agenda-entry-text-maxlines 5
  929. "Number of text lines to be added when `E' is pressed in the agenda.
  930. Note that this variable only used during agenda display. To add entry text
  931. when exporting the agenda, configure the variable
  932. `org-agenda-add-entry-text-maxlines'."
  933. :group 'org-agenda
  934. :type 'integer)
  935. (defcustom org-agenda-entry-text-exclude-regexps nil
  936. "List of regular expressions to clean up entry text.
  937. The complete matches of all regular expressions in this list will be
  938. removed from entry text before it is shown in the agenda."
  939. :group 'org-agenda
  940. :type '(repeat (regexp)))
  941. (defcustom org-agenda-entry-text-leaders " > "
  942. "Text prepended to the entry text in agenda buffers."
  943. :version "24.4"
  944. :package-version '(Org . "8.0")
  945. :group 'org-agenda
  946. :type 'string)
  947. (defvar org-agenda-entry-text-cleanup-hook nil
  948. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  949. This cleanup is done in a temporary buffer, so the function may inspect and
  950. change the entire buffer.
  951. Some default stuff like drawers and scheduling/deadline dates will already
  952. have been removed when this is called, as will any matches for regular
  953. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  954. (defvar org-agenda-include-inactive-timestamps nil
  955. "Non-nil means include inactive time stamps in agenda.
  956. Dynamically scoped.")
  957. (defgroup org-agenda-windows nil
  958. "Options concerning the windows used by the Agenda in Org Mode."
  959. :tag "Org Agenda Windows"
  960. :group 'org-agenda)
  961. (defcustom org-agenda-window-setup 'reorganize-frame
  962. "How the agenda buffer should be displayed.
  963. Possible values for this option are:
  964. current-window Show agenda in the current window, keeping all other windows.
  965. other-window Use `switch-to-buffer-other-window' to display agenda.
  966. only-window Show agenda, deleting all other windows.
  967. reorganize-frame Show only two windows on the current frame, the current
  968. window and the agenda.
  969. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  970. Also, when exiting the agenda, kill that frame.
  971. other-tab Use `switch-to-buffer-other-tab' to display the
  972. agenda, making use of the `tab-bar-mode' introduced
  973. in Emacs version 27.1. Also, kill that tab when
  974. exiting the agenda view.
  975. See also the variable `org-agenda-restore-windows-after-quit'."
  976. :group 'org-agenda-windows
  977. :type '(choice
  978. (const current-window)
  979. (const other-frame)
  980. (const other-tab)
  981. (const other-window)
  982. (const only-window)
  983. (const reorganize-frame))
  984. :package-version '(Org . "9.4"))
  985. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  986. "The min and max height of the agenda window as a fraction of frame height.
  987. The value of the variable is a cons cell with two numbers between 0 and 1.
  988. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  989. :group 'org-agenda-windows
  990. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  991. (defcustom org-agenda-restore-windows-after-quit nil
  992. "Non-nil means restore window configuration upon exiting agenda.
  993. Before the window configuration is changed for displaying the
  994. agenda, the current status is recorded. When the agenda is
  995. exited with `q' or `x' and this option is set, the old state is
  996. restored. If `org-agenda-window-setup' is `other-frame' or
  997. `other-tab', the value of this option will be ignored."
  998. :group 'org-agenda-windows
  999. :type 'boolean)
  1000. (defcustom org-agenda-span 'week
  1001. "Number of days to include in overview display.
  1002. Can be day, week, month, year, or any number of days.
  1003. Custom commands can set this variable in the options section."
  1004. :group 'org-agenda-daily/weekly
  1005. :type '(choice (const :tag "Day" day)
  1006. (const :tag "Week" week)
  1007. (const :tag "Fortnight" fortnight)
  1008. (const :tag "Month" month)
  1009. (const :tag "Year" year)
  1010. (integer :tag "Custom")))
  1011. (defcustom org-agenda-start-on-weekday 1
  1012. "Non-nil means start the overview always on the specified weekday.
  1013. 0 denotes Sunday, 1 denotes Monday, etc.
  1014. When nil, always start on the current day.
  1015. Custom commands can set this variable in the options section."
  1016. :group 'org-agenda-daily/weekly
  1017. :type '(choice (const :tag "Today" nil)
  1018. (integer :tag "Weekday No.")))
  1019. (defcustom org-agenda-show-all-dates t
  1020. "Non-nil means `org-agenda' shows every day in the selected range.
  1021. When nil, only the days which actually have entries are shown."
  1022. :group 'org-agenda-daily/weekly
  1023. :type 'boolean)
  1024. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1025. "Format string for displaying dates in the agenda.
  1026. Used by the daily/weekly agenda. This should be a format string
  1027. understood by `format-time-string', or a function returning the
  1028. formatted date as a string. The function must take a single
  1029. argument, a calendar-style date list like (month day year)."
  1030. :group 'org-agenda-daily/weekly
  1031. :type '(choice
  1032. (string :tag "Format string")
  1033. (function :tag "Function")))
  1034. (defun org-agenda-end-of-line ()
  1035. "Go to the end of visible line."
  1036. (interactive)
  1037. (goto-char (line-end-position)))
  1038. (defun org-agenda-format-date-aligned (date)
  1039. "Format a DATE string for display in the daily/weekly agenda.
  1040. This function makes sure that dates are aligned for easy reading."
  1041. (require 'cal-iso)
  1042. (let* ((dayname (calendar-day-name date))
  1043. (day (cadr date))
  1044. (day-of-week (calendar-day-of-week date))
  1045. (month (car date))
  1046. (monthname (calendar-month-name month))
  1047. (year (nth 2 date))
  1048. (iso-week (org-days-to-iso-week
  1049. (calendar-absolute-from-gregorian date)))
  1050. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1051. (1- year))
  1052. ((and (= month 12) (<= iso-week 1))
  1053. (1+ year))
  1054. (t year)))
  1055. (weekstring (if (= day-of-week 1)
  1056. (format " W%02d" iso-week)
  1057. "")))
  1058. (format "%-10s %2d %s %4d%s"
  1059. dayname day monthname year weekstring)))
  1060. (defcustom org-agenda-time-leading-zero nil
  1061. "Non-nil means use leading zero for military times in agenda.
  1062. For example, 9:30am would become 09:30 rather than 9:30."
  1063. :group 'org-agenda-daily/weekly
  1064. :version "24.1"
  1065. :type 'boolean)
  1066. (defcustom org-agenda-timegrid-use-ampm nil
  1067. "When set, show AM/PM style timestamps on the timegrid."
  1068. :group 'org-agenda
  1069. :version "24.1"
  1070. :type 'boolean)
  1071. (defun org-agenda-time-of-day-to-ampm (time)
  1072. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1073. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1074. (minute (substring time -2))
  1075. (ampm "am"))
  1076. (cond
  1077. ((equal hour-number 12)
  1078. (setq ampm "pm"))
  1079. ((> hour-number 12)
  1080. (setq ampm "pm")
  1081. (setq hour-number (- hour-number 12))))
  1082. (concat
  1083. (if org-agenda-time-leading-zero
  1084. (format "%02d" hour-number)
  1085. (format "%02s" (number-to-string hour-number)))
  1086. ":" minute ampm)))
  1087. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1088. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1089. (if org-agenda-timegrid-use-ampm
  1090. (org-agenda-time-of-day-to-ampm time)
  1091. time))
  1092. (defcustom org-agenda-weekend-days '(6 0)
  1093. "Which days are weekend?
  1094. These days get the special face `org-agenda-date-weekend' in the agenda."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. When nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-diary-file 'diary-file
  1114. "File to which to add new entries with the `i' key in agenda and calendar.
  1115. When this is the symbol `diary-file', the functionality in the Emacs
  1116. calendar will be used to add entries to the `diary-file'. But when this
  1117. points to a file, `org-agenda-diary-entry' will be used instead."
  1118. :group 'org-agenda
  1119. :type '(choice
  1120. (const :tag "The standard Emacs diary file" diary-file)
  1121. (file :tag "Special Org file diary entries")))
  1122. (defcustom org-agenda-include-diary nil
  1123. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1124. Custom commands can set this variable in the options section."
  1125. :group 'org-agenda-daily/weekly
  1126. :type 'boolean)
  1127. (defcustom org-agenda-include-deadlines t
  1128. "If non-nil, include entries within their deadline warning period.
  1129. Custom commands can set this variable in the options section."
  1130. :group 'org-agenda-daily/weekly
  1131. :version "24.1"
  1132. :type 'boolean)
  1133. (defcustom org-agenda-show-future-repeats t
  1134. "Non-nil shows repeated entries in the future part of the agenda.
  1135. When set to the symbol `next' only the first future repeat is shown."
  1136. :group 'org-agenda-daily/weekly
  1137. :type '(choice
  1138. (const :tag "Show all repeated entries" t)
  1139. (const :tag "Show next repeated entry" next)
  1140. (const :tag "Do not show repeated entries" nil))
  1141. :version "26.1"
  1142. :package-version '(Org . "9.1")
  1143. :safe #'symbolp)
  1144. (defcustom org-agenda-prefer-last-repeat nil
  1145. "Non-nil sets date for repeated entries to their last repeat.
  1146. When nil, display SCHEDULED and DEADLINE dates at their base
  1147. date, and in today's agenda, as a reminder. Display plain
  1148. time-stamps, on the other hand, at every repeat date in the past
  1149. in addition to the base date.
  1150. When non-nil, show a repeated entry at its latest repeat date,
  1151. possibly being today even if it wasn't marked as done. This
  1152. setting is useful if you do not always mark repeated entries as
  1153. done and, yet, consider that reaching repeat date starts the task
  1154. anew.
  1155. When set to a list of strings, prefer last repeats only for
  1156. entries with these TODO keywords."
  1157. :group 'org-agenda-daily/weekly
  1158. :type '(choice
  1159. (const :tag "Prefer last repeat" t)
  1160. (const :tag "Prefer base date" nil)
  1161. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1162. (string :tag "TODO keyword")))
  1163. :version "26.1"
  1164. :package-version '(Org . "9.1")
  1165. :safe (lambda (x) (or (booleanp x) (consp x))))
  1166. (defcustom org-scheduled-past-days 10000
  1167. "Number of days to continue listing scheduled items not marked DONE.
  1168. When an item is scheduled on a date, it shows up in the agenda on
  1169. this day and will be listed until it is marked done or for the
  1170. number of days given here."
  1171. :group 'org-agenda-daily/weekly
  1172. :type 'integer
  1173. :safe 'integerp)
  1174. (defcustom org-deadline-past-days 10000
  1175. "Number of days to warn about missed deadlines.
  1176. When an item has deadline on a date, it shows up in the agenda on
  1177. this day and will appear as a reminder until it is marked DONE or
  1178. for the number of days given here."
  1179. :group 'org-agenda-daily/weekly
  1180. :type 'integer
  1181. :version "26.1"
  1182. :package-version '(Org . "9.1")
  1183. :safe 'integerp)
  1184. (defcustom org-agenda-log-mode-items '(closed clock)
  1185. "List of items that should be shown in agenda log mode.
  1186. \\<org-agenda-mode-map>\
  1187. This list may contain the following symbols:
  1188. closed Show entries that have been closed on that day.
  1189. clock Show entries that have received clocked time on that day.
  1190. state Show all logged state changes.
  1191. Note that instead of changing this variable, you can also press \
  1192. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1193. the agenda to display all available LOG items temporarily."
  1194. :group 'org-agenda-daily/weekly
  1195. :type '(set :greedy t (const closed) (const clock) (const state)))
  1196. (defcustom org-agenda-clock-consistency-checks
  1197. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1198. :gap-ok-around ("4:00")
  1199. :default-face ((:background "DarkRed") (:foreground "white"))
  1200. :overlap-face nil :gap-face nil :no-end-time-face nil
  1201. :long-face nil :short-face nil)
  1202. "This is a property list, with the following keys:
  1203. :max-duration Mark clocking chunks that are longer than this time.
  1204. This is a time string like \"HH:MM\", or the number
  1205. of minutes as an integer.
  1206. :min-duration Mark clocking chunks that are shorter that this.
  1207. This is a time string like \"HH:MM\", or the number
  1208. of minutes as an integer.
  1209. :max-gap Mark gaps between clocking chunks that are longer than
  1210. this duration. A number of minutes, or a string
  1211. like \"HH:MM\".
  1212. :gap-ok-around List of times during the day which are usually not working
  1213. times. When a gap is detected, but the gap contains any
  1214. of these times, the gap is *not* reported. For example,
  1215. if this is (\"4:00\" \"13:00\") then gaps that contain
  1216. 4:00 in the morning (i.e. the night) and 13:00
  1217. (i.e. a typical lunch time) do not cause a warning.
  1218. You should have at least one time during the night in this
  1219. list, or otherwise the first task each morning will trigger
  1220. a warning because it follows a long gap.
  1221. Furthermore, the following properties can be used to define faces for
  1222. issue display.
  1223. :default-face the default face, if the specific face is undefined
  1224. :overlap-face face for overlapping clocks
  1225. :gap-face face for gaps between clocks
  1226. :no-end-time-face face for incomplete clocks
  1227. :long-face face for clock intervals that are too long
  1228. :short-face face for clock intervals that are too short"
  1229. :group 'org-agenda-daily/weekly
  1230. :group 'org-clock
  1231. :version "24.1"
  1232. :type 'plist)
  1233. (defcustom org-agenda-log-mode-add-notes t
  1234. "Non-nil means add first line of notes to log entries in agenda views.
  1235. If a log item like a state change or a clock entry is associated with
  1236. notes, the first line of these notes will be added to the entry in the
  1237. agenda display."
  1238. :group 'org-agenda-daily/weekly
  1239. :type 'boolean)
  1240. (defcustom org-agenda-start-with-log-mode nil
  1241. "The initial value of log-mode in a newly created agenda window.
  1242. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1243. explanations on the possible values."
  1244. :group 'org-agenda-startup
  1245. :group 'org-agenda-daily/weekly
  1246. :type '(choice (const :tag "Don't show log items" nil)
  1247. (const :tag "Show only log items" only)
  1248. (const :tag "Show all possible log items" clockcheck)
  1249. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1250. (choice (const :tag "Show closed log items" closed)
  1251. (const :tag "Show clocked log items" clock)
  1252. (const :tag "Show all logged state changes" state)))))
  1253. (defcustom org-agenda-start-with-clockreport-mode nil
  1254. "The initial value of clockreport-mode in a newly created agenda window."
  1255. :group 'org-agenda-startup
  1256. :group 'org-agenda-daily/weekly
  1257. :type 'boolean)
  1258. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1259. "Property list with parameters for the clocktable in clockreport mode.
  1260. This is the display mode that shows a clock table in the daily/weekly
  1261. agenda, the properties for this dynamic block can be set here.
  1262. The usual clocktable parameters are allowed here, but you cannot set
  1263. the properties :name, :tstart, :tend, :block, and :scope - these will
  1264. be overwritten to make sure the content accurately reflects the
  1265. current display in the agenda."
  1266. :group 'org-agenda-daily/weekly
  1267. :type 'plist)
  1268. (defvaralias 'org-agenda-search-view-search-words-only
  1269. 'org-agenda-search-view-always-boolean)
  1270. (defcustom org-agenda-search-view-always-boolean nil
  1271. "Non-nil means the search string is interpreted as individual parts.
  1272. The search string for search view can either be interpreted as a phrase,
  1273. or as a list of snippets that define a boolean search for a number of
  1274. strings.
  1275. When this is non-nil, the string will be split on whitespace, and each
  1276. snippet will be searched individually, and all must match in order to
  1277. select an entry. A snippet is then a single string of non-white
  1278. characters, or a string in double quotes, or a regexp in {} braces.
  1279. If a snippet is preceded by \"-\", the snippet must *not* match.
  1280. \"+\" is syntactic sugar for positive selection. Each snippet may
  1281. be found as a full word or a partial word, but see the variable
  1282. `org-agenda-search-view-force-full-words'.
  1283. When this is nil, search will look for the entire search phrase as one,
  1284. with each space character matching any amount of whitespace, including
  1285. line breaks.
  1286. Even when this is nil, you can still switch to Boolean search dynamically
  1287. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1288. is a regexp marked with braces like \"{abc}\", this will also switch to
  1289. boolean search."
  1290. :group 'org-agenda-search-view
  1291. :version "24.1"
  1292. :type 'boolean)
  1293. (defcustom org-agenda-search-view-force-full-words nil
  1294. "Non-nil means, search words must be matches as complete words.
  1295. When nil, they may also match part of a word."
  1296. :group 'org-agenda-search-view
  1297. :version "24.1"
  1298. :type 'boolean)
  1299. (defcustom org-agenda-search-view-max-outline-level 0
  1300. "Maximum outline level to display in search view.
  1301. E.g. when this is set to 1, the search view will only
  1302. show headlines of level 1. When set to 0, the default
  1303. value, don't limit agenda view by outline level."
  1304. :group 'org-agenda-search-view
  1305. :version "26.1"
  1306. :package-version '(Org . "8.3")
  1307. :type 'integer)
  1308. (defgroup org-agenda-time-grid nil
  1309. "Options concerning the time grid in the Org Agenda."
  1310. :tag "Org Agenda Time Grid"
  1311. :group 'org-agenda)
  1312. (defcustom org-agenda-search-headline-for-time t
  1313. "Non-nil means search headline for a time-of-day.
  1314. If the headline contains a time-of-day in one format or another, it will
  1315. be used to sort the entry into the time sequence of items for a day.
  1316. Some people have time stamps in the headline that refer to the creation
  1317. time or so, and then this produces an unwanted side effect. If this is
  1318. the case for your, use this variable to turn off searching the headline
  1319. for a time."
  1320. :group 'org-agenda-time-grid
  1321. :type 'boolean)
  1322. (defcustom org-agenda-use-time-grid t
  1323. "Non-nil means show a time grid in the agenda schedule.
  1324. A time grid is a set of lines for specific times (like every two hours between
  1325. 8:00 and 20:00). The items scheduled for a day at specific times are
  1326. sorted in between these lines.
  1327. For details about when the grid will be shown, and what it will look like, see
  1328. the variable `org-agenda-time-grid'."
  1329. :group 'org-agenda-time-grid
  1330. :type 'boolean)
  1331. (defcustom org-agenda-time-grid
  1332. '((daily today require-timed)
  1333. (800 1000 1200 1400 1600 1800 2000)
  1334. "......"
  1335. "----------------")
  1336. "The settings for time grid for agenda display.
  1337. This is a list of four items. The first item is again a list. It contains
  1338. symbols specifying conditions when the grid should be displayed:
  1339. daily if the agenda shows a single day
  1340. weekly if the agenda shows an entire week
  1341. today show grid on current date, independent of daily/weekly display
  1342. require-timed show grid only if at least one item has a time specification
  1343. remove-match skip grid times already present in an entry
  1344. The second item is a list of integers, indicating the times that
  1345. should have a grid line.
  1346. The third item is a string which will be placed right after the
  1347. times that have a grid line.
  1348. The fourth item is a string placed after the grid times. This
  1349. will align with agenda items."
  1350. :group 'org-agenda-time-grid
  1351. :type
  1352. '(list
  1353. (set :greedy t :tag "Grid Display Options"
  1354. (const :tag "Show grid in single day agenda display" daily)
  1355. (const :tag "Show grid in weekly agenda display" weekly)
  1356. (const :tag "Always show grid for today" today)
  1357. (const :tag "Show grid only if any timed entries are present"
  1358. require-timed)
  1359. (const :tag "Skip grid times already present in an entry"
  1360. remove-match))
  1361. (repeat :tag "Grid Times" (integer :tag "Time"))
  1362. (string :tag "Grid String (after agenda times)")
  1363. (string :tag "Grid String (aligns with agenda items)")))
  1364. (defcustom org-agenda-show-current-time-in-grid t
  1365. "Non-nil means show the current time in the time grid."
  1366. :group 'org-agenda-time-grid
  1367. :version "24.1"
  1368. :type 'boolean)
  1369. (defcustom org-agenda-current-time-string
  1370. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1371. "The string for the current time marker in the agenda."
  1372. :group 'org-agenda-time-grid
  1373. :version "24.1"
  1374. :type 'string)
  1375. (defgroup org-agenda-sorting nil
  1376. "Options concerning sorting in the Org Agenda."
  1377. :tag "Org Agenda Sorting"
  1378. :group 'org-agenda)
  1379. (defcustom org-agenda-sorting-strategy
  1380. '((agenda habit-down time-up priority-down category-keep)
  1381. (todo priority-down category-keep)
  1382. (tags priority-down category-keep)
  1383. (search category-keep))
  1384. "Sorting structure for the agenda items of a single day.
  1385. This is a list of symbols which will be used in sequence to determine
  1386. if an entry should be listed before another entry. The following
  1387. symbols are recognized:
  1388. time-up Put entries with time-of-day indications first, early first.
  1389. time-down Put entries with time-of-day indications first, late first.
  1390. timestamp-up Sort by any timestamp, early first.
  1391. timestamp-down Sort by any timestamp, late first.
  1392. scheduled-up Sort by scheduled timestamp, early first.
  1393. scheduled-down Sort by scheduled timestamp, late first.
  1394. deadline-up Sort by deadline timestamp, early first.
  1395. deadline-down Sort by deadline timestamp, late first.
  1396. ts-up Sort by active timestamp, early first.
  1397. ts-down Sort by active timestamp, late first.
  1398. tsia-up Sort by inactive timestamp, early first.
  1399. tsia-down Sort by inactive timestamp, late first.
  1400. category-keep Keep the default order of categories, corresponding to the
  1401. sequence in `org-agenda-files'.
  1402. category-up Sort alphabetically by category, A-Z.
  1403. category-down Sort alphabetically by category, Z-A.
  1404. tag-up Sort alphabetically by last tag, A-Z.
  1405. tag-down Sort alphabetically by last tag, Z-A.
  1406. priority-up Sort numerically by priority, high priority last.
  1407. priority-down Sort numerically by priority, high priority first.
  1408. todo-state-up Sort by todo state, tasks that are done last.
  1409. todo-state-down Sort by todo state, tasks that are done first.
  1410. effort-up Sort numerically by estimated effort, high effort last.
  1411. effort-down Sort numerically by estimated effort, high effort first.
  1412. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1413. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1414. habit-up Put entries that are habits first.
  1415. habit-down Put entries that are habits last.
  1416. alpha-up Sort headlines alphabetically.
  1417. alpha-down Sort headlines alphabetically, reversed.
  1418. The different possibilities will be tried in sequence, and testing stops
  1419. if one comparison returns a \"not-equal\". For example, the default
  1420. '(time-up category-keep priority-down)
  1421. means: Pull out all entries having a specified time of day and sort them,
  1422. in order to make a time schedule for the current day the first thing in the
  1423. agenda listing for the day. Of the entries without a time indication, keep
  1424. the grouped in categories, don't sort the categories, but keep them in
  1425. the sequence given in `org-agenda-files'. Within each category sort by
  1426. priority.
  1427. Leaving out `category-keep' would mean that items will be sorted across
  1428. categories by priority.
  1429. Instead of a single list, this can also be a set of list for specific
  1430. contents, with a context symbol in the car of the list, any of
  1431. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1432. Custom commands can bind this variable in the options section."
  1433. :group 'org-agenda-sorting
  1434. :type `(choice
  1435. (repeat :tag "General" ,org-sorting-choice)
  1436. (list :tag "Individually"
  1437. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1438. (repeat ,org-sorting-choice))
  1439. (cons (const :tag "Strategy for TODO lists" todo)
  1440. (repeat ,org-sorting-choice))
  1441. (cons (const :tag "Strategy for Tags matches" tags)
  1442. (repeat ,org-sorting-choice))
  1443. (cons (const :tag "Strategy for search matches" search)
  1444. (repeat ,org-sorting-choice)))))
  1445. (defcustom org-agenda-cmp-user-defined nil
  1446. "A function to define the comparison `user-defined'.
  1447. This function must receive two arguments, agenda entry a and b.
  1448. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1449. the user comparison, return nil.
  1450. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1451. part of an agenda sorting strategy."
  1452. :group 'org-agenda-sorting
  1453. :type 'symbol)
  1454. (defcustom org-agenda-sort-notime-is-late t
  1455. "Non-nil means items without time are considered late.
  1456. This is only relevant for sorting. When t, items which have no explicit
  1457. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1458. do have a time. When nil, the default time is before 0:00. You can use this
  1459. option to decide if the schedule for today should come before or after timeless
  1460. agenda entries."
  1461. :group 'org-agenda-sorting
  1462. :type 'boolean)
  1463. (defcustom org-agenda-sort-noeffort-is-high t
  1464. "Non-nil means items without effort estimate are sorted as high effort.
  1465. This also applies when filtering an agenda view with respect to the
  1466. < or > effort operator. Then, tasks with no effort defined will be treated
  1467. as tasks with high effort.
  1468. When nil, such items are sorted as 0 minutes effort."
  1469. :group 'org-agenda-sorting
  1470. :type 'boolean)
  1471. (defgroup org-agenda-line-format nil
  1472. "Options concerning the entry prefix in the Org agenda display."
  1473. :tag "Org Agenda Line Format"
  1474. :group 'org-agenda)
  1475. (defcustom org-agenda-prefix-format
  1476. '((agenda . " %i %-12:c%?-12t% s")
  1477. (todo . " %i %-12:c")
  1478. (tags . " %i %-12:c")
  1479. (search . " %i %-12:c"))
  1480. "Format specifications for the prefix of items in the agenda views.
  1481. An alist with one entry per agenda type. The keys of the
  1482. sublists are `agenda', `todo', `search' and `tags'. The values
  1483. are format strings.
  1484. This format works similar to a printf format, with the following meaning:
  1485. %c the category of the item, \"Diary\" for entries from the diary,
  1486. or as given by the CATEGORY keyword or derived from the file name
  1487. %e the effort required by the item
  1488. %l the level of the item (insert X space(s) if item is of level X)
  1489. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1490. %T the last tag of the item (ignore inherited tags, which come first)
  1491. %t the HH:MM time-of-day specification if one applies to the entry
  1492. %s Scheduling/Deadline information, a short string
  1493. %b show breadcrumbs, i.e., the names of the higher levels
  1494. %(expression) Eval EXPRESSION and replace the control string
  1495. by the result
  1496. All specifiers work basically like the standard `%s' of printf, but may
  1497. contain two additional characters: a question mark just after the `%'
  1498. and a whitespace/punctuation character just before the final letter.
  1499. If the first character after `%' is a question mark, the entire field
  1500. will only be included if the corresponding value applies to the current
  1501. entry. This is useful for fields which should have fixed width when
  1502. present, but zero width when absent. For example, \"%?-12t\" will
  1503. result in a 12 character time field if a time of the day is specified,
  1504. but will completely disappear in entries which do not contain a time.
  1505. If there is punctuation or whitespace character just before the
  1506. final format letter, this character will be appended to the field
  1507. value if the value is not empty. For example, the format
  1508. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1509. the category is empty, no additional colon is inserted.
  1510. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1511. which means:
  1512. - Indent the line with two space characters
  1513. - Give the category a 12 chars wide field, padded with whitespace on
  1514. the right (because of `-'). Append a colon if there is a category
  1515. (because of `:').
  1516. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1517. time, don't put in an empty field, just skip it (because of '?').
  1518. - Finally, put the scheduling information.
  1519. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1520. `org-agenda-remove-tags'.
  1521. Custom commands can set this variable in the options section."
  1522. :type '(choice
  1523. (string :tag "General format")
  1524. (list :greedy t :tag "View dependent"
  1525. (cons (const agenda) (string :tag "Format"))
  1526. (cons (const todo) (string :tag "Format"))
  1527. (cons (const tags) (string :tag "Format"))
  1528. (cons (const search) (string :tag "Format"))))
  1529. :group 'org-agenda-line-format
  1530. :version "26.1"
  1531. :package-version '(Org . "9.1"))
  1532. (defcustom org-agenda-breadcrumbs-separator "->"
  1533. "The separator of breadcrumbs in agenda lines."
  1534. :group 'org-agenda-line-format
  1535. :package-version '(Org . "9.3")
  1536. :type 'string
  1537. :safe #'stringp)
  1538. (defvar org-prefix-format-compiled nil
  1539. "The compiled prefix format and associated variables.
  1540. This is a list where first element is a list of variable bindings, and second
  1541. element is the compiled format expression. See the variable
  1542. `org-agenda-prefix-format'.")
  1543. (defcustom org-agenda-todo-keyword-format "%-1s"
  1544. "Format for the TODO keyword in agenda lines.
  1545. Set this to something like \"%-12s\" if you want all TODO keywords
  1546. to occupy a fixed space in the agenda display."
  1547. :group 'org-agenda-line-format
  1548. :type 'string)
  1549. (defcustom org-agenda-diary-sexp-prefix nil
  1550. "A regexp that matches part of a diary sexp entry
  1551. which should be treated as scheduling/deadline information in
  1552. `org-agenda'.
  1553. For example, you can use this to extract the `diary-remind-message' from
  1554. `diary-remind' entries."
  1555. :group 'org-agenda-line-format
  1556. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1557. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1558. "Text preceding timerange entries in the agenda view.
  1559. This is a list with two strings. The first applies when the range
  1560. is entirely on one day. The second applies if the range spans several days.
  1561. The strings may have two \"%d\" format specifiers which will be filled
  1562. with the sequence number of the days, and the total number of days in the
  1563. range, respectively."
  1564. :group 'org-agenda-line-format
  1565. :type '(list
  1566. (string :tag "Deadline today ")
  1567. (choice :tag "Deadline relative"
  1568. (string :tag "Format string")
  1569. (function))))
  1570. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1571. "Text preceding scheduled items in the agenda view.
  1572. This is a list with two strings. The first applies when the item is
  1573. scheduled on the current day. The second applies when it has been scheduled
  1574. previously, it may contain a %d indicating that this is the nth time that
  1575. this item is scheduled, due to automatic rescheduling of unfinished items
  1576. for the following day. So this number is one larger than the number of days
  1577. that passed since this item was scheduled first."
  1578. :group 'org-agenda-line-format
  1579. :version "24.4"
  1580. :package-version '(Org . "8.0")
  1581. :type '(list
  1582. (string :tag "Scheduled today ")
  1583. (string :tag "Scheduled previously")))
  1584. (defcustom org-agenda-inactive-leader "["
  1585. "Text preceding item pulled into the agenda by inactive time stamps.
  1586. These entries are added to the agenda when pressing \"[\"."
  1587. :group 'org-agenda-line-format
  1588. :version "24.1"
  1589. :type 'string)
  1590. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1591. "Text preceding deadline items in the agenda view.
  1592. This is a list with three strings. The first applies when the item has its
  1593. deadline on the current day. The second applies when the deadline is in the
  1594. future, the third one when it is in the past. The strings may contain %d
  1595. to capture the number of days."
  1596. :group 'org-agenda-line-format
  1597. :version "24.4"
  1598. :package-version '(Org . "8.0")
  1599. :type '(list
  1600. (string :tag "Deadline today ")
  1601. (string :tag "Deadline in the future ")
  1602. (string :tag "Deadline in the past ")))
  1603. (defcustom org-agenda-remove-times-when-in-prefix t
  1604. "Non-nil means remove duplicate time specifications in agenda items.
  1605. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1606. time-of-day specification in a headline or diary entry is extracted and
  1607. placed into the prefix. If this option is non-nil, the original specification
  1608. \(a timestamp or -range, or just a plain time(range) specification like
  1609. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1610. cluttered.
  1611. The option can be t or nil. It may also be the symbol `beg', indicating
  1612. that the time should only be removed when it is located at the beginning of
  1613. the headline/diary entry."
  1614. :group 'org-agenda-line-format
  1615. :type '(choice
  1616. (const :tag "Always" t)
  1617. (const :tag "Never" nil)
  1618. (const :tag "When at beginning of entry" beg)))
  1619. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1620. "Non-nil means remove time ranges specifications in agenda
  1621. items that span on several days."
  1622. :group 'org-agenda-line-format
  1623. :version "24.1"
  1624. :type 'boolean)
  1625. (defcustom org-agenda-default-appointment-duration nil
  1626. "Default duration for appointments that only have a starting time.
  1627. When nil, no duration is specified in such cases.
  1628. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1629. :group 'org-agenda-line-format
  1630. :type '(choice
  1631. (integer :tag "Minutes")
  1632. (const :tag "No default duration")))
  1633. (defcustom org-agenda-show-inherited-tags t
  1634. "Non-nil means show inherited tags in each agenda line.
  1635. When this option is set to `always', it takes precedence over
  1636. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1637. in every agenda.
  1638. When this option is set to t (the default), inherited tags are
  1639. shown when they are available, i.e. when the value of
  1640. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1641. given agenda type.
  1642. This can be set to a list of agenda types in which the agenda
  1643. must display the inherited tags. Available types are `todo',
  1644. `agenda' and `search'.
  1645. When set to nil, never show inherited tags in agenda lines."
  1646. :group 'org-agenda-line-format
  1647. :group 'org-agenda
  1648. :version "24.3"
  1649. :type '(choice
  1650. (const :tag "Show inherited tags when available" t)
  1651. (const :tag "Always show inherited tags" always)
  1652. (repeat :tag "Show inherited tags only in selected agenda types"
  1653. (symbol :tag "Agenda type"))))
  1654. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1655. "List of agenda view types where to use tag inheritance.
  1656. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1657. controlled by `org-use-tag-inheritance'. In other agenda types,
  1658. `org-use-tag-inheritance' is not used for the selection of the
  1659. agenda entries. Still, you may want the agenda to be aware of
  1660. the inherited tags anyway, e.g. for later tag filtering.
  1661. Allowed value are `todo', `search' and `agenda'.
  1662. This variable has no effect if `org-agenda-show-inherited-tags'
  1663. is set to `always'. In that case, the agenda is aware of those
  1664. tags.
  1665. The default value sets tags in every agenda type. Setting this
  1666. option to nil will speed up non-tags agenda view a lot."
  1667. :group 'org-agenda
  1668. :version "26.1"
  1669. :package-version '(Org . "9.1")
  1670. :type '(choice
  1671. (const :tag "Use tag inheritance in all agenda types" t)
  1672. (repeat :tag "Use tag inheritance in selected agenda types"
  1673. (symbol :tag "Agenda type"))))
  1674. (defcustom org-agenda-hide-tags-regexp nil
  1675. "Regular expression used to filter away specific tags in agenda views.
  1676. This means that these tags will be present, but not be shown in the agenda
  1677. line. Secondary filtering will still work on the hidden tags.
  1678. Nil means don't hide any tags."
  1679. :group 'org-agenda-line-format
  1680. :type '(choice
  1681. (const :tag "Hide none" nil)
  1682. (regexp :tag "Regexp ")))
  1683. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1684. 'org-agenda-remove-tags)
  1685. (defcustom org-agenda-remove-tags nil
  1686. "Non-nil means remove the tags from the headline copy in the agenda.
  1687. When this is the symbol `prefix', only remove tags when
  1688. `org-agenda-prefix-format' contains a `%T' specifier."
  1689. :group 'org-agenda-line-format
  1690. :type '(choice
  1691. (const :tag "Always" t)
  1692. (const :tag "Never" nil)
  1693. (const :tag "When prefix format contains %T" prefix)))
  1694. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1695. (defcustom org-agenda-tags-column 'auto
  1696. "Shift tags in agenda items to this column.
  1697. If set to `auto', tags will be automatically aligned to the right
  1698. edge of the window.
  1699. If set to a positive number, tags will be left-aligned to that
  1700. column. If set to a negative number, tags will be right-aligned
  1701. to that column. For example, -80 works well for a normal 80
  1702. character screen."
  1703. :group 'org-agenda-line-format
  1704. :type '(choice
  1705. (const :tag "Automatically align to right edge of window" auto)
  1706. (integer :tag "Specific column" -80))
  1707. :package-version '(Org . "9.1")
  1708. :version "26.1")
  1709. (defcustom org-agenda-fontify-priorities 'cookies
  1710. "Non-nil means highlight low and high priorities in agenda.
  1711. When t, the highest priority entries are bold, lowest priority italic.
  1712. However, settings in `org-priority-faces' will overrule these faces.
  1713. When this variable is the symbol `cookies', only fontify the
  1714. cookies, not the entire task.
  1715. This may also be an association list of priority faces, whose
  1716. keys are the character values of `org-priority-highest',
  1717. `org-priority-default', and `org-priority-lowest' (the default values
  1718. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1719. color as a string, or a list like `(:background \"Red\")'.
  1720. If it is a color, the variable `org-faces-easy-properties'
  1721. determines if it is a foreground or a background color."
  1722. :group 'org-agenda-line-format
  1723. :type '(choice
  1724. (const :tag "Never" nil)
  1725. (const :tag "Defaults" t)
  1726. (const :tag "Cookies only" cookies)
  1727. (repeat :tag "Specify"
  1728. (list (character :tag "Priority" :value ?A)
  1729. (choice :tag "Face "
  1730. (string :tag "Color")
  1731. (sexp :tag "Face"))))))
  1732. (defcustom org-agenda-day-face-function nil
  1733. "Function called to determine what face should be used to display a day.
  1734. The only argument passed to that function is the day. It should
  1735. returns a face, or nil if does not want to specify a face and let
  1736. the normal rules apply."
  1737. :group 'org-agenda-line-format
  1738. :version "24.1"
  1739. :type '(choice (const nil) (function)))
  1740. (defcustom org-agenda-category-icon-alist nil
  1741. "Alist of category icon to be displayed in agenda views.
  1742. Each entry should have the following format:
  1743. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1744. Where CATEGORY-REGEXP is a regexp matching the categories where
  1745. the icon should be displayed.
  1746. FILE-OR-DATA either a file path or a string containing image data.
  1747. The other fields can be omitted safely if not needed:
  1748. TYPE indicates the image type.
  1749. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1750. image data.
  1751. PROPS are additional image attributes to assign to the image,
  1752. like, e.g. `:ascent center'.
  1753. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1754. If you want to set the display properties yourself, just put a
  1755. list as second element:
  1756. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1757. For example, to display a 16px horizontal space for Emacs
  1758. category, you can use:
  1759. (\"Emacs\" \\='(space . (:width (16))))"
  1760. :group 'org-agenda-line-format
  1761. :version "24.1"
  1762. :type '(alist :key-type (regexp :tag "Regexp matching category")
  1763. :value-type (choice (list :tag "Icon"
  1764. (string :tag "File or data")
  1765. (symbol :tag "Type")
  1766. (boolean :tag "Data?")
  1767. (repeat :tag "Extra image properties" :inline t sexp))
  1768. (list :tag "Display properties" sexp))))
  1769. (defgroup org-agenda-column-view nil
  1770. "Options concerning column view in the agenda."
  1771. :tag "Org Agenda Column View"
  1772. :group 'org-agenda)
  1773. (defcustom org-agenda-view-columns-initially nil
  1774. "When non-nil, switch to columns view right after creating the agenda."
  1775. :group 'org-agenda-column-view
  1776. :type 'boolean
  1777. :version "26.1"
  1778. :package-version '(Org . "9.0")
  1779. :safe #'booleanp)
  1780. (defcustom org-agenda-columns-show-summaries t
  1781. "Non-nil means show summaries for columns displayed in the agenda view."
  1782. :group 'org-agenda-column-view
  1783. :type 'boolean)
  1784. (defcustom org-agenda-columns-compute-summary-properties t
  1785. "Non-nil means recompute all summary properties before column view.
  1786. When column view in the agenda is listing properties that have a summary
  1787. operator, it can go to all relevant buffers and recompute the summaries
  1788. there. This can mean overhead for the agenda column view, but is necessary
  1789. to have thing up to date.
  1790. As a special case, a CLOCKSUM property also makes sure that the clock
  1791. computations are current."
  1792. :group 'org-agenda-column-view
  1793. :type 'boolean)
  1794. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1795. "Non-nil means the duration of an appointment will add to day effort.
  1796. The property to which appointment durations will be added is the one given
  1797. in the option `org-effort-property'. If an appointment does not have
  1798. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1799. is not set, an appointment without end time will not contribute to the time
  1800. estimate."
  1801. :group 'org-agenda-column-view
  1802. :type 'boolean)
  1803. (defcustom org-agenda-auto-exclude-function nil
  1804. "A function called with a tag to decide if it is filtered on \
  1805. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1806. The sole argument to the function, which is called once for each
  1807. possible tag, is a string giving the name of the tag. The
  1808. function should return either nil if the tag should be included
  1809. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1810. lines not carrying this tag.
  1811. Note that for the purpose of tag filtering, only the lower-case version of
  1812. all tags will be considered, so that this function will only ever see
  1813. the lower-case version of all tags."
  1814. :group 'org-agenda
  1815. :type '(choice (const nil) (function)))
  1816. (defcustom org-agenda-bulk-custom-functions nil
  1817. "Alist of characters and custom functions for bulk actions.
  1818. For example, this value makes those two functions available:
  1819. \\='((?R set-category)
  1820. (?C bulk-cut))
  1821. With selected entries in an agenda buffer, `B R' will call
  1822. the custom function `set-category' on the selected entries.
  1823. Note that functions in this alist don't need to be quoted."
  1824. :type '(alist :key-type character :value-type (group function))
  1825. :version "24.1"
  1826. :group 'org-agenda)
  1827. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1828. "Execute BODY with point at location given by `org-hd-marker' property.
  1829. If STRING is non-nil, the text property will be fetched from position 0
  1830. in that string. If STRING is nil, it will be fetched from the beginning
  1831. of the current line."
  1832. (org-with-gensyms (marker)
  1833. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1834. 'org-hd-marker ,string)))
  1835. (with-current-buffer (marker-buffer ,marker)
  1836. (save-excursion
  1837. (goto-char ,marker)
  1838. ,@body)))))
  1839. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1840. (defun org-add-agenda-custom-command (entry)
  1841. "Replace or add a command in `org-agenda-custom-commands'.
  1842. This is mostly for hacking and trying a new command - once the command
  1843. works you probably want to add it to `org-agenda-custom-commands' for good."
  1844. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1845. (if ass
  1846. (setcdr ass (cdr entry))
  1847. (push entry org-agenda-custom-commands))))
  1848. (defmacro org-agenda--insert-overriding-header (default)
  1849. "Insert header into agenda view.
  1850. The inserted header depends on `org-agenda-overriding-header'.
  1851. If the empty string, don't insert a header. If any other string,
  1852. insert it as a header. If nil, insert DEFAULT, which should
  1853. evaluate to a string."
  1854. (declare (debug (form)) (indent defun))
  1855. `(cond
  1856. ((not org-agenda-overriding-header) (insert ,default))
  1857. ((equal org-agenda-overriding-header "") nil)
  1858. ((stringp org-agenda-overriding-header)
  1859. (insert (propertize org-agenda-overriding-header
  1860. 'face 'org-agenda-structure)
  1861. "\n"))
  1862. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1863. org-agenda-overriding-header))))
  1864. ;;; Define the org-agenda-mode
  1865. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1866. (defvar org-agenda-mode-map (make-sparse-keymap)
  1867. "Keymap for `org-agenda-mode'.")
  1868. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1869. (defvar org-agenda-menu) ; defined later in this file.
  1870. (defvar org-agenda-restrict nil) ; defined later in this file.
  1871. (defvar org-agenda-follow-mode nil)
  1872. (defvar org-agenda-entry-text-mode nil)
  1873. (defvar org-agenda-clockreport-mode nil)
  1874. (defvar org-agenda-show-log nil
  1875. "When non-nil, show the log in the agenda.
  1876. Do not set this directly; instead use
  1877. `org-agenda-start-with-log-mode', which see.")
  1878. (defvar org-agenda-redo-command nil)
  1879. (defvar org-agenda-query-string nil)
  1880. (defvar org-agenda-mode-hook nil
  1881. "Hook run after `org-agenda-mode' is turned on.
  1882. The buffer is still writable when this hook is called.")
  1883. (defvar org-agenda-type nil)
  1884. (defvar org-agenda-force-single-file nil)
  1885. (defvar org-agenda-bulk-marked-entries nil
  1886. "List of markers that refer to marked entries in the agenda.")
  1887. (defvar org-agenda-current-date nil
  1888. "Active date when building the agenda.")
  1889. ;;; Multiple agenda buffers support
  1890. (defcustom org-agenda-sticky nil
  1891. "Non-nil means agenda q key will bury agenda buffers.
  1892. Agenda commands will then show existing buffer instead of generating new ones.
  1893. When nil, `q' will kill the single agenda buffer."
  1894. :group 'org-agenda
  1895. :version "24.3"
  1896. :type 'boolean)
  1897. ;;;###autoload
  1898. (defun org-toggle-sticky-agenda (&optional arg)
  1899. "Toggle `org-agenda-sticky'."
  1900. (interactive "P")
  1901. (let ((new-value (if arg
  1902. (> (prefix-numeric-value arg) 0)
  1903. (not org-agenda-sticky))))
  1904. (if (equal new-value org-agenda-sticky)
  1905. (and (called-interactively-p 'interactive)
  1906. (message "Sticky agenda was already %s"
  1907. (if org-agenda-sticky "enabled" "disabled")))
  1908. (setq org-agenda-sticky new-value)
  1909. (org-agenda-kill-all-agenda-buffers)
  1910. (and (called-interactively-p 'interactive)
  1911. (message "Sticky agenda %s"
  1912. (if org-agenda-sticky "enabled" "disabled"))))))
  1913. (defvar org-agenda-buffer nil
  1914. "Agenda buffer currently being generated.")
  1915. (defvar org-agenda-last-prefix-arg nil)
  1916. (defvar org-agenda-this-buffer-name nil)
  1917. (defvar org-agenda-doing-sticky-redo nil)
  1918. (defvar org-agenda-this-buffer-is-sticky nil)
  1919. (defvar org-agenda-last-indirect-buffer nil
  1920. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1921. (defconst org-agenda-local-vars
  1922. '(org-agenda-this-buffer-name
  1923. org-agenda-undo-list
  1924. org-agenda-pending-undo-list
  1925. org-agenda-follow-mode
  1926. org-agenda-entry-text-mode
  1927. org-agenda-clockreport-mode
  1928. org-agenda-show-log
  1929. org-agenda-redo-command
  1930. org-agenda-query-string
  1931. org-agenda-type
  1932. org-agenda-bulk-marked-entries
  1933. org-agenda-undo-has-started-in
  1934. org-agenda-info
  1935. org-agenda-pre-window-conf
  1936. org-agenda-columns-active
  1937. org-agenda-tag-filter
  1938. org-agenda-category-filter
  1939. org-agenda-top-headline-filter
  1940. org-agenda-regexp-filter
  1941. org-agenda-effort-filter
  1942. org-agenda-markers
  1943. org-agenda-last-search-view-search-was-boolean
  1944. org-agenda-last-indirect-buffer
  1945. org-agenda-filtered-by-category
  1946. org-agenda-filter-form
  1947. org-agenda-cycle-counter
  1948. org-agenda-last-prefix-arg)
  1949. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1950. (defun org-agenda-mode ()
  1951. "Mode for time-sorted view on action items in Org files.
  1952. The following commands are available:
  1953. \\{org-agenda-mode-map}"
  1954. (interactive)
  1955. (ignore-errors (require 'face-remap))
  1956. (let ((agenda-local-vars-to-keep
  1957. '(text-scale-mode-amount
  1958. text-scale-mode
  1959. text-scale-mode-lighter
  1960. face-remapping-alist))
  1961. (save (buffer-local-variables)))
  1962. (kill-all-local-variables)
  1963. (cl-flet ((reset-saved (var-set)
  1964. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1965. (dolist (elem save)
  1966. (pcase elem
  1967. (`(,var . ,val) ;ignore unbound variables
  1968. (when (and val (memq var var-set))
  1969. (set var val)))))))
  1970. (cond (org-agenda-doing-sticky-redo
  1971. ;; Refreshing sticky agenda-buffer
  1972. ;;
  1973. ;; Preserve the value of `org-agenda-local-vars' variables.
  1974. (mapc #'make-local-variable org-agenda-local-vars)
  1975. (reset-saved org-agenda-local-vars)
  1976. (setq-local org-agenda-this-buffer-is-sticky t))
  1977. (org-agenda-sticky
  1978. ;; Creating a sticky Agenda buffer for the first time
  1979. (mapc 'make-local-variable org-agenda-local-vars)
  1980. (setq-local org-agenda-this-buffer-is-sticky t))
  1981. (t
  1982. ;; Creating a non-sticky agenda buffer
  1983. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1984. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1985. (reset-saved agenda-local-vars-to-keep)))
  1986. (setq org-agenda-undo-list nil
  1987. org-agenda-pending-undo-list nil
  1988. org-agenda-bulk-marked-entries nil)
  1989. (setq major-mode 'org-agenda-mode)
  1990. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1991. (setq-local font-lock-global-modes (list 'not major-mode))
  1992. (setq mode-name "Org-Agenda")
  1993. (setq indent-tabs-mode nil)
  1994. (use-local-map org-agenda-mode-map)
  1995. (when org-startup-truncated (setq truncate-lines t))
  1996. (setq-local line-move-visual nil)
  1997. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1998. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1999. ;; Make sure properties are removed when copying text
  2000. (if (boundp 'filter-buffer-substring-functions)
  2001. (add-hook 'filter-buffer-substring-functions
  2002. (lambda (fun start end delete)
  2003. (substring-no-properties (funcall fun start end delete)))
  2004. nil t)
  2005. ;; Emacs >= 24.4.
  2006. (add-function :filter-return (local 'filter-buffer-substring-function)
  2007. #'substring-no-properties))
  2008. (unless org-agenda-keep-modes
  2009. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  2010. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  2011. org-agenda-show-log org-agenda-start-with-log-mode
  2012. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  2013. (add-to-invisibility-spec '(org-filtered))
  2014. (add-to-invisibility-spec '(org-link))
  2015. (easy-menu-change
  2016. '("Agenda") "Agenda Files"
  2017. (append
  2018. (list
  2019. (vector
  2020. (if (get 'org-agenda-files 'org-restrict)
  2021. "Restricted to single file"
  2022. "Edit File List")
  2023. '(org-edit-agenda-file-list)
  2024. (not (get 'org-agenda-files 'org-restrict)))
  2025. "--")
  2026. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2027. (org-agenda-set-mode-name)
  2028. (apply
  2029. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2030. (list 'org-agenda-mode-hook)))
  2031. (substitute-key-definition #'undo #'org-agenda-undo
  2032. org-agenda-mode-map global-map)
  2033. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2034. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2035. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2036. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2037. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2038. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2039. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2040. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2041. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2042. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2043. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2044. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2045. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2046. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2047. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2048. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2049. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2050. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2051. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2052. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2053. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2054. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2055. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2056. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2057. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2059. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2060. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2061. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2062. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2063. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2064. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2065. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2066. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2067. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2068. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2069. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2070. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2071. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2072. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2073. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2074. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2075. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2076. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2077. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2078. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2079. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2080. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2081. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2082. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2083. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2085. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2086. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2087. (while l (org-defkey org-agenda-mode-map
  2088. (number-to-string (pop l)) #'digit-argument)))
  2089. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2090. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2091. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2092. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2093. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2094. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2095. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2096. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2097. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2098. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2099. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2100. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2101. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2102. #'org-clock-modify-effort-estimate)
  2103. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2104. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2105. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2106. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2107. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2108. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2109. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2110. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2111. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2112. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2113. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2114. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2115. (substitute-key-definition #'next-line #'org-agenda-next-line
  2116. org-agenda-mode-map global-map)
  2117. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2118. org-agenda-mode-map global-map)
  2119. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2120. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2121. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2122. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2123. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2124. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2125. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2126. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2127. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2128. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2129. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2130. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2131. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2132. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2133. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2134. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2135. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2136. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2137. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2138. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2139. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2140. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2141. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2142. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2143. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2144. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2145. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2146. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2147. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2148. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2149. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2150. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2151. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2152. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2153. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2154. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2155. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2156. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2157. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2158. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2159. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2160. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2161. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2162. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2163. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2164. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2165. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2166. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2167. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2168. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2169. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2170. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2171. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2172. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2173. (when org-agenda-mouse-1-follows-link
  2174. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2175. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2176. '("Agenda"
  2177. ("Agenda Files")
  2178. "--"
  2179. ("Agenda Dates"
  2180. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2181. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2182. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2183. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2184. "--"
  2185. ("View"
  2186. ["Day View" org-agenda-day-view
  2187. :active (org-agenda-check-type nil 'agenda)
  2188. :style radio :selected (eq org-agenda-current-span 'day)
  2189. :keys "v d (or just d)"]
  2190. ["Week View" org-agenda-week-view
  2191. :active (org-agenda-check-type nil 'agenda)
  2192. :style radio :selected (eq org-agenda-current-span 'week)
  2193. :keys "v w"]
  2194. ["Fortnight View" org-agenda-fortnight-view
  2195. :active (org-agenda-check-type nil 'agenda)
  2196. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2197. :keys "v t"]
  2198. ["Month View" org-agenda-month-view
  2199. :active (org-agenda-check-type nil 'agenda)
  2200. :style radio :selected (eq org-agenda-current-span 'month)
  2201. :keys "v m"]
  2202. ["Year View" org-agenda-year-view
  2203. :active (org-agenda-check-type nil 'agenda)
  2204. :style radio :selected (eq org-agenda-current-span 'year)
  2205. :keys "v y"]
  2206. "--"
  2207. ["Include Diary" org-agenda-toggle-diary
  2208. :style toggle :selected org-agenda-include-diary
  2209. :active (org-agenda-check-type nil 'agenda)]
  2210. ["Include Deadlines" org-agenda-toggle-deadlines
  2211. :style toggle :selected org-agenda-include-deadlines
  2212. :active (org-agenda-check-type nil 'agenda)]
  2213. ["Use Time Grid" org-agenda-toggle-time-grid
  2214. :style toggle :selected org-agenda-use-time-grid
  2215. :active (org-agenda-check-type nil 'agenda)]
  2216. "--"
  2217. ["Show clock report" org-agenda-clockreport-mode
  2218. :style toggle :selected org-agenda-clockreport-mode
  2219. :active (org-agenda-check-type nil 'agenda)]
  2220. ["Show some entry text" org-agenda-entry-text-mode
  2221. :style toggle :selected org-agenda-entry-text-mode
  2222. :active t]
  2223. "--"
  2224. ["Show Logbook entries" org-agenda-log-mode
  2225. :style toggle :selected org-agenda-show-log
  2226. :active (org-agenda-check-type nil 'agenda)
  2227. :keys "v l (or just l)"]
  2228. ["Include archived trees" org-agenda-archives-mode
  2229. :style toggle :selected org-agenda-archives-mode :active t
  2230. :keys "v a"]
  2231. ["Include archive files" (org-agenda-archives-mode t)
  2232. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2233. :keys "v A"]
  2234. "--"
  2235. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2236. ("Filter current view"
  2237. ["with generic interface" org-agenda-filter t]
  2238. "--"
  2239. ["by category at cursor" org-agenda-filter-by-category t]
  2240. ["by tag" org-agenda-filter-by-tag t]
  2241. ["by effort" org-agenda-filter-by-effort t]
  2242. ["by regexp" org-agenda-filter-by-regexp t]
  2243. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2244. "--"
  2245. ["Remove all filtering" org-agenda-filter-remove-all t]
  2246. "--"
  2247. ["limit" org-agenda-limit-interactively t])
  2248. ["Rebuild buffer" org-agenda-redo t]
  2249. ["Write view to file" org-agenda-write t]
  2250. ["Save all Org buffers" org-save-all-org-buffers t]
  2251. "--"
  2252. ["Show original entry" org-agenda-show t]
  2253. ["Go To (other window)" org-agenda-goto t]
  2254. ["Go To (this window)" org-agenda-switch-to t]
  2255. ["Capture with cursor date" org-agenda-capture t]
  2256. ["Follow Mode" org-agenda-follow-mode
  2257. :style toggle :selected org-agenda-follow-mode :active t]
  2258. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2259. "--"
  2260. ("TODO"
  2261. ["Cycle TODO" org-agenda-todo t]
  2262. ["Next TODO set" org-agenda-todo-nextset t]
  2263. ["Previous TODO set" org-agenda-todo-previousset t]
  2264. ["Add note" org-agenda-add-note t])
  2265. ("Archive/Refile/Delete"
  2266. ["Archive default" org-agenda-archive-default t]
  2267. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2268. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2269. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2270. ["Archive subtree" org-agenda-archive t]
  2271. "--"
  2272. ["Refile" org-agenda-refile t]
  2273. "--"
  2274. ["Delete subtree" org-agenda-kill t])
  2275. ("Bulk action"
  2276. ["Mark entry" org-agenda-bulk-mark t]
  2277. ["Mark all" org-agenda-bulk-mark-all t]
  2278. ["Unmark entry" org-agenda-bulk-unmark t]
  2279. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2280. ["Toggle mark" org-agenda-bulk-toggle t]
  2281. ["Toggle all" org-agenda-bulk-toggle-all t]
  2282. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2283. ["Act on all marked" org-agenda-bulk-action t]
  2284. "--"
  2285. ("Tags and Properties"
  2286. ["Show all Tags" org-agenda-show-tags t]
  2287. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2288. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2289. "--"
  2290. ["Column View" org-columns t])
  2291. ("Deadline/Schedule"
  2292. ["Schedule" org-agenda-schedule t]
  2293. ["Set Deadline" org-agenda-deadline t]
  2294. "--"
  2295. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2296. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2297. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2298. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2299. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2300. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2301. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2302. ("Clock and Effort"
  2303. ["Clock in" org-agenda-clock-in t]
  2304. ["Clock out" org-agenda-clock-out t]
  2305. ["Clock cancel" org-agenda-clock-cancel t]
  2306. ["Goto running clock" org-clock-goto t]
  2307. "--"
  2308. ["Set Effort" org-agenda-set-effort t]
  2309. ["Change clocked effort" org-clock-modify-effort-estimate
  2310. (org-clock-is-active)])
  2311. ("Priority"
  2312. ["Set Priority" org-agenda-priority t]
  2313. ["Increase Priority" org-agenda-priority-up t]
  2314. ["Decrease Priority" org-agenda-priority-down t]
  2315. ["Show Priority" org-priority-show t])
  2316. ("Calendar/Diary"
  2317. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2318. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2319. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2320. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2321. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2322. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2323. "--"
  2324. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2325. "--"
  2326. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2327. "--"
  2328. ("MobileOrg"
  2329. ["Push Files and Views" org-mobile-push t]
  2330. ["Get Captured and Flagged" org-mobile-pull t]
  2331. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2332. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2333. "--"
  2334. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2335. "--"
  2336. ["Quit" org-agenda-quit t]
  2337. ["Exit and Release Buffers" org-agenda-exit t]
  2338. ))
  2339. ;;; Agenda undo
  2340. (defvar org-agenda-allow-remote-undo t
  2341. "Non-nil means allow remote undo from the agenda buffer.")
  2342. (defvar org-agenda-undo-has-started-in nil
  2343. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2344. (defun org-agenda-undo ()
  2345. "Undo a remote editing step in the agenda.
  2346. This undoes changes both in the agenda buffer and in the remote buffer
  2347. that have been changed along."
  2348. (interactive)
  2349. (or org-agenda-allow-remote-undo
  2350. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2351. (when (not (eq this-command last-command))
  2352. (setq org-agenda-undo-has-started-in nil
  2353. org-agenda-pending-undo-list org-agenda-undo-list))
  2354. (when (not org-agenda-pending-undo-list)
  2355. (user-error "No further undo information"))
  2356. (let* ((entry (pop org-agenda-pending-undo-list))
  2357. buf line cmd rembuf)
  2358. (setq cmd (pop entry) line (pop entry))
  2359. (setq rembuf (nth 2 entry))
  2360. (org-with-remote-undo rembuf
  2361. (while (bufferp (setq buf (pop entry)))
  2362. (when (pop entry)
  2363. (with-current-buffer buf
  2364. (let ((last-undo-buffer buf)
  2365. (inhibit-read-only t))
  2366. (unless (memq buf org-agenda-undo-has-started-in)
  2367. (push buf org-agenda-undo-has-started-in)
  2368. (make-local-variable 'pending-undo-list)
  2369. (undo-start))
  2370. (while (and pending-undo-list
  2371. (listp pending-undo-list)
  2372. (not (car pending-undo-list)))
  2373. (pop pending-undo-list))
  2374. (undo-more 1))))))
  2375. (org-goto-line line)
  2376. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2377. (defun org-verify-change-for-undo (l1 l2)
  2378. "Verify that a real change occurred between the undo lists L1 and L2."
  2379. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2380. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2381. (not (eq l1 l2)))
  2382. ;;; Agenda dispatch
  2383. (defvar org-agenda-restrict-begin (make-marker))
  2384. (defvar org-agenda-restrict-end (make-marker))
  2385. (defvar org-agenda-last-dispatch-buffer nil)
  2386. (defvar org-agenda-overriding-restriction nil)
  2387. (defcustom org-agenda-custom-commands-contexts nil
  2388. "Alist of custom agenda keys and contextual rules.
  2389. For example, if you have a custom agenda command \"p\" and you
  2390. want this command to be accessible only from plain text files,
  2391. use this:
  2392. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2393. Here are the available contexts definitions:
  2394. in-file: command displayed only in matching files
  2395. in-mode: command displayed only in matching modes
  2396. not-in-file: command not displayed in matching files
  2397. not-in-mode: command not displayed in matching modes
  2398. in-buffer: command displayed only in matching buffers
  2399. not-in-buffer: command not displayed in matching buffers
  2400. [function]: a custom function taking no argument
  2401. If you define several checks, the agenda command will be
  2402. accessible if there is at least one valid check.
  2403. You can also bind a key to another agenda custom command
  2404. depending on contextual rules.
  2405. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2406. Here it means: in .txt files, use \"p\" as the key for the
  2407. agenda command otherwise associated with \"q\". (The command
  2408. originally associated with \"q\" is not displayed to avoid
  2409. duplicates.)"
  2410. :version "24.3"
  2411. :group 'org-agenda-custom-commands
  2412. :type '(repeat (list :tag "Rule"
  2413. (string :tag " Agenda key")
  2414. (string :tag "Replace by command")
  2415. (repeat :tag "Available when"
  2416. (choice
  2417. (cons :tag "Condition"
  2418. (choice
  2419. (const :tag "In file" in-file)
  2420. (const :tag "Not in file" not-in-file)
  2421. (const :tag "In buffer" in-buffer)
  2422. (const :tag "Not in buffer" not-in-buffer)
  2423. (const :tag "In mode" in-mode)
  2424. (const :tag "Not in mode" not-in-mode))
  2425. (regexp))
  2426. (function :tag "Custom function"))))))
  2427. (defcustom org-agenda-max-entries nil
  2428. "Maximum number of entries to display in an agenda.
  2429. This can be nil (no limit) or an integer or an alist of agenda
  2430. types with an associated number of entries to display in this
  2431. type."
  2432. :version "24.4"
  2433. :package-version '(Org . "8.0")
  2434. :group 'org-agenda-custom-commands
  2435. :type '(choice (symbol :tag "No limit" nil)
  2436. (integer :tag "Max number of entries")
  2437. (repeat
  2438. (cons (choice :tag "Agenda type"
  2439. (const agenda)
  2440. (const todo)
  2441. (const tags)
  2442. (const search))
  2443. (integer :tag "Max number of entries")))))
  2444. (defcustom org-agenda-max-todos nil
  2445. "Maximum number of TODOs to display in an agenda.
  2446. This can be nil (no limit) or an integer or an alist of agenda
  2447. types with an associated number of entries to display in this
  2448. type."
  2449. :version "24.4"
  2450. :package-version '(Org . "8.0")
  2451. :group 'org-agenda-custom-commands
  2452. :type '(choice (symbol :tag "No limit" nil)
  2453. (integer :tag "Max number of TODOs")
  2454. (repeat
  2455. (cons (choice :tag "Agenda type"
  2456. (const agenda)
  2457. (const todo)
  2458. (const tags)
  2459. (const search))
  2460. (integer :tag "Max number of TODOs")))))
  2461. (defcustom org-agenda-max-tags nil
  2462. "Maximum number of tagged entries to display in an agenda.
  2463. This can be nil (no limit) or an integer or an alist of agenda
  2464. types with an associated number of entries to display in this
  2465. type."
  2466. :version "24.4"
  2467. :package-version '(Org . "8.0")
  2468. :group 'org-agenda-custom-commands
  2469. :type '(choice (symbol :tag "No limit" nil)
  2470. (integer :tag "Max number of tagged entries")
  2471. (repeat
  2472. (cons (choice :tag "Agenda type"
  2473. (const agenda)
  2474. (const todo)
  2475. (const tags)
  2476. (const search))
  2477. (integer :tag "Max number of tagged entries")))))
  2478. (defcustom org-agenda-max-effort nil
  2479. "Maximum cumulated effort duration for the agenda.
  2480. This can be nil (no limit) or a number of minutes (as an integer)
  2481. or an alist of agenda types with an associated number of minutes
  2482. to limit entries to in this type."
  2483. :version "24.4"
  2484. :package-version '(Org . "8.0")
  2485. :group 'org-agenda-custom-commands
  2486. :type '(choice (symbol :tag "No limit" nil)
  2487. (integer :tag "Max number of minutes")
  2488. (repeat
  2489. (cons (choice :tag "Agenda type"
  2490. (const agenda)
  2491. (const todo)
  2492. (const tags)
  2493. (const search))
  2494. (integer :tag "Max number of minutes")))))
  2495. (defvar org-agenda-keep-restricted-file-list nil)
  2496. (defvar org-keys nil)
  2497. (defvar org-match nil)
  2498. ;;;###autoload
  2499. (defun org-agenda (&optional arg org-keys restriction)
  2500. "Dispatch agenda commands to collect entries to the agenda buffer.
  2501. Prompts for a command to execute. Any prefix arg will be passed
  2502. on to the selected command. The default selections are:
  2503. a Call `org-agenda-list' to display the agenda for current day or week.
  2504. t Call `org-todo-list' to display the global todo list.
  2505. T Call `org-todo-list' to display the global todo list, select only
  2506. entries with a specific TODO keyword (the user gets a prompt).
  2507. m Call `org-tags-view' to display headlines with tags matching
  2508. a condition (the user is prompted for the condition).
  2509. M Like `m', but select only TODO entries, no ordinary headlines.
  2510. e Export views to associated files.
  2511. s Search entries for keywords.
  2512. S Search entries for keywords, only with TODO keywords.
  2513. / Multi occur across all agenda files and also files listed
  2514. in `org-agenda-text-search-extra-files'.
  2515. < Restrict agenda commands to buffer, subtree, or region.
  2516. Press several times to get the desired effect.
  2517. > Remove a previous restriction.
  2518. # List \"stuck\" projects.
  2519. ! Configure what \"stuck\" means.
  2520. C Configure custom agenda commands.
  2521. More commands can be added by configuring the variable
  2522. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2523. searches can be pre-defined in this way.
  2524. If the current buffer is in Org mode and visiting a file, you can also
  2525. first press `<' once to indicate that the agenda should be temporarily
  2526. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2527. Pressing `<' twice means to restrict to the current subtree or region
  2528. \(if active)."
  2529. (interactive "P")
  2530. (catch 'exit
  2531. (let* ((prefix-descriptions nil)
  2532. (org-agenda-buffer-name org-agenda-buffer-name)
  2533. (org-agenda-window-setup (if (equal (buffer-name)
  2534. org-agenda-buffer-name)
  2535. 'current-window
  2536. org-agenda-window-setup))
  2537. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2538. (org-agenda-custom-commands
  2539. ;; normalize different versions
  2540. (delq nil
  2541. (mapcar
  2542. (lambda (x)
  2543. (cond ((stringp (cdr x))
  2544. (push x prefix-descriptions)
  2545. nil)
  2546. ((stringp (nth 1 x)) x)
  2547. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2548. (t (cons (car x) (cons "" (cdr x))))))
  2549. org-agenda-custom-commands)))
  2550. (org-agenda-custom-commands
  2551. (org-contextualize-keys
  2552. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2553. (buf (current-buffer))
  2554. (bfn (buffer-file-name (buffer-base-buffer)))
  2555. entry key type org-match lprops ans)
  2556. ;; Turn off restriction unless there is an overriding one,
  2557. (unless org-agenda-overriding-restriction
  2558. (unless org-agenda-keep-restricted-file-list
  2559. ;; There is a request to keep the file list in place
  2560. (put 'org-agenda-files 'org-restrict nil))
  2561. (setq org-agenda-restrict nil)
  2562. (move-marker org-agenda-restrict-begin nil)
  2563. (move-marker org-agenda-restrict-end nil))
  2564. ;; Delete old local properties
  2565. (put 'org-agenda-redo-command 'org-lprops nil)
  2566. ;; Delete previously set last-arguments
  2567. (put 'org-agenda-redo-command 'last-args nil)
  2568. ;; Remember where this call originated
  2569. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2570. (unless org-keys
  2571. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2572. org-keys (car ans)
  2573. restriction (cdr ans)))
  2574. ;; If we have sticky agenda buffers, set a name for the buffer,
  2575. ;; depending on the invoking keys. The user may still set this
  2576. ;; as a command option, which will overwrite what we do here.
  2577. (when org-agenda-sticky
  2578. (setq org-agenda-buffer-name
  2579. (format "*Org Agenda(%s)*" org-keys)))
  2580. ;; Establish the restriction, if any
  2581. (when (and (not org-agenda-overriding-restriction) restriction)
  2582. (put 'org-agenda-files 'org-restrict (list bfn))
  2583. (cond
  2584. ((eq restriction 'region)
  2585. (setq org-agenda-restrict (current-buffer))
  2586. (move-marker org-agenda-restrict-begin (region-beginning))
  2587. (move-marker org-agenda-restrict-end (region-end)))
  2588. ((eq restriction 'subtree)
  2589. (save-excursion
  2590. (setq org-agenda-restrict (current-buffer))
  2591. (org-back-to-heading t)
  2592. (move-marker org-agenda-restrict-begin (point))
  2593. (move-marker org-agenda-restrict-end
  2594. (progn (org-end-of-subtree t)))))
  2595. ((and (eq restriction 'buffer)
  2596. (or (< 1 (point-min))
  2597. (< (point-max) (1+ (buffer-size)))))
  2598. (setq org-agenda-restrict (current-buffer))
  2599. (move-marker org-agenda-restrict-begin (point-min))
  2600. (move-marker org-agenda-restrict-end (point-max)))))
  2601. ;; For example the todo list should not need it (but does...)
  2602. (cond
  2603. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2604. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2605. (progn
  2606. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2607. lprops (nth 4 entry))
  2608. (when org-agenda-sticky
  2609. (setq org-agenda-buffer-name
  2610. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2611. (format "*Org Agenda(%s)*" org-keys))))
  2612. (put 'org-agenda-redo-command 'org-lprops lprops)
  2613. (cond
  2614. ((eq type 'agenda)
  2615. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2616. ((eq type 'agenda*)
  2617. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2618. ((eq type 'alltodo)
  2619. (org-let lprops '(org-todo-list current-prefix-arg)))
  2620. ((eq type 'search)
  2621. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2622. ((eq type 'stuck)
  2623. (org-let lprops '(org-agenda-list-stuck-projects
  2624. current-prefix-arg)))
  2625. ((eq type 'tags)
  2626. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2627. ((eq type 'tags-todo)
  2628. (org-let lprops '(org-tags-view '(4) org-match)))
  2629. ((eq type 'todo)
  2630. (org-let lprops '(org-todo-list org-match)))
  2631. ((eq type 'tags-tree)
  2632. (org-check-for-org-mode)
  2633. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2634. ((eq type 'todo-tree)
  2635. (org-check-for-org-mode)
  2636. (org-let lprops
  2637. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2638. (regexp-quote org-match) "\\>"))))
  2639. ((eq type 'occur-tree)
  2640. (org-check-for-org-mode)
  2641. (org-let lprops '(org-occur org-match)))
  2642. ((functionp type)
  2643. (org-let lprops '(funcall type org-match)))
  2644. ((fboundp type)
  2645. (org-let lprops '(funcall type org-match)))
  2646. (t (user-error "Invalid custom agenda command type %s" type))))
  2647. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2648. ((equal org-keys "C")
  2649. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2650. (customize-variable 'org-agenda-custom-commands))
  2651. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2652. ((equal org-keys "s") (call-interactively 'org-search-view))
  2653. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2654. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2655. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2656. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2657. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2658. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2659. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2660. (add-hook
  2661. 'post-command-hook
  2662. (lambda ()
  2663. (unless (current-message)
  2664. (let* ((m (org-agenda-get-any-marker))
  2665. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2666. (when note
  2667. (message "FLAGGING-NOTE ([?] for more info): %s"
  2668. (org-add-props
  2669. (replace-regexp-in-string
  2670. "\\\\n" "//"
  2671. (copy-sequence note))
  2672. nil 'face 'org-warning))))))
  2673. t t))
  2674. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2675. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2676. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2677. (t (user-error "Invalid agenda key"))))))
  2678. (defvar org-agenda-multi)
  2679. (defun org-agenda-append-agenda ()
  2680. "Append another agenda view to the current one.
  2681. This function allows interactive building of block agendas.
  2682. Agenda views are separated by `org-agenda-block-separator'."
  2683. (interactive)
  2684. (unless (derived-mode-p 'org-agenda-mode)
  2685. (user-error "Can only append from within agenda buffer"))
  2686. (let ((org-agenda-multi t))
  2687. (org-agenda)
  2688. (widen)
  2689. (org-agenda-finalize)
  2690. (setq buffer-read-only t)
  2691. (org-agenda-fit-window-to-buffer)))
  2692. (defun org-agenda-normalize-custom-commands (cmds)
  2693. "Normalize custom commands CMDS."
  2694. (delq nil
  2695. (mapcar
  2696. (lambda (x)
  2697. (cond ((stringp (cdr x)) nil)
  2698. ((stringp (nth 1 x)) x)
  2699. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2700. (t (cons (car x) (cons "" (cdr x))))))
  2701. cmds)))
  2702. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2703. "The user interface for selecting an agenda command."
  2704. (catch 'exit
  2705. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2706. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2707. (region-p (org-region-active-p))
  2708. (custom org-agenda-custom-commands)
  2709. (selstring "")
  2710. restriction second-time
  2711. c entry key type match prefixes rmheader header-end custom1 desc
  2712. line lines left right n n1)
  2713. (save-window-excursion
  2714. (delete-other-windows)
  2715. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2716. (erase-buffer)
  2717. (insert (eval-when-compile
  2718. (let ((header
  2719. (copy-sequence
  2720. "Press key for an agenda command:
  2721. -------------------------------- < Buffer, subtree/region restriction
  2722. a Agenda for current week or day > Remove restriction
  2723. t List of all TODO entries e Export agenda views
  2724. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2725. s Search for keywords M Like m, but only TODO entries
  2726. / Multi-occur S Like s, but only TODO entries
  2727. ? Find :FLAGGED: entries C Configure custom agenda commands
  2728. * Toggle sticky agenda views # List stuck projects (!=configure)
  2729. "))
  2730. (start 0))
  2731. (while (string-match
  2732. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2733. header start)
  2734. (setq start (match-end 0))
  2735. (add-text-properties (match-beginning 2) (match-end 2)
  2736. '(face bold) header))
  2737. header)))
  2738. (setq header-end (point-marker))
  2739. (while t
  2740. (setq custom1 custom)
  2741. (when (eq rmheader t)
  2742. (org-goto-line 1)
  2743. (re-search-forward ":" nil t)
  2744. (delete-region (match-end 0) (point-at-eol))
  2745. (forward-char 1)
  2746. (looking-at "-+")
  2747. (delete-region (match-end 0) (point-at-eol))
  2748. (move-marker header-end (match-end 0)))
  2749. (goto-char header-end)
  2750. (delete-region (point) (point-max))
  2751. ;; Produce all the lines that describe custom commands and prefixes
  2752. (setq lines nil)
  2753. (while (setq entry (pop custom1))
  2754. (setq key (car entry) desc (nth 1 entry)
  2755. type (nth 2 entry)
  2756. match (nth 3 entry))
  2757. (if (> (length key) 1)
  2758. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2759. (setq line
  2760. (format
  2761. "%-4s%-14s"
  2762. (org-add-props (copy-sequence key)
  2763. '(face bold))
  2764. (cond
  2765. ((string-match "\\S-" desc) desc)
  2766. ((eq type 'agenda) "Agenda for current week or day")
  2767. ((eq type 'agenda*) "Appointments for current week or day")
  2768. ((eq type 'alltodo) "List of all TODO entries")
  2769. ((eq type 'search) "Word search")
  2770. ((eq type 'stuck) "List of stuck projects")
  2771. ((eq type 'todo) "TODO keyword")
  2772. ((eq type 'tags) "Tags query")
  2773. ((eq type 'tags-todo) "Tags (TODO)")
  2774. ((eq type 'tags-tree) "Tags tree")
  2775. ((eq type 'todo-tree) "TODO kwd tree")
  2776. ((eq type 'occur-tree) "Occur tree")
  2777. ((functionp type) (if (symbolp type)
  2778. (symbol-name type)
  2779. "Lambda expression"))
  2780. (t "???"))))
  2781. (cond
  2782. ((not (org-string-nw-p match)) nil)
  2783. (org-agenda-menu-show-matcher
  2784. (setq line
  2785. (concat line ": "
  2786. (cond
  2787. ((stringp match)
  2788. (propertize match 'face 'org-warning))
  2789. ((listp type)
  2790. (format "set of %d commands" (length type)))))))
  2791. (t
  2792. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2793. (push line lines)))
  2794. (setq lines (nreverse lines))
  2795. (when prefixes
  2796. (mapc (lambda (x)
  2797. (push
  2798. (format "%s %s"
  2799. (org-add-props (char-to-string x)
  2800. nil 'face 'bold)
  2801. (or (cdr (assoc (concat selstring
  2802. (char-to-string x))
  2803. prefix-descriptions))
  2804. "Prefix key"))
  2805. lines))
  2806. prefixes))
  2807. ;; Check if we should display in two columns
  2808. (if org-agenda-menu-two-columns
  2809. (progn
  2810. (setq n (length lines)
  2811. n1 (+ (/ n 2) (mod n 2))
  2812. right (nthcdr n1 lines)
  2813. left (copy-sequence lines))
  2814. (setcdr (nthcdr (1- n1) left) nil))
  2815. (setq left lines right nil))
  2816. (while left
  2817. (insert "\n" (pop left))
  2818. (when right
  2819. (if (< (current-column) 40)
  2820. (move-to-column 40 t)
  2821. (insert " "))
  2822. (insert (pop right))))
  2823. ;; Make the window the right size
  2824. (goto-char (point-min))
  2825. (if second-time
  2826. (when (not (pos-visible-in-window-p (point-max)))
  2827. (org-fit-window-to-buffer))
  2828. (setq second-time t)
  2829. (org-fit-window-to-buffer))
  2830. ;; Hint to navigation if window too small for all information
  2831. (setq header-line-format
  2832. (when (not (pos-visible-in-window-p (point-max)))
  2833. "Use C-v, M-v, C-n or C-p to navigate."))
  2834. ;; Ask for selection
  2835. (cl-loop
  2836. do (progn
  2837. (message "Press key for agenda command%s:"
  2838. (if (or restrict-ok org-agenda-overriding-restriction)
  2839. (if org-agenda-overriding-restriction
  2840. " (restriction lock active)"
  2841. (if restriction
  2842. (format " (restricted to %s)" restriction)
  2843. " (unrestricted)"))
  2844. ""))
  2845. (setq c (read-char-exclusive)))
  2846. until (not (memq c '(14 16 22 134217846)))
  2847. do (org-scroll c))
  2848. (message "")
  2849. (cond
  2850. ((assoc (char-to-string c) custom)
  2851. (setq selstring (concat selstring (char-to-string c)))
  2852. (throw 'exit (cons selstring restriction)))
  2853. ((memq c prefixes)
  2854. (setq selstring (concat selstring (char-to-string c))
  2855. prefixes nil
  2856. rmheader (or rmheader t)
  2857. custom (delq nil (mapcar
  2858. (lambda (x)
  2859. (if (or (= (length (car x)) 1)
  2860. (/= (string-to-char (car x)) c))
  2861. nil
  2862. (cons (substring (car x) 1) (cdr x))))
  2863. custom))))
  2864. ((eq c ?*)
  2865. (call-interactively 'org-toggle-sticky-agenda)
  2866. (sit-for 2))
  2867. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2868. (message "Restriction is only possible in Org buffers")
  2869. (ding) (sit-for 1))
  2870. ((eq c ?1)
  2871. (org-agenda-remove-restriction-lock 'noupdate)
  2872. (setq restriction 'buffer))
  2873. ((eq c ?0)
  2874. (org-agenda-remove-restriction-lock 'noupdate)
  2875. (setq restriction (if region-p 'region 'subtree)))
  2876. ((eq c ?<)
  2877. (org-agenda-remove-restriction-lock 'noupdate)
  2878. (setq restriction
  2879. (cond
  2880. ((eq restriction 'buffer)
  2881. (if region-p 'region 'subtree))
  2882. ((memq restriction '(subtree region))
  2883. nil)
  2884. (t 'buffer))))
  2885. ((eq c ?>)
  2886. (org-agenda-remove-restriction-lock 'noupdate)
  2887. (setq restriction nil))
  2888. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2889. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2890. ((and (> (length selstring) 0) (eq c ?\d))
  2891. (delete-window)
  2892. (org-agenda-get-restriction-and-command prefix-descriptions))
  2893. ((equal c ?q) (error "Abort"))
  2894. (t (user-error "Invalid key %c" c))))))))
  2895. (defun org-agenda-fit-window-to-buffer ()
  2896. "Fit the window to the buffer size."
  2897. (and (memq org-agenda-window-setup '(reorganize-frame))
  2898. (fboundp 'fit-window-to-buffer)
  2899. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2900. (= (car org-agenda-window-frame-fractions) 1.0))
  2901. (delete-other-windows)
  2902. (org-fit-window-to-buffer
  2903. nil
  2904. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2905. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2906. (defvar org-cmd nil)
  2907. (defvar org-agenda-overriding-cmd nil)
  2908. (defvar org-agenda-overriding-arguments nil)
  2909. (defvar org-agenda-overriding-cmd-arguments nil)
  2910. (defun org-agenda-run-series (name series)
  2911. "Run agenda NAME as a SERIES of agenda commands."
  2912. (org-let (nth 1 series) '(org-agenda-prepare name))
  2913. ;; We need to reset agenda markers here, because when constructing a
  2914. ;; block agenda, the individual blocks do not do that.
  2915. (org-agenda-reset-markers)
  2916. (let* ((org-agenda-multi t)
  2917. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2918. (cmds (car series))
  2919. (gprops (nth 1 series))
  2920. match ;; The byte compiler incorrectly complains about this. Keep it!
  2921. org-cmd type lprops)
  2922. (while (setq org-cmd (pop cmds))
  2923. (setq type (car org-cmd))
  2924. (setq match (eval (nth 1 org-cmd)))
  2925. (setq lprops (nth 2 org-cmd))
  2926. (let ((org-agenda-overriding-arguments
  2927. (if (eq org-agenda-overriding-cmd org-cmd)
  2928. (or org-agenda-overriding-arguments
  2929. org-agenda-overriding-cmd-arguments))))
  2930. (cond
  2931. ((eq type 'agenda)
  2932. (org-let2 gprops lprops
  2933. '(call-interactively 'org-agenda-list)))
  2934. ((eq type 'agenda*)
  2935. (org-let2 gprops lprops
  2936. '(funcall 'org-agenda-list nil nil t)))
  2937. ((eq type 'alltodo)
  2938. (org-let2 gprops lprops
  2939. '(call-interactively 'org-todo-list)))
  2940. ((eq type 'search)
  2941. (org-let2 gprops lprops
  2942. '(org-search-view current-prefix-arg match nil)))
  2943. ((eq type 'stuck)
  2944. (org-let2 gprops lprops
  2945. '(call-interactively 'org-agenda-list-stuck-projects)))
  2946. ((eq type 'tags)
  2947. (org-let2 gprops lprops
  2948. '(org-tags-view current-prefix-arg match)))
  2949. ((eq type 'tags-todo)
  2950. (org-let2 gprops lprops
  2951. '(org-tags-view '(4) match)))
  2952. ((eq type 'todo)
  2953. (org-let2 gprops lprops
  2954. '(org-todo-list match)))
  2955. ((fboundp type)
  2956. (org-let2 gprops lprops
  2957. '(funcall type match)))
  2958. (t (error "Invalid type in command series")))))
  2959. (widen)
  2960. (let ((inhibit-read-only t))
  2961. (add-text-properties (point-min) (point-max)
  2962. `(org-series t org-series-redo-cmd ,redo)))
  2963. (setq org-agenda-redo-command redo)
  2964. (goto-char (point-min)))
  2965. (org-agenda-fit-window-to-buffer)
  2966. (org-let (nth 1 series) '(org-agenda-finalize)))
  2967. ;;;###autoload
  2968. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2969. "Run an agenda command in batch mode and send the result to STDOUT.
  2970. If CMD-KEY is a string of length 1, it is used as a key in
  2971. `org-agenda-custom-commands' and triggers this command. If it is a
  2972. longer string it is used as a tags/todo match string.
  2973. Parameters are alternating variable names and values that will be bound
  2974. before running the agenda command."
  2975. (org-eval-in-environment (org-make-parameter-alist parameters)
  2976. (let (org-agenda-sticky)
  2977. (if (> (length cmd-key) 1)
  2978. (org-tags-view nil cmd-key)
  2979. (org-agenda nil cmd-key))))
  2980. (set-buffer org-agenda-buffer-name)
  2981. (princ (buffer-string)))
  2982. (defvar org-agenda-info nil)
  2983. ;;;###autoload
  2984. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2985. "Run an agenda command in batch mode and send the result to STDOUT.
  2986. If CMD-KEY is a string of length 1, it is used as a key in
  2987. `org-agenda-custom-commands' and triggers this command. If it is a
  2988. longer string it is used as a tags/todo match string.
  2989. Parameters are alternating variable names and values that will be bound
  2990. before running the agenda command.
  2991. The output gives a line for each selected agenda item. Each
  2992. item is a list of comma-separated values, like this:
  2993. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2994. category The category of the item
  2995. head The headline, without TODO kwd, TAGS and PRIORITY
  2996. type The type of the agenda entry, can be
  2997. todo selected in TODO match
  2998. tagsmatch selected in tags match
  2999. diary imported from diary
  3000. deadline a deadline on given date
  3001. scheduled scheduled on given date
  3002. timestamp entry has timestamp on given date
  3003. closed entry was closed on given date
  3004. upcoming-deadline warning about deadline
  3005. past-scheduled forwarded scheduled item
  3006. block entry has date block including g. date
  3007. todo The todo keyword, if any
  3008. tags All tags including inherited ones, separated by colons
  3009. date The relevant date, like 2007-2-14
  3010. time The time, like 15:00-16:50
  3011. extra String with extra planning info
  3012. priority-l The priority letter if any was given
  3013. priority-n The computed numerical priority
  3014. agenda-day The day in the agenda where this is listed"
  3015. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  3016. (org-make-parameter-alist parameters))
  3017. (if (> (length cmd-key) 2)
  3018. (org-tags-view nil cmd-key)
  3019. (org-agenda nil cmd-key)))
  3020. (set-buffer org-agenda-buffer-name)
  3021. (let ((lines (org-split-string (buffer-string) "\n")))
  3022. (dolist (line lines)
  3023. (when (get-text-property 0 'org-category line)
  3024. (setq org-agenda-info
  3025. (org-fix-agenda-info (text-properties-at 0 line)))
  3026. (princ
  3027. (mapconcat 'org-agenda-export-csv-mapper
  3028. '(org-category txt type todo tags date time extra
  3029. priority-letter priority agenda-day)
  3030. ","))
  3031. (princ "\n")))))
  3032. (defun org-fix-agenda-info (props)
  3033. "Make sure all properties on an agenda item have a canonical form.
  3034. This ensures the export commands can easily use it."
  3035. (let (tmp re)
  3036. (when (setq tmp (plist-get props 'tags))
  3037. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3038. (when (setq tmp (plist-get props 'date))
  3039. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3040. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3041. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3042. (setq tmp (calendar-date-string tmp)))
  3043. (setq props (plist-put props 'date tmp)))
  3044. (when (setq tmp (plist-get props 'day))
  3045. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3046. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3047. (setq tmp (calendar-date-string tmp)))
  3048. (setq props (plist-put props 'day tmp))
  3049. (setq props (plist-put props 'agenda-day tmp)))
  3050. (when (setq tmp (plist-get props 'txt))
  3051. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3052. (plist-put props 'priority-letter (match-string 1 tmp))
  3053. (setq tmp (replace-match "" t t tmp)))
  3054. (when (and (setq re (plist-get props 'org-todo-regexp))
  3055. (setq re (concat "\\`\\.*" re " ?"))
  3056. (let ((case-fold-search nil)) (string-match re tmp)))
  3057. (plist-put props 'todo (match-string 1 tmp))
  3058. (setq tmp (replace-match "" t t tmp)))
  3059. (plist-put props 'txt tmp)))
  3060. props)
  3061. (defun org-agenda-export-csv-mapper (prop)
  3062. (let ((res (plist-get org-agenda-info prop)))
  3063. (setq res
  3064. (cond
  3065. ((not res) "")
  3066. ((stringp res) res)
  3067. (t (prin1-to-string res))))
  3068. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3069. ;;;###autoload
  3070. (defun org-store-agenda-views (&rest parameters)
  3071. "Store agenda views."
  3072. (interactive)
  3073. (eval (list 'org-batch-store-agenda-views)))
  3074. ;;;###autoload
  3075. (defmacro org-batch-store-agenda-views (&rest parameters)
  3076. "Run all custom agenda commands that have a file argument."
  3077. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3078. (pop-up-frames nil)
  3079. (dir default-directory)
  3080. (pars (org-make-parameter-alist parameters))
  3081. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3082. (save-window-excursion
  3083. (while cmds
  3084. (setq cmd (pop cmds)
  3085. thiscmdkey (car cmd)
  3086. thiscmdcmd (cdr cmd)
  3087. match (nth 2 thiscmdcmd)
  3088. bufname (if org-agenda-sticky
  3089. (or (and (stringp match)
  3090. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3091. (format "*Org Agenda(%s)*" thiscmdkey))
  3092. org-agenda-buffer-name)
  3093. cmd-or-set (nth 2 cmd)
  3094. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3095. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3096. (if (stringp files) (setq files (list files)))
  3097. (when files
  3098. (org-eval-in-environment (append org-agenda-exporter-settings
  3099. opts pars)
  3100. (org-agenda nil thiscmdkey))
  3101. (set-buffer bufname)
  3102. (while files
  3103. (org-eval-in-environment (append org-agenda-exporter-settings
  3104. opts pars)
  3105. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3106. (and (get-buffer bufname)
  3107. (kill-buffer bufname)))))))
  3108. (defvar org-agenda-current-span nil
  3109. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3110. (defun org-agenda-mark-header-line (pos)
  3111. "Mark the line at POS as an agenda structure header."
  3112. (save-excursion
  3113. (goto-char pos)
  3114. (put-text-property (point-at-bol) (point-at-eol)
  3115. 'org-agenda-structural-header t)
  3116. (when org-agenda-title-append
  3117. (put-text-property (point-at-bol) (point-at-eol)
  3118. 'org-agenda-title-append org-agenda-title-append))))
  3119. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3120. (defvar org-agenda-write-buffer-name "Agenda View")
  3121. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3122. "Write the current buffer (an agenda view) as a file.
  3123. Depending on the extension of the file name, plain text (.txt),
  3124. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3125. If the extension is .ics, translate visible agenda into iCalendar
  3126. format. If the extension is .org, collect all subtrees
  3127. corresponding to the agenda entries and add them in an .org file.
  3128. With prefix argument OPEN, open the new file immediately. If
  3129. NOSETTINGS is given, do not scope the settings of
  3130. `org-agenda-exporter-settings' into the export commands. This is
  3131. used when the settings have already been scoped and we do not
  3132. wish to overrule other, higher priority settings. If
  3133. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3134. the agenda to write."
  3135. (interactive "FWrite agenda to file: \nP")
  3136. (if (or (not (file-writable-p file))
  3137. (and (file-exists-p file)
  3138. (if (called-interactively-p 'any)
  3139. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3140. (user-error "Cannot write agenda to file %s" file))
  3141. (org-let (if nosettings nil org-agenda-exporter-settings)
  3142. '(save-excursion
  3143. (save-window-excursion
  3144. (let ((bs (copy-sequence (buffer-string)))
  3145. (extension (file-name-extension file))
  3146. (default-directory (file-name-directory file))
  3147. beg content)
  3148. (with-temp-buffer
  3149. (rename-buffer org-agenda-write-buffer-name t)
  3150. (set-buffer-modified-p nil)
  3151. (insert bs)
  3152. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3153. (run-hooks 'org-agenda-before-write-hook)
  3154. (cond
  3155. ((bound-and-true-p org-mobile-creating-agendas)
  3156. (org-mobile-write-agenda-for-mobile file))
  3157. ((string= "org" extension)
  3158. (let (content p m message-log-max)
  3159. (goto-char (point-min))
  3160. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3161. (goto-char p)
  3162. (setq m (get-text-property (point) 'org-hd-marker))
  3163. (when m
  3164. (push (save-excursion
  3165. (set-buffer (marker-buffer m))
  3166. (goto-char m)
  3167. (org-copy-subtree 1 nil t t)
  3168. org-subtree-clip)
  3169. content)))
  3170. (find-file file)
  3171. (erase-buffer)
  3172. (dolist (s content) (org-paste-subtree 1 s))
  3173. (write-file file)
  3174. (kill-buffer (current-buffer))
  3175. (message "Org file written to %s" file)))
  3176. ((member extension '("html" "htm"))
  3177. (or (require 'htmlize nil t)
  3178. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3179. (set-buffer (htmlize-buffer (current-buffer)))
  3180. (when org-agenda-export-html-style
  3181. ;; replace <style> section with org-agenda-export-html-style
  3182. (goto-char (point-min))
  3183. (kill-region (- (search-forward "<style") 6)
  3184. (search-forward "</style>"))
  3185. (insert org-agenda-export-html-style))
  3186. (write-file file)
  3187. (kill-buffer (current-buffer))
  3188. (message "HTML written to %s" file))
  3189. ((string= "ps" extension)
  3190. (require 'ps-print)
  3191. (ps-print-buffer-with-faces file)
  3192. (message "Postscript written to %s" file))
  3193. ((string= "pdf" extension)
  3194. (require 'ps-print)
  3195. (ps-print-buffer-with-faces
  3196. (concat (file-name-sans-extension file) ".ps"))
  3197. (call-process "ps2pdf" nil nil nil
  3198. (expand-file-name
  3199. (concat (file-name-sans-extension file) ".ps"))
  3200. (expand-file-name file))
  3201. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3202. (message "PDF written to %s" file))
  3203. ((string= "ics" extension)
  3204. (require 'ox-icalendar)
  3205. (org-icalendar-export-current-agenda (expand-file-name file)))
  3206. (t
  3207. (let ((bs (buffer-string)))
  3208. (find-file file)
  3209. (erase-buffer)
  3210. (insert bs)
  3211. (save-buffer 0)
  3212. (kill-buffer (current-buffer))
  3213. (message "Plain text written to %s" file))))))))
  3214. (set-buffer (or agenda-bufname
  3215. (and (called-interactively-p 'any) (buffer-name))
  3216. org-agenda-buffer-name)))
  3217. (when open (org-open-file file)))
  3218. (defun org-agenda-remove-marked-text (property &optional value)
  3219. "Delete all text marked with VALUE of PROPERTY.
  3220. VALUE defaults to t."
  3221. (let (beg)
  3222. (setq value (or value t))
  3223. (while (setq beg (text-property-any (point-min) (point-max)
  3224. property value))
  3225. (delete-region
  3226. beg (or (next-single-property-change beg property)
  3227. (point-max))))))
  3228. (defun org-agenda-add-entry-text ()
  3229. "Add entry text to agenda lines.
  3230. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3231. entry text following headings shown in the agenda.
  3232. Drawers will be excluded, also the line with scheduling/deadline info."
  3233. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3234. (not (bound-and-true-p org-mobile-creating-agendas)))
  3235. (let (m txt)
  3236. (goto-char (point-min))
  3237. (while (not (eobp))
  3238. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3239. (beginning-of-line 2)
  3240. (setq txt (org-agenda-get-some-entry-text
  3241. m org-agenda-add-entry-text-maxlines " > "))
  3242. (end-of-line 1)
  3243. (if (string-match "\\S-" txt)
  3244. (insert "\n" txt)
  3245. (or (eobp) (forward-char 1))))))))
  3246. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3247. &rest keep)
  3248. "Extract entry text from MARKER, at most N-LINES lines.
  3249. This will ignore drawers etc, just get the text.
  3250. If INDENT is given, prefix every line with this string. If KEEP is
  3251. given, it is a list of symbols, defining stuff that should not be
  3252. removed from the entry content. Currently only `planning' is allowed here."
  3253. (let (txt drawer-re kwd-time-re ind)
  3254. (save-excursion
  3255. (with-current-buffer (marker-buffer marker)
  3256. (if (not (derived-mode-p 'org-mode))
  3257. (setq txt "")
  3258. (org-with-wide-buffer
  3259. (goto-char marker)
  3260. (end-of-line 1)
  3261. (setq txt (buffer-substring
  3262. (min (1+ (point)) (point-max))
  3263. (progn (outline-next-heading) (point)))
  3264. drawer-re org-drawer-regexp
  3265. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3266. ".*\n?"))
  3267. (with-temp-buffer
  3268. (insert txt)
  3269. (when org-agenda-add-entry-text-descriptive-links
  3270. (goto-char (point-min))
  3271. (while (org-activate-links (point-max))
  3272. (goto-char (match-end 0))))
  3273. (goto-char (point-min))
  3274. (while (re-search-forward org-link-bracket-re (point-max) t)
  3275. (set-text-properties (match-beginning 0) (match-end 0)
  3276. nil))
  3277. (goto-char (point-min))
  3278. (while (re-search-forward drawer-re nil t)
  3279. (delete-region
  3280. (match-beginning 0)
  3281. (progn (re-search-forward
  3282. "^[ \t]*:END:.*\n?" nil 'move)
  3283. (point))))
  3284. (unless (member 'planning keep)
  3285. (goto-char (point-min))
  3286. (while (re-search-forward kwd-time-re nil t)
  3287. (replace-match "")))
  3288. (goto-char (point-min))
  3289. (when org-agenda-entry-text-exclude-regexps
  3290. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3291. (while (setq re (pop re-list))
  3292. (goto-char (point-min))
  3293. (while (re-search-forward re nil t)
  3294. (replace-match "")))))
  3295. (goto-char (point-max))
  3296. (skip-chars-backward " \t\n")
  3297. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3298. ;; find and remove min common indentation
  3299. (goto-char (point-min))
  3300. (untabify (point-min) (point-max))
  3301. (setq ind (current-indentation))
  3302. (while (not (eobp))
  3303. (unless (looking-at "[ \t]*$")
  3304. (setq ind (min ind (current-indentation))))
  3305. (beginning-of-line 2))
  3306. (goto-char (point-min))
  3307. (while (not (eobp))
  3308. (unless (looking-at "[ \t]*$")
  3309. (move-to-column ind)
  3310. (delete-region (point-at-bol) (point)))
  3311. (beginning-of-line 2))
  3312. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3313. (goto-char (point-min))
  3314. (when indent
  3315. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3316. (replace-match indent t t)))
  3317. (goto-char (point-min))
  3318. (while (looking-at "[ \t]*\n") (replace-match ""))
  3319. (goto-char (point-max))
  3320. (when (> (org-current-line)
  3321. n-lines)
  3322. (org-goto-line (1+ n-lines))
  3323. (backward-char 1))
  3324. (setq txt (buffer-substring (point-min) (point))))))))
  3325. txt))
  3326. (defun org-check-for-org-mode ()
  3327. "Make sure current buffer is in Org mode. Error if not."
  3328. (or (derived-mode-p 'org-mode)
  3329. (error "Cannot execute Org agenda command on buffer in %s"
  3330. major-mode)))
  3331. ;;; Agenda prepare and finalize
  3332. (defvar org-agenda-multi nil) ; dynamically scoped
  3333. (defvar org-agenda-pre-window-conf nil)
  3334. (defvar org-agenda-columns-active nil)
  3335. (defvar org-agenda-name nil)
  3336. (defvar org-agenda-tag-filter nil)
  3337. (defvar org-agenda-category-filter nil)
  3338. (defvar org-agenda-regexp-filter nil)
  3339. (defvar org-agenda-effort-filter nil)
  3340. (defvar org-agenda-top-headline-filter nil)
  3341. (defvar org-agenda-represented-categories nil
  3342. "Cache for the list of all categories in the agenda.")
  3343. (defvar org-agenda-represented-tags nil
  3344. "Cache for the list of all categories in the agenda.")
  3345. (defvar org-agenda-tag-filter-preset nil
  3346. "A preset of the tags filter used for secondary agenda filtering.
  3347. This must be a list of strings, each string must be a single tag preceded
  3348. by \"+\" or \"-\".
  3349. This variable should not be set directly, but agenda custom commands can
  3350. bind it in the options section. The preset filter is a global property of
  3351. the entire agenda view. In a block agenda, it will not work reliably to
  3352. define a filter for one of the individual blocks. You need to set it in
  3353. the global options and expect it to be applied to the entire view.")
  3354. (defconst org-agenda-filter-variables
  3355. '((category . org-agenda-category-filter)
  3356. (tag . org-agenda-tag-filter)
  3357. (effort . org-agenda-effort-filter)
  3358. (regexp . org-agenda-regexp-filter))
  3359. "Alist of filter types and associated variables")
  3360. (defun org-agenda-filter-any ()
  3361. "Is any filter active?"
  3362. (let ((form (cons 'or (mapcar (lambda (x)
  3363. (if (or (symbol-value (cdr x))
  3364. (get :preset-filter x))
  3365. t nil))
  3366. org-agenda-filter-variables))))
  3367. (eval form)))
  3368. (defvar org-agenda-category-filter-preset nil
  3369. "A preset of the category filter used for secondary agenda filtering.
  3370. This must be a list of strings, each string must be a single category
  3371. preceded by \"+\" or \"-\".
  3372. This variable should not be set directly, but agenda custom commands can
  3373. bind it in the options section. The preset filter is a global property of
  3374. the entire agenda view. In a block agenda, it will not work reliably to
  3375. define a filter for one of the individual blocks. You need to set it in
  3376. the global options and expect it to be applied to the entire view.")
  3377. (defvar org-agenda-regexp-filter-preset nil
  3378. "A preset of the regexp filter used for secondary agenda filtering.
  3379. This must be a list of strings, each string must be a single regexp
  3380. preceded by \"+\" or \"-\".
  3381. This variable should not be set directly, but agenda custom commands can
  3382. bind it in the options section. The preset filter is a global property of
  3383. the entire agenda view. In a block agenda, it will not work reliably to
  3384. define a filter for one of the individual blocks. You need to set it in
  3385. the global options and expect it to be applied to the entire view.")
  3386. (defvar org-agenda-effort-filter-preset nil
  3387. "A preset of the effort condition used for secondary agenda filtering.
  3388. This must be a list of strings, each string must be a single regexp
  3389. preceded by \"+\" or \"-\".
  3390. This variable should not be set directly, but agenda custom commands can
  3391. bind it in the options section. The preset filter is a global property of
  3392. the entire agenda view. In a block agenda, it will not work reliably to
  3393. define a filter for one of the individual blocks. You need to set it in
  3394. the global options and expect it to be applied to the entire view.")
  3395. (defun org-agenda-use-sticky-p ()
  3396. "Return non-nil if an agenda buffer named
  3397. `org-agenda-buffer-name' exists and should be shown instead of
  3398. generating a new one."
  3399. (and
  3400. ;; turned off by user
  3401. org-agenda-sticky
  3402. ;; For multi-agenda buffer already exists
  3403. (not org-agenda-multi)
  3404. ;; buffer found
  3405. (get-buffer org-agenda-buffer-name)
  3406. ;; C-u parameter is same as last call
  3407. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3408. (and
  3409. (equal current-prefix-arg
  3410. org-agenda-last-prefix-arg)
  3411. ;; In case user turned stickiness on, while having existing
  3412. ;; Agenda buffer active, don't reuse that buffer, because it
  3413. ;; does not have org variables local
  3414. org-agenda-this-buffer-is-sticky))))
  3415. (defvar org-agenda-buffer-tmp-name nil)
  3416. (defun org-agenda--get-buffer-name (sticky-name)
  3417. (or org-agenda-buffer-tmp-name
  3418. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3419. sticky-name
  3420. "*Org Agenda*"))
  3421. (defun org-agenda-prepare-window (abuf filter-alist)
  3422. "Setup agenda buffer in the window.
  3423. ABUF is the buffer for the agenda window.
  3424. FILTER-ALIST is an alist of filters we need to apply when
  3425. `org-agenda-persistent-filter' is non-nil."
  3426. (let* ((awin (get-buffer-window abuf)) wconf)
  3427. (cond
  3428. ((equal (current-buffer) abuf) nil)
  3429. (awin (select-window awin))
  3430. ((not (setq wconf (current-window-configuration))))
  3431. ((eq org-agenda-window-setup 'current-window)
  3432. (pop-to-buffer-same-window abuf))
  3433. ((eq org-agenda-window-setup 'other-window)
  3434. (org-switch-to-buffer-other-window abuf))
  3435. ((eq org-agenda-window-setup 'other-frame)
  3436. (switch-to-buffer-other-frame abuf))
  3437. ((eq org-agenda-window-setup 'other-tab)
  3438. (if (fboundp 'switch-to-buffer-other-tab)
  3439. (switch-to-buffer-other-tab abuf)
  3440. (user-error "Your version of Emacs does not have tab bar support")))
  3441. ((eq org-agenda-window-setup 'only-window)
  3442. (delete-other-windows)
  3443. (pop-to-buffer-same-window abuf))
  3444. ((eq org-agenda-window-setup 'reorganize-frame)
  3445. (delete-other-windows)
  3446. (org-switch-to-buffer-other-window abuf)))
  3447. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3448. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3449. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3450. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3451. ;; Additional test in case agenda is invoked from within agenda
  3452. ;; buffer via elisp link.
  3453. (unless (equal (current-buffer) abuf)
  3454. (pop-to-buffer-same-window abuf))
  3455. (setq org-agenda-pre-window-conf
  3456. (or wconf org-agenda-pre-window-conf))))
  3457. (defun org-agenda-prepare (&optional name)
  3458. (let ((filter-alist (when org-agenda-persistent-filter
  3459. (with-current-buffer
  3460. (get-buffer-create org-agenda-buffer-name)
  3461. `((tag . ,org-agenda-tag-filter)
  3462. (re . ,org-agenda-regexp-filter)
  3463. (effort . ,org-agenda-effort-filter)
  3464. (cat . ,org-agenda-category-filter))))))
  3465. (if (org-agenda-use-sticky-p)
  3466. (progn
  3467. (put 'org-agenda-tag-filter :preset-filter nil)
  3468. (put 'org-agenda-category-filter :preset-filter nil)
  3469. (put 'org-agenda-regexp-filter :preset-filter nil)
  3470. (put 'org-agenda-effort-filter :preset-filter nil)
  3471. ;; Popup existing buffer
  3472. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3473. filter-alist)
  3474. (message "Sticky Agenda buffer, use `r' to refresh")
  3475. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3476. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3477. (setq org-todo-keywords-for-agenda nil)
  3478. (put 'org-agenda-tag-filter :preset-filter
  3479. org-agenda-tag-filter-preset)
  3480. (put 'org-agenda-category-filter :preset-filter
  3481. org-agenda-category-filter-preset)
  3482. (put 'org-agenda-regexp-filter :preset-filter
  3483. org-agenda-regexp-filter-preset)
  3484. (put 'org-agenda-effort-filter :preset-filter
  3485. org-agenda-effort-filter-preset)
  3486. (if org-agenda-multi
  3487. (progn
  3488. (setq buffer-read-only nil)
  3489. (goto-char (point-max))
  3490. (unless (or (bobp) org-agenda-compact-blocks
  3491. (not org-agenda-block-separator))
  3492. (insert "\n"
  3493. (if (stringp org-agenda-block-separator)
  3494. org-agenda-block-separator
  3495. (make-string (window-width) org-agenda-block-separator))
  3496. "\n"))
  3497. (narrow-to-region (point) (point-max)))
  3498. (setq org-done-keywords-for-agenda nil)
  3499. ;; Setting any org variables that are in org-agenda-local-vars
  3500. ;; list need to be done after the prepare call
  3501. (org-agenda-prepare-window
  3502. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3503. (setq buffer-read-only nil)
  3504. (org-agenda-reset-markers)
  3505. (let ((inhibit-read-only t)) (erase-buffer))
  3506. (org-agenda-mode)
  3507. (setq org-agenda-buffer (current-buffer))
  3508. (setq org-agenda-contributing-files nil)
  3509. (setq org-agenda-columns-active nil)
  3510. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3511. (setq org-todo-keywords-for-agenda
  3512. (org-uniquify org-todo-keywords-for-agenda))
  3513. (setq org-done-keywords-for-agenda
  3514. (org-uniquify org-done-keywords-for-agenda))
  3515. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3516. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3517. (and name (not org-agenda-name)
  3518. (setq-local org-agenda-name name)))
  3519. (setq buffer-read-only nil))))
  3520. (defvar org-overriding-columns-format)
  3521. (defvar org-local-columns-format)
  3522. (defun org-agenda-finalize ()
  3523. "Finishing touch for the agenda buffer.
  3524. This function is called just before displaying the agenda. If
  3525. you want to add your own functions to the finalization of the
  3526. agenda display, configure `org-agenda-finalize-hook'."
  3527. (unless org-agenda-multi
  3528. (let ((inhibit-read-only t))
  3529. (save-excursion
  3530. (goto-char (point-min))
  3531. (save-excursion
  3532. (while (org-activate-links (point-max))
  3533. (goto-char (match-end 0))))
  3534. (unless (eq org-agenda-remove-tags t)
  3535. (org-agenda-align-tags))
  3536. (unless org-agenda-with-colors
  3537. (remove-text-properties (point-min) (point-max) '(face nil)))
  3538. (when (bound-and-true-p org-overriding-columns-format)
  3539. (setq-local org-local-columns-format
  3540. org-overriding-columns-format))
  3541. (when org-agenda-view-columns-initially
  3542. (org-agenda-columns))
  3543. (when org-agenda-fontify-priorities
  3544. (org-agenda-fontify-priorities))
  3545. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3546. (org-agenda-dim-blocked-tasks))
  3547. (org-agenda-mark-clocking-task)
  3548. (when org-agenda-entry-text-mode
  3549. (org-agenda-entry-text-hide)
  3550. (org-agenda-entry-text-show))
  3551. (when (and (featurep 'org-habit)
  3552. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3553. (org-habit-insert-consistency-graphs))
  3554. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3555. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3556. (and (listp org-agenda-show-inherited-tags)
  3557. (memq org-agenda-type org-agenda-show-inherited-tags))
  3558. (and (eq org-agenda-show-inherited-tags t)
  3559. (or (eq org-agenda-use-tag-inheritance t)
  3560. (and (listp org-agenda-use-tag-inheritance)
  3561. (not (memq org-agenda-type
  3562. org-agenda-use-tag-inheritance))))))
  3563. (let (mrk)
  3564. (save-excursion
  3565. (goto-char (point-min))
  3566. (while (equal (forward-line) 0)
  3567. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3568. (put-text-property (point-at-bol) (point-at-eol)
  3569. 'tags
  3570. (org-with-point-at mrk
  3571. (mapcar #'downcase (org-get-tags)))))))))
  3572. (setq org-agenda-represented-tags nil
  3573. org-agenda-represented-categories nil)
  3574. (when org-agenda-top-headline-filter
  3575. (org-agenda-filter-top-headline-apply
  3576. org-agenda-top-headline-filter))
  3577. (when org-agenda-tag-filter
  3578. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3579. (when (get 'org-agenda-tag-filter :preset-filter)
  3580. (org-agenda-filter-apply
  3581. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3582. (when org-agenda-category-filter
  3583. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3584. (when (get 'org-agenda-category-filter :preset-filter)
  3585. (org-agenda-filter-apply
  3586. (get 'org-agenda-category-filter :preset-filter) 'category))
  3587. (when org-agenda-regexp-filter
  3588. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3589. (when (get 'org-agenda-regexp-filter :preset-filter)
  3590. (org-agenda-filter-apply
  3591. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3592. (when org-agenda-effort-filter
  3593. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3594. (when (get 'org-agenda-effort-filter :preset-filter)
  3595. (org-agenda-filter-apply
  3596. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3597. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local))
  3598. (run-hooks 'org-agenda-finalize-hook))))
  3599. (defun org-agenda-mark-clocking-task ()
  3600. "Mark the current clock entry in the agenda if it is present."
  3601. ;; We need to widen when `org-agenda-finalize' is called from
  3602. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3603. (when (bound-and-true-p org-clock-current-task)
  3604. (save-restriction
  3605. (widen)
  3606. (org-agenda-unmark-clocking-task)
  3607. (when (marker-buffer org-clock-hd-marker)
  3608. (save-excursion
  3609. (goto-char (point-min))
  3610. (let (s ov)
  3611. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3612. (goto-char s)
  3613. (when (equal (org-get-at-bol 'org-hd-marker)
  3614. org-clock-hd-marker)
  3615. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3616. (overlay-put ov 'type 'org-agenda-clocking)
  3617. (overlay-put ov 'face 'org-agenda-clocking)
  3618. (overlay-put ov 'help-echo
  3619. "The clock is running in this item")))))))))
  3620. (defun org-agenda-unmark-clocking-task ()
  3621. "Unmark the current clocking task."
  3622. (mapc (lambda (o)
  3623. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3624. (delete-overlay o)))
  3625. (overlays-in (point-min) (point-max))))
  3626. (defun org-agenda-fontify-priorities ()
  3627. "Make highest priority lines bold, and lowest italic."
  3628. (interactive)
  3629. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3630. (delete-overlay o)))
  3631. (overlays-in (point-min) (point-max)))
  3632. (save-excursion
  3633. (let (b e p ov h l)
  3634. (goto-char (point-min))
  3635. (while (re-search-forward org-priority-regexp nil t)
  3636. (setq h (or (get-char-property (point) 'org-priority-highest)
  3637. org-priority-highest)
  3638. l (or (get-char-property (point) 'org-priority-lowest)
  3639. org-priority-lowest)
  3640. p (string-to-char (match-string 2))
  3641. b (match-beginning 1)
  3642. e (if (eq org-agenda-fontify-priorities 'cookies)
  3643. (1+ (match-end 2))
  3644. (point-at-eol))
  3645. ov (make-overlay b e))
  3646. (overlay-put
  3647. ov 'face
  3648. (let ((special-face
  3649. (cond ((org-face-from-face-or-color
  3650. 'priority 'org-priority
  3651. (cdr (assoc p org-priority-faces))))
  3652. ((and (listp org-agenda-fontify-priorities)
  3653. (org-face-from-face-or-color
  3654. 'priority 'org-priority
  3655. (cdr (assoc p org-agenda-fontify-priorities)))))
  3656. ((equal p l) 'italic)
  3657. ((equal p h) 'bold))))
  3658. (if special-face (list special-face 'org-priority) 'org-priority)))
  3659. (overlay-put ov 'org-type 'org-priority)))))
  3660. (defvar org-depend-tag-blocked)
  3661. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3662. "Dim currently blocked TODOs in the agenda display.
  3663. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3664. dimming them."
  3665. (interactive "P")
  3666. (when (called-interactively-p 'interactive)
  3667. (message "Dim or hide blocked tasks..."))
  3668. (dolist (o (overlays-in (point-min) (point-max)))
  3669. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3670. (delete-overlay o)))
  3671. (save-excursion
  3672. (let ((inhibit-read-only t))
  3673. (goto-char (point-min))
  3674. (while (let ((pos (text-property-not-all
  3675. (point) (point-max) 'org-todo-blocked nil)))
  3676. (when pos (goto-char pos)))
  3677. (let* ((invisible
  3678. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3679. (todo-blocked
  3680. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3681. (ov (make-overlay (if invisible
  3682. (line-end-position 0)
  3683. (line-beginning-position))
  3684. (line-end-position))))
  3685. (when todo-blocked
  3686. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3687. (when invisible
  3688. (org-agenda-filter-hide-line 'todo-blocked)))
  3689. (move-beginning-of-line 2))))
  3690. (when (called-interactively-p 'interactive)
  3691. (message "Dim or hide blocked tasks...done")))
  3692. (defun org-agenda--mark-blocked-entry (entry)
  3693. "If ENTRY is blocked, mark it for fontification or invisibility.
  3694. If the header at `org-hd-marker' is blocked according to
  3695. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3696. 'invisible and the header is not blocked by checkboxes, set the
  3697. text property `org-todo-blocked' to `invisible', otherwise set it
  3698. to t."
  3699. (when (get-text-property 0 'todo-state entry)
  3700. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3701. (org-blocked-by-checkboxes nil)
  3702. ;; Necessary so that `org-entry-blocked-p' does not change
  3703. ;; the buffer.
  3704. (org-depend-tag-blocked nil))
  3705. (when entry-marker
  3706. (let ((blocked
  3707. (with-current-buffer (marker-buffer entry-marker)
  3708. (save-excursion
  3709. (goto-char entry-marker)
  3710. (org-entry-blocked-p)))))
  3711. (when blocked
  3712. (let ((really-invisible
  3713. (and (not org-blocked-by-checkboxes)
  3714. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3715. (put-text-property
  3716. 0 (length entry) 'org-todo-blocked
  3717. (if really-invisible 'invisible t)
  3718. entry)
  3719. (put-text-property
  3720. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3721. entry)
  3722. (defvar org-agenda-skip-function nil
  3723. "Function to be called at each match during agenda construction.
  3724. If this function returns nil, the current match should not be skipped.
  3725. Otherwise, the function must return a position from where the search
  3726. should be continued.
  3727. This may also be a Lisp form, it will be evaluated.
  3728. Never set this variable using `setq' or so, because then it will apply
  3729. to all future agenda commands. If you do want a global skipping condition,
  3730. use the option `org-agenda-skip-function-global' instead.
  3731. The correct usage for `org-agenda-skip-function' is to bind it with
  3732. `let' to scope it dynamically into the agenda-constructing command.
  3733. A good way to set it is through options in `org-agenda-custom-commands'.")
  3734. (defun org-agenda-skip ()
  3735. "Throw to `:skip' in places that should be skipped.
  3736. Also moves point to the end of the skipped region, so that search can
  3737. continue from there."
  3738. (let ((p (point-at-bol)) to)
  3739. (when (or
  3740. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3741. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3742. (or (and (get-text-property p :org-archived)
  3743. (org-end-of-subtree t))
  3744. (and (member org-archive-tag org-file-tags)
  3745. (goto-char (point-max)))))
  3746. (and org-agenda-skip-comment-trees
  3747. (get-text-property p :org-comment)
  3748. (org-end-of-subtree t))
  3749. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3750. (org-agenda-skip-eval org-agenda-skip-function)))
  3751. (goto-char to))
  3752. (org-in-src-block-p t))
  3753. (throw :skip t))))
  3754. (defun org-agenda-skip-eval (form)
  3755. "If FORM is a function or a list, call (or eval) it and return the result.
  3756. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3757. and match data are returned to the previous state no matter what these
  3758. functions do."
  3759. (let (fp)
  3760. (and form
  3761. (or (setq fp (functionp form))
  3762. (consp form))
  3763. (save-excursion
  3764. (save-match-data
  3765. (if fp
  3766. (funcall form)
  3767. (eval form)))))))
  3768. (defvar org-agenda-markers nil
  3769. "List of all currently active markers created by `org-agenda'.")
  3770. (defvar org-agenda-last-marker-time (float-time)
  3771. "Creation time of the last agenda marker.")
  3772. (defun org-agenda-new-marker (&optional pos)
  3773. "Return a new agenda marker.
  3774. Marker is at point, or at POS if non-nil. Org mode keeps a list
  3775. of these markers and resets them when they are no longer in use."
  3776. (let ((m (copy-marker (or pos (point)) t)))
  3777. (setq org-agenda-last-marker-time (float-time))
  3778. (if org-agenda-buffer
  3779. (with-current-buffer org-agenda-buffer
  3780. (push m org-agenda-markers))
  3781. (push m org-agenda-markers))
  3782. m))
  3783. (defun org-agenda-reset-markers ()
  3784. "Reset markers created by `org-agenda'."
  3785. (while org-agenda-markers
  3786. (move-marker (pop org-agenda-markers) nil)))
  3787. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3788. "Save relative positions of markers in region.
  3789. This check for agenda markers in all agenda buffers currently active."
  3790. (dolist (buf (buffer-list))
  3791. (with-current-buffer buf
  3792. (when (eq major-mode 'org-agenda-mode)
  3793. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3794. org-agenda-markers)))))
  3795. ;;; Entry text mode
  3796. (defun org-agenda-entry-text-show-here ()
  3797. "Add some text from the entry as context to the current line."
  3798. (let (m txt o)
  3799. (setq m (org-get-at-bol 'org-hd-marker))
  3800. (unless (marker-buffer m)
  3801. (error "No marker points to an entry here"))
  3802. (setq txt (concat "\n" (org-no-properties
  3803. (org-agenda-get-some-entry-text
  3804. m org-agenda-entry-text-maxlines
  3805. org-agenda-entry-text-leaders))))
  3806. (when (string-match "\\S-" txt)
  3807. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3808. (overlay-put o 'evaporate t)
  3809. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3810. (overlay-put o 'after-string txt))))
  3811. (defun org-agenda-entry-text-show ()
  3812. "Add entry context for all agenda lines."
  3813. (interactive)
  3814. (save-excursion
  3815. (goto-char (point-max))
  3816. (beginning-of-line 1)
  3817. (while (not (bobp))
  3818. (when (org-get-at-bol 'org-hd-marker)
  3819. (org-agenda-entry-text-show-here))
  3820. (beginning-of-line 0))))
  3821. (defun org-agenda-entry-text-hide ()
  3822. "Remove any shown entry context."
  3823. (mapc (lambda (o)
  3824. (when (eq (overlay-get o 'org-overlay-type)
  3825. 'agenda-entry-content)
  3826. (delete-overlay o)))
  3827. (overlays-in (point-min) (point-max))))
  3828. (defun org-agenda-get-day-face (date)
  3829. "Return the face DATE should be displayed with."
  3830. (cond ((and (functionp org-agenda-day-face-function)
  3831. (funcall org-agenda-day-face-function date)))
  3832. ((org-agenda-today-p date) 'org-agenda-date-today)
  3833. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3834. 'org-agenda-date-weekend)
  3835. (t 'org-agenda-date)))
  3836. (defvar org-agenda-show-log-scoped)
  3837. ;;; Agenda Daily/Weekly
  3838. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3839. "Start day for the agenda view.
  3840. Custom commands can set this variable in the options section.
  3841. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3842. input allowed when reading a date through the Org calendar.
  3843. See the docstring of `org-read-date' for details.")
  3844. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3845. (defvar org-arg-loc nil) ; local variable
  3846. ;;;###autoload
  3847. (defun org-agenda-list (&optional arg start-day span with-hour)
  3848. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3849. The view will be for the current day or week, but from the overview buffer
  3850. you will be able to go to other days/weeks.
  3851. With a numeric prefix argument in an interactive call, the agenda will
  3852. span ARG days. Lisp programs should instead specify SPAN to change
  3853. the number of days. SPAN defaults to `org-agenda-span'.
  3854. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3855. given in `org-agenda-start-on-weekday'.
  3856. When WITH-HOUR is non-nil, only include scheduled and deadline
  3857. items if they have an hour specification like [h]h:mm."
  3858. (interactive "P")
  3859. (when org-agenda-overriding-arguments
  3860. (setq arg (car org-agenda-overriding-arguments)
  3861. start-day (nth 1 org-agenda-overriding-arguments)
  3862. span (nth 2 org-agenda-overriding-arguments)))
  3863. (when (and (integerp arg) (> arg 0))
  3864. (setq span arg arg nil))
  3865. (when (numberp span)
  3866. (unless (< 0 span)
  3867. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3868. (catch 'exit
  3869. (setq org-agenda-buffer-name
  3870. (org-agenda--get-buffer-name
  3871. (and org-agenda-sticky
  3872. (cond ((and org-keys (stringp org-match))
  3873. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3874. (org-keys
  3875. (format "*Org Agenda(%s)*" org-keys))
  3876. (t "*Org Agenda(a)*")))))
  3877. (org-agenda-prepare "Day/Week")
  3878. (setq start-day (or start-day org-agenda-start-day))
  3879. (when (stringp start-day)
  3880. ;; Convert to an absolute day number
  3881. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3882. (org-compile-prefix-format 'agenda)
  3883. (org-set-sorting-strategy 'agenda)
  3884. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3885. (today (org-today))
  3886. (sd (or start-day today))
  3887. (ndays (org-agenda-span-to-ndays span sd))
  3888. (org-agenda-start-on-weekday
  3889. (and (or (eq ndays 7) (eq ndays 14))
  3890. org-agenda-start-on-weekday))
  3891. (thefiles (org-agenda-files nil 'ifmode))
  3892. (files thefiles)
  3893. (start (if (or (null org-agenda-start-on-weekday)
  3894. (< ndays 7))
  3895. sd
  3896. (let* ((nt (calendar-day-of-week
  3897. (calendar-gregorian-from-absolute sd)))
  3898. (n1 org-agenda-start-on-weekday)
  3899. (d (- nt n1)))
  3900. (- sd (+ (if (< d 0) 7 0) d)))))
  3901. (day-numbers (list start))
  3902. (day-cnt 0)
  3903. (inhibit-redisplay (not debug-on-error))
  3904. (org-agenda-show-log-scoped org-agenda-show-log)
  3905. s e rtn rtnall file date d start-pos end-pos todayp
  3906. clocktable-start clocktable-end filter)
  3907. (setq org-agenda-redo-command
  3908. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3909. (dotimes (n (1- ndays))
  3910. (push (1+ (car day-numbers)) day-numbers))
  3911. (setq day-numbers (nreverse day-numbers))
  3912. (setq clocktable-start (car day-numbers)
  3913. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3914. (setq-local org-starting-day (car day-numbers))
  3915. (setq-local org-arg-loc arg)
  3916. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3917. (unless org-agenda-compact-blocks
  3918. (let* ((d1 (car day-numbers))
  3919. (d2 (org-last day-numbers))
  3920. (w1 (org-days-to-iso-week d1))
  3921. (w2 (org-days-to-iso-week d2)))
  3922. (setq s (point))
  3923. (org-agenda--insert-overriding-header
  3924. (concat (org-agenda-span-name span)
  3925. "-agenda"
  3926. (cond ((<= 350 (- d2 d1)) "")
  3927. ((= w1 w2) (format " (W%02d)" w1))
  3928. (t (format " (W%02d-W%02d)" w1 w2)))
  3929. ":\n")))
  3930. ;; Add properties if we actually inserted a header.
  3931. (when (> (point) s)
  3932. (add-text-properties s (1- (point))
  3933. (list 'face 'org-agenda-structure
  3934. 'org-date-line t))
  3935. (org-agenda-mark-header-line s)))
  3936. (while (setq d (pop day-numbers))
  3937. (setq date (calendar-gregorian-from-absolute d)
  3938. s (point))
  3939. (if (or (setq todayp (= d today))
  3940. (and (not start-pos) (= d sd)))
  3941. (setq start-pos (point))
  3942. (when (and start-pos (not end-pos))
  3943. (setq end-pos (point))))
  3944. (setq files thefiles
  3945. rtnall nil)
  3946. (while (setq file (pop files))
  3947. (catch 'nextfile
  3948. (org-check-agenda-file file)
  3949. (let ((org-agenda-entry-types org-agenda-entry-types))
  3950. ;; Starred types override non-starred equivalents
  3951. (when (member :deadline* org-agenda-entry-types)
  3952. (setq org-agenda-entry-types
  3953. (delq :deadline org-agenda-entry-types)))
  3954. (when (member :scheduled* org-agenda-entry-types)
  3955. (setq org-agenda-entry-types
  3956. (delq :scheduled org-agenda-entry-types)))
  3957. ;; Honor with-hour
  3958. (when with-hour
  3959. (when (member :deadline org-agenda-entry-types)
  3960. (setq org-agenda-entry-types
  3961. (delq :deadline org-agenda-entry-types))
  3962. (push :deadline* org-agenda-entry-types))
  3963. (when (member :scheduled org-agenda-entry-types)
  3964. (setq org-agenda-entry-types
  3965. (delq :scheduled org-agenda-entry-types))
  3966. (push :scheduled* org-agenda-entry-types)))
  3967. (unless org-agenda-include-deadlines
  3968. (setq org-agenda-entry-types
  3969. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3970. (cond
  3971. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3972. (setq rtn (org-agenda-get-day-entries
  3973. file date :closed)))
  3974. (org-agenda-show-log-scoped
  3975. (setq rtn (apply 'org-agenda-get-day-entries
  3976. file date
  3977. (append '(:closed) org-agenda-entry-types))))
  3978. (t
  3979. (setq rtn (apply 'org-agenda-get-day-entries
  3980. file date
  3981. org-agenda-entry-types)))))
  3982. (setq rtnall (append rtnall rtn)))) ;; all entries
  3983. (when org-agenda-include-diary
  3984. (let ((org-agenda-search-headline-for-time t))
  3985. (require 'diary-lib)
  3986. (setq rtn (org-get-entries-from-diary date))
  3987. (setq rtnall (append rtnall rtn))))
  3988. (when (or rtnall org-agenda-show-all-dates)
  3989. (setq day-cnt (1+ day-cnt))
  3990. (insert
  3991. (if (stringp org-agenda-format-date)
  3992. (format-time-string org-agenda-format-date
  3993. (org-time-from-absolute date))
  3994. (funcall org-agenda-format-date date))
  3995. "\n")
  3996. (put-text-property s (1- (point)) 'face
  3997. (org-agenda-get-day-face date))
  3998. (put-text-property s (1- (point)) 'org-date-line t)
  3999. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  4000. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  4001. (when todayp
  4002. (put-text-property s (1- (point)) 'org-today t))
  4003. (setq rtnall
  4004. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  4005. (when rtnall (insert ;; all entries
  4006. (org-agenda-finalize-entries rtnall 'agenda)
  4007. "\n"))
  4008. (put-text-property s (1- (point)) 'day d)
  4009. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  4010. (when (and org-agenda-clockreport-mode clocktable-start)
  4011. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  4012. ;; the above line is to ensure the restricted range!
  4013. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  4014. tbl)
  4015. (setq p (org-plist-delete p :block))
  4016. (setq p (plist-put p :tstart clocktable-start))
  4017. (setq p (plist-put p :tend clocktable-end))
  4018. (setq p (plist-put p :scope 'agenda))
  4019. (setq tbl (apply 'org-clock-get-clocktable p))
  4020. (insert tbl)))
  4021. (goto-char (point-min))
  4022. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4023. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4024. (and (pos-visible-in-window-p (point-min))
  4025. (pos-visible-in-window-p (point-max))))
  4026. (goto-char (1- (point-max)))
  4027. (recenter -1)
  4028. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4029. (goto-char (or start-pos 1))
  4030. (recenter 1)))
  4031. (goto-char (or start-pos 1))
  4032. (add-text-properties (point-min) (point-max)
  4033. `(org-agenda-type agenda
  4034. org-last-args (,arg ,start-day ,span)
  4035. org-redo-cmd ,org-agenda-redo-command
  4036. org-series-cmd ,org-cmd))
  4037. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4038. (org-agenda-show-clocking-issues))
  4039. (org-agenda-finalize)
  4040. (setq buffer-read-only t)
  4041. (message ""))))
  4042. (defun org-agenda-ndays-to-span (n)
  4043. "Return a span symbol for a span of N days, or N if none matches."
  4044. (cond ((symbolp n) n)
  4045. ((= n 1) 'day)
  4046. ((= n 7) 'week)
  4047. ((= n 14) 'fortnight)
  4048. (t n)))
  4049. (defun org-agenda-span-to-ndays (span &optional start-day)
  4050. "Return ndays from SPAN, possibly starting at START-DAY.
  4051. START-DAY is an absolute time value."
  4052. (cond ((numberp span) span)
  4053. ((eq span 'day) 1)
  4054. ((eq span 'week) 7)
  4055. ((eq span 'fortnight) 14)
  4056. ((eq span 'month)
  4057. (let ((date (calendar-gregorian-from-absolute start-day)))
  4058. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4059. ((eq span 'year)
  4060. (let ((date (calendar-gregorian-from-absolute start-day)))
  4061. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4062. (defun org-agenda-span-name (span)
  4063. "Return a SPAN name."
  4064. (if (null span)
  4065. ""
  4066. (if (symbolp span)
  4067. (capitalize (symbol-name span))
  4068. (format "%d days" span))))
  4069. ;;; Agenda word search
  4070. (defvar org-agenda-search-history nil)
  4071. (defvar org-search-syntax-table nil
  4072. "Special syntax table for Org search.
  4073. In this table, we have single quotes not as word constituents, to
  4074. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4075. (defvar org-mode-syntax-table) ; From org.el
  4076. (defun org-search-syntax-table ()
  4077. (unless org-search-syntax-table
  4078. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4079. (modify-syntax-entry ?' "." org-search-syntax-table)
  4080. (modify-syntax-entry ?` "." org-search-syntax-table))
  4081. org-search-syntax-table)
  4082. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4083. ;;;###autoload
  4084. (defun org-search-view (&optional todo-only string edit-at)
  4085. "Show all entries that contain a phrase or words or regular expressions.
  4086. With optional prefix argument TODO-ONLY, only consider entries that are
  4087. TODO entries. The argument STRING can be used to pass a default search
  4088. string into this function. If EDIT-AT is non-nil, it means that the
  4089. user should get a chance to edit this string, with cursor at position
  4090. EDIT-AT.
  4091. The search string can be viewed either as a phrase that should be found as
  4092. is, or it can be broken into a number of snippets, each of which must match
  4093. in a Boolean way to select an entry. The default depends on the variable
  4094. `org-agenda-search-view-always-boolean'.
  4095. Even if this is turned off (the default) you can always switch to
  4096. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4097. The default is a direct search of the whole phrase, where each space in
  4098. the search string can expand to an arbitrary amount of whitespace,
  4099. including newlines.
  4100. If using a Boolean search, the search string is split on whitespace and
  4101. each snippet is searched separately, with logical AND to select an entry.
  4102. Words prefixed with a minus must *not* occur in the entry. Words without
  4103. a prefix or prefixed with a plus must occur in the entry. Matching is
  4104. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4105. match whole words, not parts of a word) if
  4106. `org-agenda-search-view-force-full-words' is set (default is nil).
  4107. Boolean search snippets enclosed by curly braces are interpreted as
  4108. regular expressions that must or (when preceded with \"-\") must not
  4109. match in the entry. Snippets enclosed into double quotes will be taken
  4110. as a whole, to include whitespace.
  4111. - If the search string starts with an asterisk, search only in headlines.
  4112. - If (possibly after the leading star) the search string starts with an
  4113. exclamation mark, this also means to look at TODO entries only, an effect
  4114. that can also be achieved with a prefix argument.
  4115. - If (possibly after star and exclamation mark) the search string starts
  4116. with a colon, this will mean that the (non-regexp) snippets of the
  4117. Boolean search must match as full words.
  4118. This command searches the agenda files, and in addition the files
  4119. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4120. is active."
  4121. (interactive "P")
  4122. (when org-agenda-overriding-arguments
  4123. (setq todo-only (car org-agenda-overriding-arguments)
  4124. string (nth 1 org-agenda-overriding-arguments)
  4125. edit-at (nth 2 org-agenda-overriding-arguments)))
  4126. (let* ((props (list 'face nil
  4127. 'done-face 'org-agenda-done
  4128. 'org-not-done-regexp org-not-done-regexp
  4129. 'org-todo-regexp org-todo-regexp
  4130. 'org-complex-heading-regexp org-complex-heading-regexp
  4131. 'mouse-face 'highlight
  4132. 'help-echo (format "mouse-2 or RET jump to location")))
  4133. (full-words org-agenda-search-view-force-full-words)
  4134. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4135. regexp rtn rtnall files file pos inherited-tags
  4136. marker category level tags c neg re boolean
  4137. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4138. (unless (and (not edit-at)
  4139. (stringp string)
  4140. (string-match "\\S-" string))
  4141. (setq string (read-string
  4142. (if org-agenda-search-view-always-boolean
  4143. "[+-]Word/{Regexp} ...: "
  4144. "Phrase or [+-]Word/{Regexp} ...: ")
  4145. (cond
  4146. ((integerp edit-at) (cons string edit-at))
  4147. (edit-at string))
  4148. 'org-agenda-search-history)))
  4149. (catch 'exit
  4150. (setq org-agenda-buffer-name
  4151. (org-agenda--get-buffer-name
  4152. (and org-agenda-sticky
  4153. (if (stringp string)
  4154. (format "*Org Agenda(%s:%s)*"
  4155. (or org-keys (or (and todo-only "S") "s"))
  4156. string)
  4157. (format "*Org Agenda(%s)*"
  4158. (or (and todo-only "S") "s"))))))
  4159. (org-agenda-prepare "SEARCH")
  4160. (org-compile-prefix-format 'search)
  4161. (org-set-sorting-strategy 'search)
  4162. (setq org-agenda-redo-command
  4163. (list 'org-search-view (if todo-only t nil)
  4164. (list 'if 'current-prefix-arg nil string)))
  4165. (setq org-agenda-query-string string)
  4166. (if (equal (string-to-char string) ?*)
  4167. (setq hdl-only t
  4168. words (substring string 1))
  4169. (setq words string))
  4170. (when (equal (string-to-char words) ?!)
  4171. (setq todo-only t
  4172. words (substring words 1)))
  4173. (when (equal (string-to-char words) ?:)
  4174. (setq full-words t
  4175. words (substring words 1)))
  4176. (when (or org-agenda-search-view-always-boolean
  4177. (member (string-to-char words) '(?- ?+ ?\{)))
  4178. (setq boolean t))
  4179. (setq words (split-string words))
  4180. (let (www w)
  4181. (while (setq w (pop words))
  4182. (while (and (string-match "\\\\\\'" w) words)
  4183. (setq w (concat (substring w 0 -1) " " (pop words))))
  4184. (push w www))
  4185. (setq words (nreverse www) www nil)
  4186. (while (setq w (pop words))
  4187. (when (and (string-match "\\`[-+]?{" w)
  4188. (not (string-match "}\\'" w)))
  4189. (while (and words (not (string-match "}\\'" (car words))))
  4190. (setq w (concat w " " (pop words))))
  4191. (setq w (concat w " " (pop words))))
  4192. (push w www))
  4193. (setq words (nreverse www)))
  4194. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4195. (when boolean
  4196. (let (wds w)
  4197. (while (setq w (pop words))
  4198. (when (or (equal (substring w 0 1) "\"")
  4199. (and (> (length w) 1)
  4200. (member (substring w 0 1) '("+" "-"))
  4201. (equal (substring w 1 2) "\"")))
  4202. (while (and words (not (equal (substring w -1) "\"")))
  4203. (setq w (concat w " " (pop words)))))
  4204. (and (string-match "\\`\\([-+]?\\)\"" w)
  4205. (setq w (replace-match "\\1" nil nil w)))
  4206. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4207. (push w wds))
  4208. (setq words (nreverse wds))))
  4209. (if boolean
  4210. (mapc (lambda (w)
  4211. (setq c (string-to-char w))
  4212. (if (equal c ?-)
  4213. (setq neg t w (substring w 1))
  4214. (if (equal c ?+)
  4215. (setq neg nil w (substring w 1))
  4216. (setq neg nil)))
  4217. (if (string-match "\\`{.*}\\'" w)
  4218. (setq re (substring w 1 -1))
  4219. (if full-words
  4220. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4221. (setq re (regexp-quote (downcase w)))))
  4222. (if neg (push re regexps-) (push re regexps+)))
  4223. words)
  4224. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4225. regexps+))
  4226. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4227. (if (not regexps+)
  4228. (setq regexp org-outline-regexp-bol)
  4229. (setq regexp (pop regexps+))
  4230. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4231. regexp))))
  4232. (setq files (org-agenda-files nil 'ifmode))
  4233. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4234. ;; restriction.
  4235. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4236. (pop org-agenda-text-search-extra-files)
  4237. (unless (get 'org-agenda-files 'org-restrict)
  4238. (setq files (org-add-archive-files files))))
  4239. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4240. ;; non-existent ones.
  4241. (setq files (cl-remove-duplicates
  4242. (append files org-agenda-text-search-extra-files)
  4243. :test (lambda (a b)
  4244. (and (file-exists-p a)
  4245. (file-exists-p b)
  4246. (file-equal-p a b))))
  4247. rtnall nil)
  4248. (while (setq file (pop files))
  4249. (setq ee nil)
  4250. (catch 'nextfile
  4251. (org-check-agenda-file file)
  4252. (setq buffer (if (file-exists-p file)
  4253. (org-get-agenda-file-buffer file)
  4254. (error "No such file %s" file)))
  4255. (unless buffer
  4256. ;; If file does not exist, make sure an error message is sent
  4257. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4258. file))))
  4259. (with-current-buffer buffer
  4260. (with-syntax-table (org-search-syntax-table)
  4261. (unless (derived-mode-p 'org-mode)
  4262. (error "Agenda file %s is not in Org mode" file))
  4263. (let ((case-fold-search t))
  4264. (save-excursion
  4265. (save-restriction
  4266. (if (eq buffer org-agenda-restrict)
  4267. (narrow-to-region org-agenda-restrict-begin
  4268. org-agenda-restrict-end)
  4269. (widen))
  4270. (goto-char (point-min))
  4271. (unless (or (org-at-heading-p)
  4272. (outline-next-heading))
  4273. (throw 'nextfile t))
  4274. (goto-char (max (point-min) (1- (point))))
  4275. (while (re-search-forward regexp nil t)
  4276. (org-back-to-heading t)
  4277. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4278. (> (org-reduced-level (org-outline-level))
  4279. org-agenda-search-view-max-outline-level)
  4280. (forward-line -1)
  4281. (org-back-to-heading t)))
  4282. (skip-chars-forward "* ")
  4283. (setq beg (point-at-bol)
  4284. beg1 (point)
  4285. end (progn
  4286. (outline-next-heading)
  4287. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4288. (> (org-reduced-level (org-outline-level))
  4289. org-agenda-search-view-max-outline-level)
  4290. (forward-line 1)
  4291. (outline-next-heading)))
  4292. (point)))
  4293. (catch :skip
  4294. (goto-char beg)
  4295. (org-agenda-skip)
  4296. (setq str (buffer-substring-no-properties
  4297. (point-at-bol)
  4298. (if hdl-only (point-at-eol) end)))
  4299. (mapc (lambda (wr) (when (string-match wr str)
  4300. (goto-char (1- end))
  4301. (throw :skip t)))
  4302. regexps-)
  4303. (mapc (lambda (wr) (unless (string-match wr str)
  4304. (goto-char (1- end))
  4305. (throw :skip t)))
  4306. (if todo-only
  4307. (cons (concat "^\\*+[ \t]+"
  4308. org-not-done-regexp)
  4309. regexps+)
  4310. regexps+))
  4311. (goto-char beg)
  4312. (setq marker (org-agenda-new-marker (point))
  4313. category (org-get-category)
  4314. level (make-string (org-reduced-level (org-outline-level)) ? )
  4315. inherited-tags
  4316. (or (eq org-agenda-show-inherited-tags 'always)
  4317. (and (listp org-agenda-show-inherited-tags)
  4318. (memq 'todo org-agenda-show-inherited-tags))
  4319. (and (eq org-agenda-show-inherited-tags t)
  4320. (or (eq org-agenda-use-tag-inheritance t)
  4321. (memq 'todo org-agenda-use-tag-inheritance))))
  4322. tags (org-get-tags nil (not inherited-tags))
  4323. txt (org-agenda-format-item
  4324. ""
  4325. (buffer-substring-no-properties
  4326. beg1 (point-at-eol))
  4327. level category tags t))
  4328. (org-add-props txt props
  4329. 'org-marker marker 'org-hd-marker marker
  4330. 'org-todo-regexp org-todo-regexp
  4331. 'level level
  4332. 'org-complex-heading-regexp org-complex-heading-regexp
  4333. 'priority 1000
  4334. 'type "search")
  4335. (push txt ee)
  4336. (goto-char (1- end))))))))))
  4337. (setq rtn (nreverse ee))
  4338. (setq rtnall (append rtnall rtn)))
  4339. (org-agenda--insert-overriding-header
  4340. (with-temp-buffer
  4341. (insert "Search words: ")
  4342. (add-text-properties (point-min) (1- (point))
  4343. (list 'face 'org-agenda-structure))
  4344. (setq pos (point))
  4345. (insert string "\n")
  4346. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4347. (setq pos (point))
  4348. (unless org-agenda-multi
  4349. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4350. Press `\\[org-agenda-manipulate-query-add]', \
  4351. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4352. `\\[org-agenda-manipulate-query-add-re]', \
  4353. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4354. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4355. (add-text-properties pos (1- (point))
  4356. (list 'face 'org-agenda-structure)))
  4357. (buffer-string)))
  4358. (org-agenda-mark-header-line (point-min))
  4359. (when rtnall
  4360. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4361. (goto-char (point-min))
  4362. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4363. (add-text-properties (point-min) (point-max)
  4364. `(org-agenda-type search
  4365. org-last-args (,todo-only ,string ,edit-at)
  4366. org-redo-cmd ,org-agenda-redo-command
  4367. org-series-cmd ,org-cmd))
  4368. (org-agenda-finalize)
  4369. (setq buffer-read-only t))))
  4370. ;;; Agenda TODO list
  4371. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4372. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4373. (concat
  4374. (if (or (equal keywords "ALL") (not keywords))
  4375. (propertize "ALL" 'face 'warning)
  4376. (mapconcat
  4377. (lambda (kw)
  4378. (propertize kw 'face (org-get-todo-face kw)))
  4379. (org-split-string keywords "|")
  4380. "|"))
  4381. "\n"))
  4382. (defvar org-select-this-todo-keyword nil)
  4383. (defvar org-last-arg nil)
  4384. ;;;###autoload
  4385. (defun org-todo-list (&optional arg)
  4386. "Show all (not done) TODO entries from all agenda file in a single list.
  4387. The prefix arg can be used to select a specific TODO keyword and limit
  4388. the list to these. When using `\\[universal-argument]', you will be prompted
  4389. for a keyword. A numeric prefix directly selects the Nth keyword in
  4390. `org-todo-keywords-1'."
  4391. (interactive "P")
  4392. (when org-agenda-overriding-arguments
  4393. (setq arg org-agenda-overriding-arguments))
  4394. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4395. (let* ((today (org-today))
  4396. (date (calendar-gregorian-from-absolute today))
  4397. (completion-ignore-case t)
  4398. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4399. (catch 'exit
  4400. (setq org-agenda-buffer-name
  4401. (org-agenda--get-buffer-name
  4402. (and org-agenda-sticky
  4403. (if (stringp org-select-this-todo-keyword)
  4404. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4405. org-select-this-todo-keyword)
  4406. (format "*Org Agenda(%s)*" (or org-keys "t"))))))
  4407. (org-agenda-prepare "TODO")
  4408. (setq kwds org-todo-keywords-for-agenda
  4409. org-select-this-todo-keyword (if (stringp arg) arg
  4410. (and (integerp arg)
  4411. (> arg 0)
  4412. (nth (1- arg) kwds))))
  4413. (when (equal arg '(4))
  4414. (setq org-select-this-todo-keyword
  4415. (mapconcat #'identity
  4416. (let ((crm-separator "|"))
  4417. (completing-read-multiple
  4418. "Keyword (or KWD1|KWD2|...): "
  4419. (mapcar #'list kwds) nil nil))
  4420. "|")))
  4421. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4422. (org-compile-prefix-format 'todo)
  4423. (org-set-sorting-strategy 'todo)
  4424. (setq org-agenda-redo-command
  4425. `(org-todo-list (or (and (numberp current-prefix-arg)
  4426. current-prefix-arg)
  4427. ,org-select-this-todo-keyword
  4428. current-prefix-arg ,arg)))
  4429. (setq files (org-agenda-files nil 'ifmode)
  4430. rtnall nil)
  4431. (while (setq file (pop files))
  4432. (catch 'nextfile
  4433. (org-check-agenda-file file)
  4434. (setq rtn (org-agenda-get-day-entries file date :todo))
  4435. (setq rtnall (append rtnall rtn))))
  4436. (org-agenda--insert-overriding-header
  4437. (with-temp-buffer
  4438. (insert "Global list of TODO items of type: ")
  4439. (add-text-properties (point-min) (1- (point))
  4440. (list 'face 'org-agenda-structure
  4441. 'short-heading
  4442. (concat "ToDo: "
  4443. (or org-select-this-todo-keyword "ALL"))))
  4444. (org-agenda-mark-header-line (point-min))
  4445. (insert (org-agenda-propertize-selected-todo-keywords
  4446. org-select-this-todo-keyword))
  4447. (setq pos (point))
  4448. (unless org-agenda-multi
  4449. (insert (substitute-command-keys "Press \
  4450. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4451. to search again: (0)[ALL]"))
  4452. (let ((n 0))
  4453. (dolist (k kwds)
  4454. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4455. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4456. (insert "\n "))
  4457. (insert " " s))))
  4458. (insert "\n"))
  4459. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4460. (buffer-string)))
  4461. (org-agenda-mark-header-line (point-min))
  4462. (when rtnall
  4463. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4464. (goto-char (point-min))
  4465. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4466. (add-text-properties (point-min) (point-max)
  4467. `(org-agenda-type todo
  4468. org-last-args ,arg
  4469. org-redo-cmd ,org-agenda-redo-command
  4470. org-series-cmd ,org-cmd))
  4471. (org-agenda-finalize)
  4472. (setq buffer-read-only t))))
  4473. ;;; Agenda tags match
  4474. ;;;###autoload
  4475. (defun org-tags-view (&optional todo-only match)
  4476. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4477. The prefix arg TODO-ONLY limits the search to TODO entries."
  4478. (interactive "P")
  4479. (when org-agenda-overriding-arguments
  4480. (setq todo-only (car org-agenda-overriding-arguments)
  4481. match (nth 1 org-agenda-overriding-arguments)))
  4482. (let* ((org-tags-match-list-sublevels
  4483. org-tags-match-list-sublevels)
  4484. (completion-ignore-case t)
  4485. (org--matcher-tags-todo-only todo-only)
  4486. rtn rtnall files file pos matcher
  4487. buffer)
  4488. (when (and (stringp match) (not (string-match "\\S-" match)))
  4489. (setq match nil))
  4490. (catch 'exit
  4491. (setq org-agenda-buffer-name
  4492. (org-agenda--get-buffer-name
  4493. (and org-agenda-sticky
  4494. (if (stringp match)
  4495. (format "*Org Agenda(%s:%s)*"
  4496. (or org-keys (or (and todo-only "M") "m"))
  4497. match)
  4498. (format "*Org Agenda(%s)*"
  4499. (or (and todo-only "M") "m"))))))
  4500. (setq matcher (org-make-tags-matcher match))
  4501. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4502. ;; expanding tags within `org-make-tags-matcher'
  4503. (org-agenda-prepare (concat "TAGS " match))
  4504. (setq match (car matcher)
  4505. matcher (cdr matcher))
  4506. (org-compile-prefix-format 'tags)
  4507. (org-set-sorting-strategy 'tags)
  4508. (setq org-agenda-query-string match)
  4509. (setq org-agenda-redo-command
  4510. (list 'org-tags-view
  4511. `(quote ,org--matcher-tags-todo-only)
  4512. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4513. (setq files (org-agenda-files nil 'ifmode)
  4514. rtnall nil)
  4515. (while (setq file (pop files))
  4516. (catch 'nextfile
  4517. (org-check-agenda-file file)
  4518. (setq buffer (if (file-exists-p file)
  4519. (org-get-agenda-file-buffer file)
  4520. (error "No such file %s" file)))
  4521. (if (not buffer)
  4522. ;; If file does not exist, error message to agenda
  4523. (setq rtn (list
  4524. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4525. rtnall (append rtnall rtn))
  4526. (with-current-buffer buffer
  4527. (unless (derived-mode-p 'org-mode)
  4528. (error "Agenda file %s is not in Org mode" file))
  4529. (save-excursion
  4530. (save-restriction
  4531. (if (eq buffer org-agenda-restrict)
  4532. (narrow-to-region org-agenda-restrict-begin
  4533. org-agenda-restrict-end)
  4534. (widen))
  4535. (setq rtn (org-scan-tags 'agenda
  4536. matcher
  4537. org--matcher-tags-todo-only))
  4538. (setq rtnall (append rtnall rtn))))))))
  4539. (org-agenda--insert-overriding-header
  4540. (with-temp-buffer
  4541. (insert "Headlines with TAGS match: ")
  4542. (add-text-properties (point-min) (1- (point))
  4543. (list 'face 'org-agenda-structure
  4544. 'short-heading
  4545. (concat "Match: " match)))
  4546. (setq pos (point))
  4547. (insert match "\n")
  4548. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4549. (setq pos (point))
  4550. (unless org-agenda-multi
  4551. (insert (substitute-command-keys
  4552. "Press \
  4553. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4554. to search again\n")))
  4555. (add-text-properties pos (1- (point))
  4556. (list 'face 'org-agenda-structure))
  4557. (buffer-string)))
  4558. (org-agenda-mark-header-line (point-min))
  4559. (when rtnall
  4560. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4561. (goto-char (point-min))
  4562. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4563. (add-text-properties
  4564. (point-min) (point-max)
  4565. `(org-agenda-type tags
  4566. org-last-args (,org--matcher-tags-todo-only ,match)
  4567. org-redo-cmd ,org-agenda-redo-command
  4568. org-series-cmd ,org-cmd))
  4569. (org-agenda-finalize)
  4570. (setq buffer-read-only t))))
  4571. ;;; Agenda Finding stuck projects
  4572. (defvar org-agenda-skip-regexp nil
  4573. "Regular expression used in skipping subtrees for the agenda.
  4574. This is basically a temporary global variable that can be set and then
  4575. used by user-defined selections using `org-agenda-skip-function'.")
  4576. (defvar org-agenda-overriding-header nil
  4577. "When set during agenda, todo and tags searches it replaces the header.
  4578. If an empty string, no header will be inserted. If any other
  4579. string, it will be inserted as a header. If nil, a header will
  4580. be generated automatically according to the command. This
  4581. variable should not be set directly, but custom commands can bind
  4582. it in the options section.")
  4583. (defun org-agenda-skip-entry-if (&rest conditions)
  4584. "Skip entry if any of CONDITIONS is true.
  4585. See `org-agenda-skip-if' for details."
  4586. (org-agenda-skip-if nil conditions))
  4587. (defun org-agenda-skip-subtree-if (&rest conditions)
  4588. "Skip subtree if any of CONDITIONS is true.
  4589. See `org-agenda-skip-if' for details."
  4590. (org-agenda-skip-if t conditions))
  4591. (defun org-agenda-skip-if (subtree conditions)
  4592. "Checks current entity for CONDITIONS.
  4593. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4594. the entry (i.e. the text before the next heading) is checked.
  4595. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4596. from different tests. Valid conditions are:
  4597. scheduled Check if there is a scheduled cookie
  4598. notscheduled Check if there is no scheduled cookie
  4599. deadline Check if there is a deadline
  4600. notdeadline Check if there is no deadline
  4601. timestamp Check if there is a timestamp (also deadline or scheduled)
  4602. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4603. regexp Check if regexp matches
  4604. notregexp Check if regexp does not match.
  4605. todo Check if TODO keyword matches
  4606. nottodo Check if TODO keyword does not match
  4607. The regexp is taken from the conditions list, it must come right after
  4608. the `regexp' or `notregexp' element.
  4609. `todo' and `nottodo' accept as an argument a list of todo
  4610. keywords, which may include \"*\" to match any todo keyword.
  4611. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4612. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4613. Instead of a list, a keyword class may be given. For example:
  4614. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4615. would skip entries that haven't been marked with any of \"DONE\"
  4616. keywords. Possible classes are: `todo', `done', `any'.
  4617. If any of these conditions is met, this function returns the end point of
  4618. the entity, causing the search to continue from there. This is a function
  4619. that can be put into `org-agenda-skip-function' for the duration of a command."
  4620. (org-back-to-heading t)
  4621. (let* ((beg (point))
  4622. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4623. (org-entry-end-position)))
  4624. (planning-end (if subtree end (line-end-position 2)))
  4625. m)
  4626. (and
  4627. (or (and (memq 'scheduled conditions)
  4628. (re-search-forward org-scheduled-time-regexp planning-end t))
  4629. (and (memq 'notscheduled conditions)
  4630. (not
  4631. (save-excursion
  4632. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4633. (and (memq 'deadline conditions)
  4634. (re-search-forward org-deadline-time-regexp planning-end t))
  4635. (and (memq 'notdeadline conditions)
  4636. (not
  4637. (save-excursion
  4638. (re-search-forward org-deadline-time-regexp planning-end t))))
  4639. (and (memq 'timestamp conditions)
  4640. (re-search-forward org-ts-regexp end t))
  4641. (and (memq 'nottimestamp conditions)
  4642. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4643. (and (setq m (memq 'regexp conditions))
  4644. (stringp (nth 1 m))
  4645. (re-search-forward (nth 1 m) end t))
  4646. (and (setq m (memq 'notregexp conditions))
  4647. (stringp (nth 1 m))
  4648. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4649. (and (or
  4650. (setq m (memq 'nottodo conditions))
  4651. (setq m (memq 'todo-unblocked conditions))
  4652. (setq m (memq 'nottodo-unblocked conditions))
  4653. (setq m (memq 'todo conditions)))
  4654. (org-agenda-skip-if-todo m end)))
  4655. end)))
  4656. (defun org-agenda-skip-if-todo (args end)
  4657. "Helper function for `org-agenda-skip-if', do not use it directly.
  4658. ARGS is a list with first element either `todo', `nottodo',
  4659. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4660. a list of TODO keywords, or a state symbol `todo' or `done' or
  4661. `any'."
  4662. (let ((todo-re
  4663. (concat "^\\*+[ \t]+"
  4664. (regexp-opt
  4665. (pcase args
  4666. (`(,_ todo)
  4667. (org-delete-all org-done-keywords
  4668. (copy-sequence org-todo-keywords-1)))
  4669. (`(,_ done) org-done-keywords)
  4670. (`(,_ any) org-todo-keywords-1)
  4671. (`(,_ ,(pred atom))
  4672. (error "Invalid TODO class or type: %S" args))
  4673. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4674. (`(,_ ,todo-list) todo-list))
  4675. 'words))))
  4676. (pcase args
  4677. (`(todo . ,_)
  4678. (let (case-fold-search) (re-search-forward todo-re end t)))
  4679. (`(nottodo . ,_)
  4680. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4681. (`(todo-unblocked . ,_)
  4682. (catch :unblocked
  4683. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4684. (when (org-entry-blocked-p) (throw :unblocked t)))
  4685. nil))
  4686. (`(nottodo-unblocked . ,_)
  4687. (catch :unblocked
  4688. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4689. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4690. t))
  4691. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4692. ;;;###autoload
  4693. (defun org-agenda-list-stuck-projects (&rest ignore)
  4694. "Create agenda view for projects that are stuck.
  4695. Stuck projects are project that have no next actions. For the definitions
  4696. of what a project is and how to check if it stuck, customize the variable
  4697. `org-stuck-projects'."
  4698. (interactive)
  4699. (let* ((org-agenda-overriding-header
  4700. (or org-agenda-overriding-header "List of stuck projects: "))
  4701. (matcher (nth 0 org-stuck-projects))
  4702. (todo (nth 1 org-stuck-projects))
  4703. (tags (nth 2 org-stuck-projects))
  4704. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4705. (todo-wds
  4706. (if (not (member "*" todo)) todo
  4707. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4708. (org-delete-all org-done-keywords-for-agenda
  4709. (copy-sequence org-todo-keywords-for-agenda))))
  4710. (todo-re (and todo
  4711. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4712. (mapconcat #'identity todo-wds "\\|"))))
  4713. (tags-re (cond ((null tags) nil)
  4714. ((member "*" tags) org-tag-line-re)
  4715. (tags
  4716. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4717. (concat org-outline-regexp-bol
  4718. ".*?[ \t]:"
  4719. other-tags
  4720. (regexp-opt tags t)
  4721. ":" other-tags "[ \t]*$")))
  4722. (t nil)))
  4723. (re-list (delq nil (list todo-re tags-re gen-re)))
  4724. (skip-re
  4725. (if (null re-list)
  4726. (error "Missing information to identify unstuck projects")
  4727. (mapconcat #'identity re-list "\\|")))
  4728. (org-agenda-skip-function
  4729. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4730. ;; in the subtree.
  4731. `(lambda ()
  4732. (and (save-excursion
  4733. (let ((case-fold-search nil))
  4734. (re-search-forward
  4735. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4736. (progn (outline-next-heading) (point))))))
  4737. (org-tags-view nil matcher)
  4738. (setq org-agenda-buffer-name (buffer-name))
  4739. (with-current-buffer org-agenda-buffer-name
  4740. (setq org-agenda-redo-command
  4741. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4742. (let ((inhibit-read-only t))
  4743. (add-text-properties
  4744. (point-min) (point-max)
  4745. `(org-redo-cmd ,org-agenda-redo-command))))))
  4746. ;;; Diary integration
  4747. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4748. (defvar diary-list-entries-hook)
  4749. (defvar diary-time-regexp)
  4750. (defun org-get-entries-from-diary (date)
  4751. "Get the (Emacs Calendar) diary entries for DATE."
  4752. (require 'diary-lib)
  4753. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4754. (diary-display-function 'diary-fancy-display)
  4755. (pop-up-frames nil)
  4756. (diary-list-entries-hook
  4757. (cons 'org-diary-default-entry diary-list-entries-hook))
  4758. (diary-file-name-prefix nil) ; turn this feature off
  4759. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4760. (diary-time-regexp (concat "^" diary-time-regexp))
  4761. entries
  4762. (org-disable-agenda-to-diary t))
  4763. (save-excursion
  4764. (save-window-excursion
  4765. (funcall (if (fboundp 'diary-list-entries)
  4766. 'diary-list-entries 'list-diary-entries)
  4767. date 1)))
  4768. (if (not (get-buffer diary-fancy-buffer))
  4769. (setq entries nil)
  4770. (with-current-buffer diary-fancy-buffer
  4771. (setq buffer-read-only nil)
  4772. (if (zerop (buffer-size))
  4773. ;; No entries
  4774. (setq entries nil)
  4775. ;; Omit the date and other unnecessary stuff
  4776. (org-agenda-cleanup-fancy-diary)
  4777. ;; Add prefix to each line and extend the text properties
  4778. (if (zerop (buffer-size))
  4779. (setq entries nil)
  4780. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4781. (setq entries
  4782. (with-temp-buffer
  4783. (insert entries) (goto-char (point-min))
  4784. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4785. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4786. (replace-match (concat "; " (match-string 1)))))
  4787. (buffer-string)))))
  4788. (set-buffer-modified-p nil)
  4789. (kill-buffer diary-fancy-buffer)))
  4790. (when entries
  4791. (setq entries (org-split-string entries "\n"))
  4792. (setq entries
  4793. (mapcar
  4794. (lambda (x)
  4795. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4796. ;; Extend the text properties to the beginning of the line
  4797. (org-add-props x (text-properties-at (1- (length x)) x)
  4798. 'type "diary" 'date date 'face 'org-agenda-diary))
  4799. entries)))))
  4800. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4801. "Hook run when the fancy diary buffer is cleaned up.")
  4802. (defun org-agenda-cleanup-fancy-diary ()
  4803. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4804. This gets rid of the date, the underline under the date, and the
  4805. dummy entry installed by Org mode to ensure non-empty diary for
  4806. each date. It also removes lines that contain only whitespace."
  4807. (goto-char (point-min))
  4808. (if (looking-at ".*?:[ \t]*")
  4809. (progn
  4810. (replace-match "")
  4811. (re-search-forward "\n=+$" nil t)
  4812. (replace-match "")
  4813. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4814. (re-search-forward "\n=+$" nil t)
  4815. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4816. (goto-char (point-min))
  4817. (while (re-search-forward "^ +\n" nil t)
  4818. (replace-match ""))
  4819. (goto-char (point-min))
  4820. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4821. (replace-match ""))
  4822. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4823. (defun org-modify-diary-entry-string (string)
  4824. "Add text properties to string, allowing Org to act on it."
  4825. (org-add-props string nil
  4826. 'mouse-face 'highlight
  4827. 'help-echo (if buffer-file-name
  4828. (format "mouse-2 or RET jump to diary file %s"
  4829. (abbreviate-file-name buffer-file-name))
  4830. "")
  4831. 'org-agenda-diary-link t
  4832. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4833. (defun org-diary-default-entry ()
  4834. "Add a dummy entry to the diary.
  4835. Needed to avoid empty dates which mess up holiday display."
  4836. ;; Catch the error if dealing with the new add-to-diary-alist
  4837. (when org-disable-agenda-to-diary
  4838. (condition-case nil
  4839. (org-add-to-diary-list original-date "Org mode dummy" "")
  4840. (error
  4841. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4842. (defun org-add-to-diary-list (&rest args)
  4843. (if (fboundp 'diary-add-to-list)
  4844. (apply 'diary-add-to-list args)
  4845. (apply 'add-to-diary-list args)))
  4846. (defvar org-diary-last-run-time nil)
  4847. ;;;###autoload
  4848. (defun org-diary (&rest args)
  4849. "Return diary information from org files.
  4850. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4851. It accesses org files and extracts information from those files to be
  4852. listed in the diary. The function accepts arguments specifying what
  4853. items should be listed. For a list of arguments allowed here, see the
  4854. variable `org-agenda-entry-types'.
  4855. The call in the diary file should look like this:
  4856. &%%(org-diary) ~/path/to/some/orgfile.org
  4857. Use a separate line for each org file to check. Or, if you omit the file name,
  4858. all files listed in `org-agenda-files' will be checked automatically:
  4859. &%%(org-diary)
  4860. If you don't give any arguments (as in the example above), the default value
  4861. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4862. So the example above may also be written as
  4863. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4864. The function expects the lisp variables `entry' and `date' to be provided
  4865. by the caller, because this is how the calendar works. Don't use this
  4866. function from a program - use `org-agenda-get-day-entries' instead."
  4867. (when (> (- (float-time)
  4868. org-agenda-last-marker-time)
  4869. 5)
  4870. ;; I am not sure if this works with sticky agendas, because the marker
  4871. ;; list is then no longer a global variable.
  4872. (org-agenda-reset-markers))
  4873. (org-compile-prefix-format 'agenda)
  4874. (org-set-sorting-strategy 'agenda)
  4875. (setq args (or args org-agenda-entry-types))
  4876. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4877. (list entry)
  4878. (org-agenda-files t)))
  4879. (time (float-time))
  4880. file rtn results)
  4881. (when (or (not org-diary-last-run-time)
  4882. (> (- time
  4883. org-diary-last-run-time)
  4884. 3))
  4885. (org-agenda-prepare-buffers files))
  4886. (setq org-diary-last-run-time time)
  4887. ;; If this is called during org-agenda, don't return any entries to
  4888. ;; the calendar. Org Agenda will list these entries itself.
  4889. (when org-disable-agenda-to-diary (setq files nil))
  4890. (while (setq file (pop files))
  4891. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4892. (setq results (append results rtn)))
  4893. (when results
  4894. (setq results
  4895. (mapcar (lambda (i) (replace-regexp-in-string
  4896. org-link-bracket-re "\\2" i))
  4897. results))
  4898. (concat (org-agenda-finalize-entries results) "\n"))))
  4899. ;;; Agenda entry finders
  4900. (defun org-agenda--timestamp-to-absolute (&rest args)
  4901. "Call `org-time-string-to-absolute' with ARGS.
  4902. However, throw `:skip' whenever an error is raised."
  4903. (condition-case e
  4904. (apply #'org-time-string-to-absolute args)
  4905. (org-diary-sexp-no-match (throw :skip nil))
  4906. (error
  4907. (message "%s; Skipping entry" (error-message-string e))
  4908. (throw :skip nil))))
  4909. (defun org-agenda-get-day-entries (file date &rest args)
  4910. "Does the work for `org-diary' and `org-agenda'.
  4911. FILE is the path to a file to be checked for entries. DATE is date like
  4912. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4913. which kind of entries should be extracted. For details about these, see
  4914. the documentation of `org-diary'."
  4915. (let* ((org-startup-folded nil)
  4916. (org-startup-align-all-tables nil)
  4917. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4918. (error "No such file %s" file))))
  4919. (if (not buffer)
  4920. ;; If file does not exist, signal it in diary nonetheless.
  4921. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4922. (with-current-buffer buffer
  4923. (unless (derived-mode-p 'org-mode)
  4924. (error "Agenda file %s is not in Org mode" file))
  4925. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4926. (setf org-agenda-current-date date)
  4927. (save-excursion
  4928. (save-restriction
  4929. (if (eq buffer org-agenda-restrict)
  4930. (narrow-to-region org-agenda-restrict-begin
  4931. org-agenda-restrict-end)
  4932. (widen))
  4933. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4934. ;; first in order to populate DEADLINES before passing it.
  4935. ;;
  4936. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4937. ;; guarding us from modifying `org-agenda-entry-types'.
  4938. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4939. (when (and (memq :scheduled args) (memq :scheduled* args))
  4940. (setf args (delq :scheduled* args)))
  4941. (cond
  4942. ((memq :deadline args)
  4943. (setf args (cons :deadline
  4944. (delq :deadline (delq :deadline* args)))))
  4945. ((memq :deadline* args)
  4946. (setf args (cons :deadline* (delq :deadline* args)))))
  4947. ;; Collect list of headlines. Return them flattened.
  4948. (let ((case-fold-search nil) results deadlines)
  4949. (dolist (arg args (apply #'nconc (nreverse results)))
  4950. (pcase arg
  4951. ((and :todo (guard (org-agenda-today-p date)))
  4952. (push (org-agenda-get-todos) results))
  4953. (:timestamp
  4954. (push (org-agenda-get-blocks) results)
  4955. (push (org-agenda-get-timestamps deadlines) results))
  4956. (:sexp
  4957. (push (org-agenda-get-sexps) results))
  4958. (:scheduled
  4959. (push (org-agenda-get-scheduled deadlines) results))
  4960. (:scheduled*
  4961. (push (org-agenda-get-scheduled deadlines t) results))
  4962. (:closed
  4963. (push (org-agenda-get-progress) results))
  4964. (:deadline
  4965. (setf deadlines (org-agenda-get-deadlines))
  4966. (push deadlines results))
  4967. (:deadline*
  4968. (setf deadlines (org-agenda-get-deadlines t))
  4969. (push deadlines results)))))))))))
  4970. (defsubst org-em (x y list)
  4971. "Is X or Y a member of LIST?"
  4972. (or (memq x list) (memq y list)))
  4973. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4974. (defvar org-agenda-sorting-strategy-selected nil)
  4975. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4976. "Retrieve timestamp information for sorting agenda views.
  4977. Given a point or marker POM, returns a cons cell of the timestamp
  4978. and the timestamp type relevant for the sorting strategy in
  4979. `org-agenda-sorting-strategy-selected'."
  4980. (let (ts ts-date-type)
  4981. (save-match-data
  4982. (cond ((org-em 'scheduled-up 'scheduled-down
  4983. org-agenda-sorting-strategy-selected)
  4984. (setq ts (org-entry-get pom "SCHEDULED")
  4985. ts-date-type " scheduled"))
  4986. ((org-em 'deadline-up 'deadline-down
  4987. org-agenda-sorting-strategy-selected)
  4988. (setq ts (org-entry-get pom "DEADLINE")
  4989. ts-date-type " deadline"))
  4990. ((org-em 'ts-up 'ts-down
  4991. org-agenda-sorting-strategy-selected)
  4992. (setq ts (org-entry-get pom "TIMESTAMP")
  4993. ts-date-type " timestamp"))
  4994. ((org-em 'tsia-up 'tsia-down
  4995. org-agenda-sorting-strategy-selected)
  4996. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4997. ts-date-type " timestamp_ia"))
  4998. ((org-em 'timestamp-up 'timestamp-down
  4999. org-agenda-sorting-strategy-selected)
  5000. (setq ts (or (org-entry-get pom "SCHEDULED")
  5001. (org-entry-get pom "DEADLINE")
  5002. (org-entry-get pom "TIMESTAMP")
  5003. (org-entry-get pom "TIMESTAMP_IA"))
  5004. ts-date-type ""))
  5005. (t (setq ts-date-type "")))
  5006. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  5007. ts-date-type))))
  5008. (defun org-agenda-get-todos ()
  5009. "Return the TODO information for agenda display."
  5010. (let* ((props (list 'face nil
  5011. 'done-face 'org-agenda-done
  5012. 'org-not-done-regexp org-not-done-regexp
  5013. 'org-todo-regexp org-todo-regexp
  5014. 'org-complex-heading-regexp org-complex-heading-regexp
  5015. 'mouse-face 'highlight
  5016. 'help-echo
  5017. (format "mouse-2 or RET jump to org file %s"
  5018. (abbreviate-file-name buffer-file-name))))
  5019. (case-fold-search nil)
  5020. (regexp (format org-heading-keyword-regexp-format
  5021. (cond
  5022. ((and org-select-this-todo-keyword
  5023. (equal org-select-this-todo-keyword "*"))
  5024. org-todo-regexp)
  5025. (org-select-this-todo-keyword
  5026. (concat "\\("
  5027. (mapconcat 'identity
  5028. (org-split-string
  5029. org-select-this-todo-keyword
  5030. "|")
  5031. "\\|") "\\)"))
  5032. (t org-not-done-regexp))))
  5033. marker priority category level tags todo-state
  5034. ts-date ts-date-type ts-date-pair
  5035. ee txt beg end inherited-tags todo-state-end-pos)
  5036. (goto-char (point-min))
  5037. (while (re-search-forward regexp nil t)
  5038. (catch :skip
  5039. (save-match-data
  5040. (beginning-of-line)
  5041. (org-agenda-skip)
  5042. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5043. (unless (and (setq todo-state (org-get-todo-state))
  5044. (setq todo-state-end-pos (match-end 2)))
  5045. (goto-char end)
  5046. (throw :skip nil))
  5047. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5048. (goto-char (1+ beg))
  5049. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5050. (throw :skip nil)))
  5051. (goto-char (match-beginning 2))
  5052. (setq marker (org-agenda-new-marker (match-beginning 0))
  5053. category (org-get-category)
  5054. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5055. ts-date (car ts-date-pair)
  5056. ts-date-type (cdr ts-date-pair)
  5057. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5058. inherited-tags
  5059. (or (eq org-agenda-show-inherited-tags 'always)
  5060. (and (listp org-agenda-show-inherited-tags)
  5061. (memq 'todo org-agenda-show-inherited-tags))
  5062. (and (eq org-agenda-show-inherited-tags t)
  5063. (or (eq org-agenda-use-tag-inheritance t)
  5064. (memq 'todo org-agenda-use-tag-inheritance))))
  5065. tags (org-get-tags nil (not inherited-tags))
  5066. level (make-string (org-reduced-level (org-outline-level)) ? )
  5067. txt (org-agenda-format-item "" txt level category tags t)
  5068. priority (1+ (org-get-priority txt)))
  5069. (org-add-props txt props
  5070. 'org-marker marker 'org-hd-marker marker
  5071. 'priority priority
  5072. 'level level
  5073. 'ts-date ts-date
  5074. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5075. (push txt ee)
  5076. (if org-agenda-todo-list-sublevels
  5077. (goto-char todo-state-end-pos)
  5078. (org-end-of-subtree 'invisible))))
  5079. (nreverse ee)))
  5080. (defun org-agenda-todo-custom-ignore-p (time n)
  5081. "Check whether timestamp is farther away than n number of days.
  5082. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5083. `org-agenda-todo-ignore-scheduled' or
  5084. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5085. (let ((days (org-time-stamp-to-now
  5086. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5087. (if (>= n 0)
  5088. (>= days n)
  5089. (<= days n))))
  5090. ;;;###autoload
  5091. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5092. (&optional end)
  5093. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5094. (when (or org-agenda-todo-ignore-with-date
  5095. org-agenda-todo-ignore-scheduled
  5096. org-agenda-todo-ignore-deadlines
  5097. org-agenda-todo-ignore-timestamp)
  5098. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5099. (save-excursion
  5100. (or (and org-agenda-todo-ignore-with-date
  5101. (re-search-forward org-ts-regexp end t))
  5102. (and org-agenda-todo-ignore-scheduled
  5103. (re-search-forward org-scheduled-time-regexp end t)
  5104. (cond
  5105. ((eq org-agenda-todo-ignore-scheduled 'future)
  5106. (> (org-time-stamp-to-now
  5107. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5108. 0))
  5109. ((eq org-agenda-todo-ignore-scheduled 'past)
  5110. (<= (org-time-stamp-to-now
  5111. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5112. 0))
  5113. ((numberp org-agenda-todo-ignore-scheduled)
  5114. (org-agenda-todo-custom-ignore-p
  5115. (match-string 1) org-agenda-todo-ignore-scheduled))
  5116. (t)))
  5117. (and org-agenda-todo-ignore-deadlines
  5118. (re-search-forward org-deadline-time-regexp end t)
  5119. (cond
  5120. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5121. ((eq org-agenda-todo-ignore-deadlines 'far)
  5122. (not (org-deadline-close-p (match-string 1))))
  5123. ((eq org-agenda-todo-ignore-deadlines 'future)
  5124. (> (org-time-stamp-to-now
  5125. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5126. 0))
  5127. ((eq org-agenda-todo-ignore-deadlines 'past)
  5128. (<= (org-time-stamp-to-now
  5129. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5130. 0))
  5131. ((numberp org-agenda-todo-ignore-deadlines)
  5132. (org-agenda-todo-custom-ignore-p
  5133. (match-string 1) org-agenda-todo-ignore-deadlines))
  5134. (t (org-deadline-close-p (match-string 1)))))
  5135. (and org-agenda-todo-ignore-timestamp
  5136. (let ((buffer (current-buffer))
  5137. (regexp
  5138. (concat
  5139. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5140. (start (point)))
  5141. ;; Copy current buffer into a temporary one
  5142. (with-temp-buffer
  5143. (insert-buffer-substring buffer start end)
  5144. (goto-char (point-min))
  5145. ;; Delete SCHEDULED and DEADLINE items
  5146. (while (re-search-forward regexp end t)
  5147. (delete-region (match-beginning 0) (match-end 0)))
  5148. (goto-char (point-min))
  5149. ;; No search for timestamp left
  5150. (when (re-search-forward org-ts-regexp nil t)
  5151. (cond
  5152. ((eq org-agenda-todo-ignore-timestamp 'future)
  5153. (> (org-time-stamp-to-now
  5154. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5155. 0))
  5156. ((eq org-agenda-todo-ignore-timestamp 'past)
  5157. (<= (org-time-stamp-to-now
  5158. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5159. 0))
  5160. ((numberp org-agenda-todo-ignore-timestamp)
  5161. (org-agenda-todo-custom-ignore-p
  5162. (match-string 1) org-agenda-todo-ignore-timestamp))
  5163. (t))))))))))
  5164. (defun org-agenda-get-timestamps (&optional deadlines)
  5165. "Return the date stamp information for agenda display.
  5166. Optional argument DEADLINES is a list of deadline items to be
  5167. displayed in agenda view."
  5168. (let* ((props (list 'face 'org-agenda-calendar-event
  5169. 'org-not-done-regexp org-not-done-regexp
  5170. 'org-todo-regexp org-todo-regexp
  5171. 'org-complex-heading-regexp org-complex-heading-regexp
  5172. 'mouse-face 'highlight
  5173. 'help-echo
  5174. (format "mouse-2 or RET jump to Org file %s"
  5175. (abbreviate-file-name buffer-file-name))))
  5176. (current (calendar-absolute-from-gregorian date))
  5177. (today (org-today))
  5178. (deadline-position-alist
  5179. (mapcar (lambda (d)
  5180. (let ((m (get-text-property 0 'org-hd-marker d)))
  5181. (and m (marker-position m))))
  5182. deadlines))
  5183. ;; Match time-stamps set to current date, time-stamps with
  5184. ;; a repeater, and S-exp time-stamps.
  5185. (regexp
  5186. (concat
  5187. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5188. (regexp-quote
  5189. (substring
  5190. (format-time-string
  5191. (car org-time-stamp-formats)
  5192. (encode-time ; DATE bound by calendar
  5193. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5194. 1 11))
  5195. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5196. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5197. timestamp-items)
  5198. (goto-char (point-min))
  5199. (while (re-search-forward regexp nil t)
  5200. ;; Skip date ranges, scheduled and deadlines, which are handled
  5201. ;; specially. Also skip time-stamps before first headline as
  5202. ;; there would be no entry to add to the agenda. Eventually,
  5203. ;; ignore clock entries.
  5204. (catch :skip
  5205. (save-match-data
  5206. (when (or (org-at-date-range-p)
  5207. (org-at-planning-p)
  5208. (org-before-first-heading-p)
  5209. (and org-agenda-include-inactive-timestamps
  5210. (org-at-clock-log-p)))
  5211. (throw :skip nil))
  5212. (org-agenda-skip))
  5213. (let* ((pos (match-beginning 0))
  5214. (repeat (match-string 1))
  5215. (sexp-entry (match-string 3))
  5216. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5217. (save-excursion
  5218. (goto-char pos)
  5219. (looking-at org-ts-regexp-both)
  5220. (match-string 0))))
  5221. (todo-state (org-get-todo-state))
  5222. (warntime (get-text-property (point) 'org-appt-warntime))
  5223. (done? (member todo-state org-done-keywords)))
  5224. ;; Possibly skip done tasks.
  5225. (when (and done? org-agenda-skip-timestamp-if-done)
  5226. (throw :skip t))
  5227. ;; S-exp entry doesn't match current day: skip it.
  5228. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5229. (throw :skip nil))
  5230. (when repeat
  5231. (let* ((past
  5232. ;; A repeating time stamp is shown at its base
  5233. ;; date and every repeated date up to TODAY. If
  5234. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5235. ;; however, only the last repeat before today
  5236. ;; (inclusive) is shown.
  5237. (org-agenda--timestamp-to-absolute
  5238. repeat
  5239. (if (or (> current today)
  5240. (eq org-agenda-prefer-last-repeat t)
  5241. (member todo-state org-agenda-prefer-last-repeat))
  5242. today
  5243. current)
  5244. 'past (current-buffer) pos))
  5245. (future
  5246. ;; Display every repeated date past TODAY
  5247. ;; (exclusive) unless
  5248. ;; `org-agenda-show-future-repeats' is nil. If
  5249. ;; this variable is set to `next', only display
  5250. ;; the first repeated date after TODAY
  5251. ;; (exclusive).
  5252. (cond
  5253. ((<= current today) past)
  5254. ((not org-agenda-show-future-repeats) past)
  5255. (t
  5256. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5257. (1+ today)
  5258. current)))
  5259. (org-agenda--timestamp-to-absolute
  5260. repeat base 'future (current-buffer) pos))))))
  5261. (when (and (/= current past) (/= current future))
  5262. (throw :skip nil))))
  5263. (save-excursion
  5264. (re-search-backward org-outline-regexp-bol nil t)
  5265. ;; Possibly skip time-stamp when a deadline is set.
  5266. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5267. (assq (point) deadline-position-alist))
  5268. (throw :skip nil))
  5269. (let* ((category (org-get-category pos))
  5270. (inherited-tags
  5271. (or (eq org-agenda-show-inherited-tags 'always)
  5272. (and (consp org-agenda-show-inherited-tags)
  5273. (memq 'agenda org-agenda-show-inherited-tags))
  5274. (and (eq org-agenda-show-inherited-tags t)
  5275. (or (eq org-agenda-use-tag-inheritance t)
  5276. (memq 'agenda
  5277. org-agenda-use-tag-inheritance)))))
  5278. (tags (org-get-tags nil (not inherited-tags)))
  5279. (level (make-string (org-reduced-level (org-outline-level))
  5280. ?\s))
  5281. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5282. (match-string 1)))
  5283. (inactive? (= (char-after pos) ?\[))
  5284. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5285. (item
  5286. (org-agenda-format-item
  5287. (and inactive? org-agenda-inactive-leader)
  5288. head level category tags time-stamp org-ts-regexp habit?)))
  5289. (org-add-props item props
  5290. 'priority (if habit?
  5291. (org-habit-get-priority (org-habit-parse-todo))
  5292. (org-get-priority item))
  5293. 'org-marker (org-agenda-new-marker pos)
  5294. 'org-hd-marker (org-agenda-new-marker)
  5295. 'date date
  5296. 'level level
  5297. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5298. current)
  5299. 'todo-state todo-state
  5300. 'warntime warntime
  5301. 'type "timestamp")
  5302. (push item timestamp-items))))
  5303. (when org-agenda-skip-additional-timestamps-same-entry
  5304. (outline-next-heading))))
  5305. (nreverse timestamp-items)))
  5306. (defun org-agenda-get-sexps ()
  5307. "Return the sexp information for agenda display."
  5308. (require 'diary-lib)
  5309. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5310. 'mouse-face 'highlight
  5311. 'help-echo
  5312. (format "mouse-2 or RET jump to org file %s"
  5313. (abbreviate-file-name buffer-file-name))))
  5314. (regexp "^&?%%(")
  5315. marker category extra level ee txt tags entry
  5316. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5317. (goto-char (point-min))
  5318. (while (re-search-forward regexp nil t)
  5319. (catch :skip
  5320. (org-agenda-skip)
  5321. (setq beg (match-beginning 0))
  5322. (goto-char (1- (match-end 0)))
  5323. (setq b (point))
  5324. (forward-sexp 1)
  5325. (setq sexp (buffer-substring b (point)))
  5326. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5327. (org-trim (match-string 1))
  5328. ""))
  5329. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5330. (when result
  5331. (setq marker (org-agenda-new-marker beg)
  5332. level (make-string (org-reduced-level (org-outline-level)) ? )
  5333. category (org-get-category beg)
  5334. inherited-tags
  5335. (or (eq org-agenda-show-inherited-tags 'always)
  5336. (and (listp org-agenda-show-inherited-tags)
  5337. (memq 'agenda org-agenda-show-inherited-tags))
  5338. (and (eq org-agenda-show-inherited-tags t)
  5339. (or (eq org-agenda-use-tag-inheritance t)
  5340. (memq 'agenda org-agenda-use-tag-inheritance))))
  5341. tags (org-get-tags nil (not inherited-tags))
  5342. todo-state (org-get-todo-state)
  5343. warntime (get-text-property (point) 'org-appt-warntime)
  5344. extra nil)
  5345. (dolist (r (if (stringp result)
  5346. (list result)
  5347. result)) ;; we expect a list here
  5348. (when (and org-agenda-diary-sexp-prefix
  5349. (string-match org-agenda-diary-sexp-prefix r))
  5350. (setq extra (match-string 0 r)
  5351. r (replace-match "" nil nil r)))
  5352. (if (string-match "\\S-" r)
  5353. (setq txt r)
  5354. (setq txt "SEXP entry returned empty string"))
  5355. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5356. (org-add-props txt props 'org-marker marker
  5357. 'date date 'todo-state todo-state
  5358. 'level level 'type "sexp" 'warntime warntime)
  5359. (push txt ee)))))
  5360. (nreverse ee)))
  5361. ;; Calendar sanity: define some functions that are independent of
  5362. ;; `calendar-date-style'.
  5363. (defun org-anniversary (year month day &optional mark)
  5364. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5365. (with-no-warnings
  5366. (let ((calendar-date-style 'iso))
  5367. (diary-anniversary year month day mark))))
  5368. (defun org-cyclic (N year month day &optional mark)
  5369. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5370. (with-no-warnings
  5371. (let ((calendar-date-style 'iso))
  5372. (diary-cyclic N year month day mark))))
  5373. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5374. "Like `diary-block', but with fixed (ISO) order of arguments."
  5375. (with-no-warnings
  5376. (let ((calendar-date-style 'iso))
  5377. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5378. (defun org-date (year month day &optional mark)
  5379. "Like `diary-date', but with fixed (ISO) order of arguments."
  5380. (with-no-warnings
  5381. (let ((calendar-date-style 'iso))
  5382. (diary-date year month day mark))))
  5383. ;; Define the `org-class' function
  5384. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5385. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5386. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5387. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5388. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5389. `holidays', then any date that is known by the Emacs calendar to be a
  5390. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5391. then those holidays will be skipped."
  5392. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5393. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5394. (d (calendar-absolute-from-gregorian date))
  5395. (h (when skip-weeks (calendar-check-holidays date))))
  5396. (and
  5397. (<= date1 d)
  5398. (<= d date2)
  5399. (= (calendar-day-of-week date) dayname)
  5400. (or (not skip-weeks)
  5401. (progn
  5402. (require 'cal-iso)
  5403. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5404. (not (or (and h (memq 'holidays skip-weeks))
  5405. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5406. entry)))
  5407. (defalias 'org-get-closed 'org-agenda-get-progress)
  5408. (defun org-agenda-get-progress ()
  5409. "Return the logged TODO entries for agenda display."
  5410. (let* ((props (list 'mouse-face 'highlight
  5411. 'org-not-done-regexp org-not-done-regexp
  5412. 'org-todo-regexp org-todo-regexp
  5413. 'org-complex-heading-regexp org-complex-heading-regexp
  5414. 'help-echo
  5415. (format "mouse-2 or RET jump to org file %s"
  5416. (abbreviate-file-name buffer-file-name))))
  5417. (items (if (consp org-agenda-show-log-scoped)
  5418. org-agenda-show-log-scoped
  5419. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5420. '(clock)
  5421. org-agenda-log-mode-items)))
  5422. (parts
  5423. (delq nil
  5424. (list
  5425. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5426. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5427. (when (memq 'state items)
  5428. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5429. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5430. (error "`org-agenda-log-mode-items' is empty")))
  5431. (regexp (concat
  5432. "\\(" parts-re "\\)"
  5433. " *\\["
  5434. (regexp-quote
  5435. (substring
  5436. (format-time-string
  5437. (car org-time-stamp-formats)
  5438. (encode-time ; DATE bound by calendar
  5439. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5440. 1 11))))
  5441. (org-agenda-search-headline-for-time nil)
  5442. marker hdmarker priority category level tags closedp type
  5443. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5444. (goto-char (point-min))
  5445. (while (re-search-forward regexp nil t)
  5446. (catch :skip
  5447. (org-agenda-skip)
  5448. (setq marker (org-agenda-new-marker (match-beginning 0))
  5449. closedp (equal (match-string 1) org-closed-string)
  5450. statep (equal (string-to-char (match-string 1)) ?-)
  5451. clockp (not (or closedp statep))
  5452. state (and statep (match-string 2))
  5453. category (org-get-category (match-beginning 0))
  5454. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5455. (when (string-match "\\]" timestr)
  5456. ;; substring should only run to end of time stamp
  5457. (setq rest (substring timestr (match-end 0))
  5458. timestr (substring timestr 0 (match-end 0)))
  5459. (if (and (not closedp) (not statep)
  5460. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5461. rest))
  5462. (progn (setq timestr (concat (substring timestr 0 -1)
  5463. "-" (match-string 1 rest) "]"))
  5464. (setq clocked (match-string 2 rest)))
  5465. (setq clocked "-")))
  5466. (save-excursion
  5467. (setq extra
  5468. (cond
  5469. ((not org-agenda-log-mode-add-notes) nil)
  5470. (statep
  5471. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5472. (match-string 1)))
  5473. (clockp
  5474. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5475. (match-string 1)))))
  5476. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5477. (throw :skip nil)
  5478. (goto-char (match-beginning 0))
  5479. (setq hdmarker (org-agenda-new-marker)
  5480. inherited-tags
  5481. (or (eq org-agenda-show-inherited-tags 'always)
  5482. (and (listp org-agenda-show-inherited-tags)
  5483. (memq 'todo org-agenda-show-inherited-tags))
  5484. (and (eq org-agenda-show-inherited-tags t)
  5485. (or (eq org-agenda-use-tag-inheritance t)
  5486. (memq 'todo org-agenda-use-tag-inheritance))))
  5487. tags (org-get-tags nil (not inherited-tags))
  5488. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5489. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5490. (setq txt (match-string 1))
  5491. (when extra
  5492. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5493. (setq txt (concat (substring txt 0 (match-beginning 1))
  5494. " - " extra " " (match-string 2 txt)))
  5495. (setq txt (concat txt " - " extra))))
  5496. (setq txt (org-agenda-format-item
  5497. (cond
  5498. (closedp "Closed: ")
  5499. (statep (concat "State: (" state ")"))
  5500. (t (concat "Clocked: (" clocked ")")))
  5501. txt level category tags timestr)))
  5502. (setq type (cond (closedp "closed")
  5503. (statep "state")
  5504. (t "clock")))
  5505. (setq priority 100000)
  5506. (org-add-props txt props
  5507. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5508. 'priority priority 'level level
  5509. 'type type 'date date
  5510. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5511. (push txt ee))
  5512. (goto-char (point-at-eol))))
  5513. (nreverse ee)))
  5514. (defun org-agenda-show-clocking-issues ()
  5515. "Add overlays, showing issues with clocking.
  5516. See also the user option `org-agenda-clock-consistency-checks'."
  5517. (interactive)
  5518. (let* ((pl org-agenda-clock-consistency-checks)
  5519. (re (concat "^[ \t]*"
  5520. org-clock-string
  5521. "[ \t]+"
  5522. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5523. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5524. (tlstart 0.)
  5525. (tlend 0.)
  5526. (maxtime (org-duration-to-minutes
  5527. (or (plist-get pl :max-duration) "24:00")))
  5528. (mintime (org-duration-to-minutes
  5529. (or (plist-get pl :min-duration) 0)))
  5530. (maxgap (org-duration-to-minutes
  5531. ;; default 30:00 means never complain
  5532. (or (plist-get pl :max-gap) "30:00")))
  5533. (gapok (mapcar #'org-duration-to-minutes
  5534. (plist-get pl :gap-ok-around)))
  5535. (def-face (or (plist-get pl :default-face)
  5536. '((:background "DarkRed") (:foreground "white"))))
  5537. issue face m te ts dt ov)
  5538. (goto-char (point-min))
  5539. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5540. (setq issue nil face def-face)
  5541. (catch 'next
  5542. (setq m (org-get-at-bol 'org-marker)
  5543. te nil ts nil)
  5544. (unless (and m (markerp m))
  5545. (setq issue "No valid clock line") (throw 'next t))
  5546. (org-with-point-at m
  5547. (save-excursion
  5548. (goto-char (point-at-bol))
  5549. (unless (looking-at re)
  5550. (error "No valid Clock line")
  5551. (throw 'next t))
  5552. (unless (match-end 3)
  5553. (setq issue
  5554. (format
  5555. "No end time: (%s)"
  5556. (org-duration-from-minutes
  5557. (floor
  5558. (- (float-time (org-current-time))
  5559. (float-time (org-time-string-to-time (match-string 1))))
  5560. 60)))
  5561. face (or (plist-get pl :no-end-time-face) face))
  5562. (throw 'next t))
  5563. (setq ts (match-string 1)
  5564. te (match-string 3)
  5565. ts (float-time (org-time-string-to-time ts))
  5566. te (float-time (org-time-string-to-time te))
  5567. dt (- te ts))))
  5568. (cond
  5569. ((> dt (* 60 maxtime))
  5570. ;; a very long clocking chunk
  5571. (setq issue (format "Clocking interval is very long: %s"
  5572. (org-duration-from-minutes (floor dt 60)))
  5573. face (or (plist-get pl :long-face) face)))
  5574. ((< dt (* 60 mintime))
  5575. ;; a very short clocking chunk
  5576. (setq issue (format "Clocking interval is very short: %s"
  5577. (org-duration-from-minutes (floor dt 60)))
  5578. face (or (plist-get pl :short-face) face)))
  5579. ((and (> tlend 0) (< ts tlend))
  5580. ;; Two clock entries are overlapping
  5581. (setq issue (format "Clocking overlap: %d minutes"
  5582. (/ (- tlend ts) 60))
  5583. face (or (plist-get pl :overlap-face) face)))
  5584. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5585. ;; There is a gap, lets see if we need to report it
  5586. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5587. (setq issue (format "Clocking gap: %d minutes"
  5588. (/ (- ts tlend) 60))
  5589. face (or (plist-get pl :gap-face) face))))
  5590. (t nil)))
  5591. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5592. (when issue
  5593. ;; OK, there was some issue, add an overlay to show the issue
  5594. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5595. (overlay-put ov 'before-string
  5596. (concat
  5597. (org-add-props
  5598. (format "%-43s" (concat " " issue))
  5599. nil
  5600. 'face face)
  5601. "\n"))
  5602. (overlay-put ov 'evaporate t)))))
  5603. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5604. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5605. (catch 'exit
  5606. (unless ok-list
  5607. ;; there are no OK times for gaps...
  5608. (throw 'exit nil))
  5609. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5610. ;; This is more than 24 hours, so it is OK.
  5611. ;; because we have at least one OK time, that must be in the
  5612. ;; 24 hour interval.
  5613. (throw 'exit t))
  5614. ;; We have a shorter gap.
  5615. ;; Now we have to get the minute of the day when these times are
  5616. (let* ((t1dec (org-decode-time t1))
  5617. (t2dec (org-decode-time t2))
  5618. ;; compute the minute on the day
  5619. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5620. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5621. (when (< min2 min1)
  5622. ;; if min2 is smaller than min1, this means it is on the next day.
  5623. ;; Wrap it to after midnight.
  5624. (setq min2 (+ min2 1440)))
  5625. ;; Now check if any of the OK times is in the gap
  5626. (mapc (lambda (x)
  5627. ;; Wrap the time to after midnight if necessary
  5628. (when (< x min1) (setq x (+ x 1440)))
  5629. ;; Check if in interval
  5630. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5631. ok-list)
  5632. ;; Nope, this gap is not OK
  5633. nil)))
  5634. (defun org-agenda-get-deadlines (&optional with-hour)
  5635. "Return the deadline information for agenda display.
  5636. When WITH-HOUR is non-nil, only return deadlines with an hour
  5637. specification like [h]h:mm."
  5638. (let* ((props (list 'mouse-face 'highlight
  5639. 'org-not-done-regexp org-not-done-regexp
  5640. 'org-todo-regexp org-todo-regexp
  5641. 'org-complex-heading-regexp org-complex-heading-regexp
  5642. 'help-echo
  5643. (format "mouse-2 or RET jump to org file %s"
  5644. (abbreviate-file-name buffer-file-name))))
  5645. (regexp (if with-hour
  5646. org-deadline-time-hour-regexp
  5647. org-deadline-time-regexp))
  5648. (today (org-today))
  5649. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5650. (current (calendar-absolute-from-gregorian date))
  5651. deadline-items)
  5652. (goto-char (point-min))
  5653. (while (re-search-forward regexp nil t)
  5654. (catch :skip
  5655. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5656. (org-agenda-skip)
  5657. (let* ((s (match-string 1))
  5658. (pos (1- (match-beginning 1)))
  5659. (todo-state (save-match-data (org-get-todo-state)))
  5660. (done? (member todo-state org-done-keywords))
  5661. (sexp? (string-prefix-p "%%" s))
  5662. ;; DEADLINE is the deadline date for the entry. It is
  5663. ;; either the base date or the last repeat, according
  5664. ;; to `org-agenda-prefer-last-repeat'.
  5665. (deadline
  5666. (cond
  5667. (sexp? (org-agenda--timestamp-to-absolute s current))
  5668. ((or (eq org-agenda-prefer-last-repeat t)
  5669. (member todo-state org-agenda-prefer-last-repeat))
  5670. (org-agenda--timestamp-to-absolute
  5671. s today 'past (current-buffer) pos))
  5672. (t (org-agenda--timestamp-to-absolute s))))
  5673. ;; REPEAT is the future repeat closest from CURRENT,
  5674. ;; according to `org-agenda-show-future-repeats'. If
  5675. ;; the latter is nil, or if the time stamp has no
  5676. ;; repeat part, default to DEADLINE.
  5677. (repeat
  5678. (cond
  5679. (sexp? deadline)
  5680. ((<= current today) deadline)
  5681. ((not org-agenda-show-future-repeats) deadline)
  5682. (t
  5683. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5684. (1+ today)
  5685. current)))
  5686. (org-agenda--timestamp-to-absolute
  5687. s base 'future (current-buffer) pos)))))
  5688. (diff (- deadline current))
  5689. (suppress-prewarning
  5690. (let ((scheduled
  5691. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5692. (org-entry-get nil "SCHEDULED"))))
  5693. (cond
  5694. ((not scheduled) nil)
  5695. ;; The current item has a scheduled date, so
  5696. ;; evaluate its prewarning lead time.
  5697. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5698. ;; Use global prewarning-restart lead time.
  5699. org-agenda-skip-deadline-prewarning-if-scheduled)
  5700. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5701. 'pre-scheduled)
  5702. ;; Set pre-warning to no earlier than SCHEDULED.
  5703. (min (- deadline
  5704. (org-agenda--timestamp-to-absolute scheduled))
  5705. org-deadline-warning-days))
  5706. ;; Set pre-warning to deadline.
  5707. (t 0))))
  5708. (wdays (or suppress-prewarning (org-get-wdays s))))
  5709. (cond
  5710. ;; Only display deadlines at their base date, at future
  5711. ;; repeat occurrences or in today agenda.
  5712. ((= current deadline) nil)
  5713. ((= current repeat) nil)
  5714. ((not today?) (throw :skip nil))
  5715. ;; Upcoming deadline: display within warning period WDAYS.
  5716. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5717. ;; Overdue deadline: warn about it for
  5718. ;; `org-deadline-past-days' duration.
  5719. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5720. ;; Possibly skip done tasks.
  5721. (when (and done?
  5722. (or org-agenda-skip-deadline-if-done
  5723. (/= deadline current)))
  5724. (throw :skip nil))
  5725. (save-excursion
  5726. (re-search-backward "^\\*+[ \t]+" nil t)
  5727. (goto-char (match-end 0))
  5728. (let* ((category (org-get-category))
  5729. (level (make-string (org-reduced-level (org-outline-level))
  5730. ?\s))
  5731. (head (buffer-substring (point) (line-end-position)))
  5732. (inherited-tags
  5733. (or (eq org-agenda-show-inherited-tags 'always)
  5734. (and (listp org-agenda-show-inherited-tags)
  5735. (memq 'agenda org-agenda-show-inherited-tags))
  5736. (and (eq org-agenda-show-inherited-tags t)
  5737. (or (eq org-agenda-use-tag-inheritance t)
  5738. (memq 'agenda
  5739. org-agenda-use-tag-inheritance)))))
  5740. (tags (org-get-tags nil (not inherited-tags)))
  5741. (time
  5742. (cond
  5743. ;; No time of day designation if it is only
  5744. ;; a reminder.
  5745. ((and (/= current deadline) (/= current repeat)) nil)
  5746. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5747. (concat (substring s (match-beginning 1)) " "))
  5748. (t 'time)))
  5749. (item
  5750. (org-agenda-format-item
  5751. ;; Insert appropriate suffixes before deadlines.
  5752. ;; Those only apply to today agenda.
  5753. (pcase-let ((`(,now ,future ,past)
  5754. org-agenda-deadline-leaders))
  5755. (cond
  5756. ((and today? (< deadline today)) (format past (- diff)))
  5757. ((and today? (> deadline today)) (format future diff))
  5758. (t now)))
  5759. head level category tags time))
  5760. (face (org-agenda-deadline-face
  5761. (- 1 (/ (float diff) (max wdays 1)))))
  5762. (upcoming? (and today? (> deadline today)))
  5763. (warntime (get-text-property (point) 'org-appt-warntime)))
  5764. (org-add-props item props
  5765. 'org-marker (org-agenda-new-marker pos)
  5766. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5767. 'warntime warntime
  5768. 'level level
  5769. 'ts-date deadline
  5770. 'priority
  5771. ;; Adjust priority to today reminders about deadlines.
  5772. ;; Overdue deadlines get the highest priority
  5773. ;; increase, then imminent deadlines and eventually
  5774. ;; more distant deadlines.
  5775. (let ((adjust (if today? (- diff) 0)))
  5776. (+ adjust (org-get-priority item)))
  5777. 'todo-state todo-state
  5778. 'type (if upcoming? "upcoming-deadline" "deadline")
  5779. 'date (if upcoming? date deadline)
  5780. 'face (if done? 'org-agenda-done face)
  5781. 'undone-face face
  5782. 'done-face 'org-agenda-done)
  5783. (push item deadline-items))))))
  5784. (nreverse deadline-items)))
  5785. (defun org-agenda-deadline-face (fraction)
  5786. "Return the face to displaying a deadline item.
  5787. FRACTION is what fraction of the head-warning time has passed."
  5788. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5789. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5790. "Return the scheduled information for agenda display.
  5791. Optional argument DEADLINES is a list of deadline items to be
  5792. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5793. scheduled items with an hour specification like [h]h:mm."
  5794. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5795. 'org-todo-regexp org-todo-regexp
  5796. 'org-complex-heading-regexp org-complex-heading-regexp
  5797. 'done-face 'org-agenda-done
  5798. 'mouse-face 'highlight
  5799. 'help-echo
  5800. (format "mouse-2 or RET jump to Org file %s"
  5801. (abbreviate-file-name buffer-file-name))))
  5802. (regexp (if with-hour
  5803. org-scheduled-time-hour-regexp
  5804. org-scheduled-time-regexp))
  5805. (today (org-today))
  5806. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5807. (current (calendar-absolute-from-gregorian date))
  5808. (deadline-pos
  5809. (mapcar (lambda (d)
  5810. (let ((m (get-text-property 0 'org-hd-marker d)))
  5811. (and m (marker-position m))))
  5812. deadlines))
  5813. scheduled-items)
  5814. (goto-char (point-min))
  5815. (while (re-search-forward regexp nil t)
  5816. (catch :skip
  5817. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5818. (org-agenda-skip)
  5819. (let* ((s (match-string 1))
  5820. (pos (1- (match-beginning 1)))
  5821. (todo-state (save-match-data (org-get-todo-state)))
  5822. (donep (member todo-state org-done-keywords))
  5823. (sexp? (string-prefix-p "%%" s))
  5824. ;; SCHEDULE is the scheduled date for the entry. It is
  5825. ;; either the bare date or the last repeat, according
  5826. ;; to `org-agenda-prefer-last-repeat'.
  5827. (schedule
  5828. (cond
  5829. (sexp? (org-agenda--timestamp-to-absolute s current))
  5830. ((or (eq org-agenda-prefer-last-repeat t)
  5831. (member todo-state org-agenda-prefer-last-repeat))
  5832. (org-agenda--timestamp-to-absolute
  5833. s today 'past (current-buffer) pos))
  5834. (t (org-agenda--timestamp-to-absolute s))))
  5835. ;; REPEAT is the future repeat closest from CURRENT,
  5836. ;; according to `org-agenda-show-future-repeats'. If
  5837. ;; the latter is nil, or if the time stamp has no
  5838. ;; repeat part, default to SCHEDULE.
  5839. (repeat
  5840. (cond
  5841. (sexp? schedule)
  5842. ((<= current today) schedule)
  5843. ((not org-agenda-show-future-repeats) schedule)
  5844. (t
  5845. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5846. (1+ today)
  5847. current)))
  5848. (org-agenda--timestamp-to-absolute
  5849. s base 'future (current-buffer) pos)))))
  5850. (diff (- current schedule))
  5851. (warntime (get-text-property (point) 'org-appt-warntime))
  5852. (pastschedp (< schedule today))
  5853. (futureschedp (> schedule today))
  5854. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5855. (suppress-delay
  5856. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5857. (org-entry-get nil "DEADLINE"))))
  5858. (cond
  5859. ((not deadline) nil)
  5860. ;; The current item has a deadline date, so
  5861. ;; evaluate its delay time.
  5862. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5863. ;; Use global delay time.
  5864. (- org-agenda-skip-scheduled-delay-if-deadline))
  5865. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5866. 'post-deadline)
  5867. ;; Set delay to no later than DEADLINE.
  5868. (min (- schedule
  5869. (org-agenda--timestamp-to-absolute deadline))
  5870. org-scheduled-delay-days))
  5871. (t 0))))
  5872. (ddays
  5873. (cond
  5874. ;; Nullify delay when a repeater triggered already
  5875. ;; and the delay is of the form --Xd.
  5876. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5877. (> schedule (org-agenda--timestamp-to-absolute s)))
  5878. 0)
  5879. (suppress-delay
  5880. (let ((org-scheduled-delay-days suppress-delay))
  5881. (org-get-wdays s t t)))
  5882. (t (org-get-wdays s t)))))
  5883. ;; Display scheduled items at base date (SCHEDULE), today if
  5884. ;; scheduled before the current date, and at any repeat past
  5885. ;; today. However, skip delayed items and items that have
  5886. ;; been displayed for more than `org-scheduled-past-days'.
  5887. (unless (and todayp
  5888. habitp
  5889. (bound-and-true-p org-habit-show-all-today))
  5890. (when (or (and (> ddays 0) (< diff ddays))
  5891. (> diff (or (and habitp org-habit-scheduled-past-days)
  5892. org-scheduled-past-days))
  5893. (> schedule current)
  5894. (and (/= current schedule)
  5895. (/= current today)
  5896. (/= current repeat)))
  5897. (throw :skip nil)))
  5898. ;; Possibly skip done tasks.
  5899. (when (and donep
  5900. (or org-agenda-skip-scheduled-if-done
  5901. (/= schedule current)))
  5902. (throw :skip nil))
  5903. ;; Skip entry if it already appears as a deadline, per
  5904. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5905. ;; doesn't apply to habits.
  5906. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5907. ((guard
  5908. (or (not (memq (line-beginning-position 0) deadline-pos))
  5909. habitp))
  5910. nil)
  5911. (`repeated-after-deadline
  5912. (let ((deadline (time-to-days
  5913. (org-get-deadline-time (point)))))
  5914. (and (<= schedule deadline) (> current deadline))))
  5915. (`not-today pastschedp)
  5916. (`t t)
  5917. (_ nil))
  5918. (throw :skip nil))
  5919. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5920. ;; only show them for today. Also skip done habits.
  5921. (when (and habitp
  5922. (or donep
  5923. (not (bound-and-true-p org-habit-show-habits))
  5924. (and (not todayp)
  5925. (bound-and-true-p
  5926. org-habit-show-habits-only-for-today))))
  5927. (throw :skip nil))
  5928. (save-excursion
  5929. (re-search-backward "^\\*+[ \t]+" nil t)
  5930. (goto-char (match-end 0))
  5931. (let* ((category (org-get-category))
  5932. (inherited-tags
  5933. (or (eq org-agenda-show-inherited-tags 'always)
  5934. (and (listp org-agenda-show-inherited-tags)
  5935. (memq 'agenda org-agenda-show-inherited-tags))
  5936. (and (eq org-agenda-show-inherited-tags t)
  5937. (or (eq org-agenda-use-tag-inheritance t)
  5938. (memq 'agenda
  5939. org-agenda-use-tag-inheritance)))))
  5940. (tags (org-get-tags nil (not inherited-tags)))
  5941. (level (make-string (org-reduced-level (org-outline-level))
  5942. ?\s))
  5943. (head (buffer-substring (point) (line-end-position)))
  5944. (time
  5945. (cond
  5946. ;; No time of day designation if it is only a
  5947. ;; reminder, except for habits, which always show
  5948. ;; the time of day. Habits are an exception
  5949. ;; because if there is a time of day, that is
  5950. ;; interpreted to mean they should usually happen
  5951. ;; then, even if doing the habit was missed.
  5952. ((and
  5953. (not habitp)
  5954. (/= current schedule)
  5955. (/= current repeat))
  5956. nil)
  5957. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5958. (concat (substring s (match-beginning 1)) " "))
  5959. (t 'time)))
  5960. (item
  5961. (org-agenda-format-item
  5962. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5963. ;; Show a reminder of a past scheduled today.
  5964. (if (and todayp pastschedp)
  5965. (format past diff)
  5966. first))
  5967. head level category tags time nil habitp))
  5968. (face (cond ((and (not habitp) pastschedp)
  5969. 'org-scheduled-previously)
  5970. ((and habitp futureschedp)
  5971. 'org-agenda-done)
  5972. (todayp 'org-scheduled-today)
  5973. (t 'org-scheduled)))
  5974. (habitp (and habitp (org-habit-parse-todo))))
  5975. (org-add-props item props
  5976. 'undone-face face
  5977. 'face (if donep 'org-agenda-done face)
  5978. 'org-marker (org-agenda-new-marker pos)
  5979. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5980. 'type (if pastschedp "past-scheduled" "scheduled")
  5981. 'date (if pastschedp schedule date)
  5982. 'ts-date schedule
  5983. 'warntime warntime
  5984. 'level level
  5985. 'priority (if habitp (org-habit-get-priority habitp)
  5986. (+ 99 diff (org-get-priority item)))
  5987. 'org-habit-p habitp
  5988. 'todo-state todo-state)
  5989. (push item scheduled-items))))))
  5990. (nreverse scheduled-items)))
  5991. (defun org-agenda-get-blocks ()
  5992. "Return the date-range information for agenda display."
  5993. (let* ((props (list 'face nil
  5994. 'org-not-done-regexp org-not-done-regexp
  5995. 'org-todo-regexp org-todo-regexp
  5996. 'org-complex-heading-regexp org-complex-heading-regexp
  5997. 'mouse-face 'highlight
  5998. 'help-echo
  5999. (format "mouse-2 or RET jump to org file %s"
  6000. (abbreviate-file-name buffer-file-name))))
  6001. (regexp org-tr-regexp)
  6002. (d0 (calendar-absolute-from-gregorian date))
  6003. marker hdmarker ee txt d1 d2 s1 s2 category
  6004. level todo-state tags pos head donep inherited-tags)
  6005. (goto-char (point-min))
  6006. (while (re-search-forward regexp nil t)
  6007. (catch :skip
  6008. (org-agenda-skip)
  6009. (setq pos (point))
  6010. (let ((start-time (match-string 1))
  6011. (end-time (match-string 2)))
  6012. (setq s1 (match-string 1)
  6013. s2 (match-string 2)
  6014. d1 (time-to-days
  6015. (condition-case err
  6016. (org-time-string-to-time s1)
  6017. (error
  6018. (error
  6019. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6020. s1
  6021. pos
  6022. (current-buffer)
  6023. (error-message-string err)))))
  6024. d2 (time-to-days
  6025. (condition-case err
  6026. (org-time-string-to-time s2)
  6027. (error
  6028. (error
  6029. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6030. s2
  6031. pos
  6032. (current-buffer)
  6033. (error-message-string err))))))
  6034. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6035. ;; Only allow days between the limits, because the normal
  6036. ;; date stamps will catch the limits.
  6037. (save-excursion
  6038. (setq todo-state (org-get-todo-state))
  6039. (setq donep (member todo-state org-done-keywords))
  6040. (when (and donep org-agenda-skip-timestamp-if-done)
  6041. (throw :skip t))
  6042. (setq marker (org-agenda-new-marker (point))
  6043. category (org-get-category))
  6044. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6045. (throw :skip nil)
  6046. (goto-char (match-beginning 0))
  6047. (setq hdmarker (org-agenda-new-marker (point))
  6048. inherited-tags
  6049. (or (eq org-agenda-show-inherited-tags 'always)
  6050. (and (listp org-agenda-show-inherited-tags)
  6051. (memq 'agenda org-agenda-show-inherited-tags))
  6052. (and (eq org-agenda-show-inherited-tags t)
  6053. (or (eq org-agenda-use-tag-inheritance t)
  6054. (memq 'agenda org-agenda-use-tag-inheritance))))
  6055. tags (org-get-tags nil (not inherited-tags)))
  6056. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6057. (looking-at "\\*+[ \t]+\\(.*\\)")
  6058. (setq head (match-string 1))
  6059. (let ((remove-re
  6060. (if org-agenda-remove-timeranges-from-blocks
  6061. (concat
  6062. "<" (regexp-quote s1) ".*?>"
  6063. "--"
  6064. "<" (regexp-quote s2) ".*?>")
  6065. nil)))
  6066. (setq txt (org-agenda-format-item
  6067. (format
  6068. (nth (if (= d1 d2) 0 1)
  6069. org-agenda-timerange-leaders)
  6070. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6071. head level category tags
  6072. (save-match-data
  6073. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6074. (match-string 6 s1)))
  6075. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6076. (match-string 6 s2))))
  6077. (cond ((string= hhmm1 hhmm2)
  6078. (concat "<" start-time ">--<" end-time ">"))
  6079. ((and (= d1 d0) (= d2 d0))
  6080. (concat "<" start-time ">--<" end-time ">"))
  6081. ((= d1 d0)
  6082. (concat "<" start-time ">"))
  6083. ((= d2 d0)
  6084. (concat "<" end-time ">")))))
  6085. remove-re))))
  6086. (org-add-props txt props
  6087. 'org-marker marker 'org-hd-marker hdmarker
  6088. 'type "block" 'date date
  6089. 'level level
  6090. 'todo-state todo-state
  6091. 'priority (org-get-priority txt))
  6092. (push txt ee))))
  6093. (goto-char pos)))
  6094. ;; Sort the entries by expiration date.
  6095. (nreverse ee)))
  6096. ;;; Agenda presentation and sorting
  6097. (defvar org-prefix-has-time nil
  6098. "A flag, set by `org-compile-prefix-format'.
  6099. The flag is set if the currently compiled format contains a `%t'.")
  6100. (defvar org-prefix-has-tag nil
  6101. "A flag, set by `org-compile-prefix-format'.
  6102. The flag is set if the currently compiled format contains a `%T'.")
  6103. (defvar org-prefix-has-effort nil
  6104. "A flag, set by `org-compile-prefix-format'.
  6105. The flag is set if the currently compiled format contains a `%e'.")
  6106. (defvar org-prefix-has-breadcrumbs nil
  6107. "A flag, set by `org-compile-prefix-format'.
  6108. The flag is set if the currently compiled format contains a `%b'.")
  6109. (defvar org-prefix-category-length nil
  6110. "Used by `org-compile-prefix-format' to remember the category field width.")
  6111. (defvar org-prefix-category-max-length nil
  6112. "Used by `org-compile-prefix-format' to remember the category field width.")
  6113. (defun org-agenda-get-category-icon (category)
  6114. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6115. (cl-dolist (entry org-agenda-category-icon-alist)
  6116. (when (string-match-p (car entry) category)
  6117. (if (listp (cadr entry))
  6118. (cl-return (cadr entry))
  6119. (cl-return (apply #'create-image (cdr entry)))))))
  6120. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6121. remove-re habitp)
  6122. "Format TXT to be inserted into the agenda buffer.
  6123. In particular, add the prefix and corresponding text properties.
  6124. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6125. LEVEL may be a string to replace the `%l' specifier.
  6126. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6127. category taken from local variable or file name. It will replace the `%c'
  6128. specifier in the format.
  6129. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6130. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6131. When DOTIME is a string, this string is searched for a time before TXT is.
  6132. TAGS can be the tags of the headline.
  6133. Any match of REMOVE-RE will be removed from TXT."
  6134. ;; We keep the org-prefix-* variable values along with a compiled
  6135. ;; formatter, so that multiple agendas existing at the same time do
  6136. ;; not step on each other toes.
  6137. ;;
  6138. ;; It was inconvenient to make these variables buffer local in
  6139. ;; Agenda buffers, because this function expects to be called with
  6140. ;; the buffer where item comes from being current, and not agenda
  6141. ;; buffer
  6142. (let* ((bindings (car org-prefix-format-compiled))
  6143. (formatter (cadr org-prefix-format-compiled)))
  6144. (cl-loop for (var value) in bindings
  6145. do (set var value))
  6146. (save-match-data
  6147. ;; Diary entries sometimes have extra whitespace at the beginning
  6148. (setq txt (org-trim txt))
  6149. ;; Fix the tags part in txt
  6150. (setq txt (org-agenda-fix-displayed-tags
  6151. txt tags
  6152. org-agenda-show-inherited-tags
  6153. org-agenda-hide-tags-regexp))
  6154. (let* ((category (or category
  6155. (if buffer-file-name
  6156. (file-name-sans-extension
  6157. (file-name-nondirectory buffer-file-name))
  6158. "")))
  6159. (category-icon (org-agenda-get-category-icon category))
  6160. (category-icon (if category-icon
  6161. (propertize " " 'display category-icon)
  6162. ""))
  6163. (effort (and (not (string= txt ""))
  6164. (get-text-property 1 'effort txt)))
  6165. ;; time, tag, effort are needed for the eval of the prefix format
  6166. (tag (if tags (nth (1- (length tags)) tags) ""))
  6167. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6168. time
  6169. (ts (when dotime (concat
  6170. (if (stringp dotime) dotime "")
  6171. (and org-agenda-search-headline-for-time txt))))
  6172. (time-of-day (and dotime (org-get-time-of-day ts)))
  6173. stamp plain s0 s1 s2 rtn srp l
  6174. duration breadcrumbs)
  6175. (and (derived-mode-p 'org-mode) buffer-file-name
  6176. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6177. (when (and dotime time-of-day)
  6178. ;; Extract starting and ending time and move them to prefix
  6179. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6180. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6181. (setq s0 (match-string 0 ts)
  6182. srp (and stamp (match-end 3))
  6183. s1 (match-string (if plain 1 2) ts)
  6184. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6185. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6186. ;; them, we might want to remove them there to avoid duplication.
  6187. ;; The user can turn this off with a variable.
  6188. (when (and org-prefix-has-time
  6189. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6190. (string-match (concat (regexp-quote s0) " *") txt)
  6191. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6192. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6193. (= (match-beginning 0) 0)
  6194. t))
  6195. (setq txt (replace-match "" nil nil txt))))
  6196. ;; Normalize the time(s) to 24 hour
  6197. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6198. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6199. ;; Try to set s2 if s1 and
  6200. ;; `org-agenda-default-appointment-duration' are set
  6201. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6202. (setq s2
  6203. (org-duration-from-minutes
  6204. (+ (org-duration-to-minutes s1 t)
  6205. org-agenda-default-appointment-duration)
  6206. nil t)))
  6207. ;; Compute the duration
  6208. (when s2
  6209. (setq duration (- (org-duration-to-minutes s2)
  6210. (org-duration-to-minutes s1)))))
  6211. (when (string-match org-tag-group-re txt)
  6212. ;; Tags are in the string
  6213. (if (or (eq org-agenda-remove-tags t)
  6214. (and org-agenda-remove-tags
  6215. org-prefix-has-tag))
  6216. (setq txt (replace-match "" t t txt))
  6217. (setq txt (replace-match
  6218. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6219. (match-string 1 txt))
  6220. t t txt))))
  6221. (when remove-re
  6222. (while (string-match remove-re txt)
  6223. (setq txt (replace-match "" t t txt))))
  6224. ;; Set org-heading property on `txt' to mark the start of the
  6225. ;; heading.
  6226. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6227. ;; Prepare the variables needed in the eval of the compiled format
  6228. (when org-prefix-has-breadcrumbs
  6229. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6230. (let ((s (org-format-outline-path (org-get-outline-path)
  6231. (1- (frame-width))
  6232. nil org-agenda-breadcrumbs-separator)))
  6233. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6234. (setq time (cond (s2 (concat
  6235. (org-agenda-time-of-day-to-ampm-maybe s1)
  6236. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6237. (when org-agenda-timegrid-use-ampm " ")))
  6238. (s1 (concat
  6239. (org-agenda-time-of-day-to-ampm-maybe s1)
  6240. (if org-agenda-timegrid-use-ampm
  6241. (concat time-grid-trailing-characters " ")
  6242. time-grid-trailing-characters)))
  6243. (t ""))
  6244. extra (or (and (not habitp) extra) "")
  6245. category (if (symbolp category) (symbol-name category) category)
  6246. level (or level ""))
  6247. (if (string-match org-link-bracket-re category)
  6248. (progn
  6249. (setq l (string-width (or (match-string 2) (match-string 1))))
  6250. (when (< l (or org-prefix-category-length 0))
  6251. (setq category (copy-sequence category))
  6252. (org-add-props category nil
  6253. 'extra-space (make-string
  6254. (- org-prefix-category-length l 1) ?\ ))))
  6255. (when (and org-prefix-category-max-length
  6256. (>= (length category) org-prefix-category-max-length))
  6257. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6258. ;; Evaluate the compiled format
  6259. (setq rtn (concat (eval formatter) txt))
  6260. ;; And finally add the text properties
  6261. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6262. (org-add-props rtn nil
  6263. 'org-category category
  6264. 'tags (mapcar 'org-downcase-keep-props tags)
  6265. 'org-priority-highest org-priority-highest
  6266. 'org-priority-lowest org-priority-lowest
  6267. 'time-of-day time-of-day
  6268. 'duration duration
  6269. 'breadcrumbs breadcrumbs
  6270. 'txt txt
  6271. 'level level
  6272. 'time time
  6273. 'extra extra
  6274. 'format org-prefix-format-compiled
  6275. 'dotime dotime)))))
  6276. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6277. "Remove tags string from TXT, and add a modified list of tags.
  6278. The modified list may contain inherited tags, and tags matched by
  6279. `org-agenda-hide-tags-regexp' will be removed."
  6280. (when (or add-inherited hide-re)
  6281. (when (string-match org-tag-group-re txt)
  6282. (setq txt (substring txt 0 (match-beginning 0))))
  6283. (setq tags
  6284. (delq nil
  6285. (mapcar (lambda (tg)
  6286. (if (or (and hide-re (string-match hide-re tg))
  6287. (and (not add-inherited)
  6288. (get-text-property 0 'inherited tg)))
  6289. nil
  6290. tg))
  6291. tags)))
  6292. (when tags
  6293. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6294. i)
  6295. (setq txt (concat txt " :"
  6296. (mapconcat
  6297. (lambda (x)
  6298. (setq i (get-text-property 0 'inherited x))
  6299. (if (and have-i (not i))
  6300. (progn
  6301. (setq have-i nil)
  6302. (concat ":" x))
  6303. x))
  6304. tags ":")
  6305. (if have-i "::" ":"))))))
  6306. txt)
  6307. (defun org-downcase-keep-props (s)
  6308. (let ((props (text-properties-at 0 s)))
  6309. (setq s (downcase s))
  6310. (add-text-properties 0 (length s) props s)
  6311. s))
  6312. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6313. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6314. "Add a time-grid for agenda items which need it.
  6315. LIST is the list of agenda items formatted by `org-agenda-list'.
  6316. NDAYS is the span of the current agenda view.
  6317. TODAYP is t when the current agenda view is on today."
  6318. (catch 'exit
  6319. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6320. ((and todayp (member 'today (car org-agenda-time-grid))))
  6321. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6322. ((member 'weekly (car org-agenda-time-grid)))
  6323. (t (throw 'exit list)))
  6324. (let* ((have (delq nil (mapcar
  6325. (lambda (x) (get-text-property 1 'time-of-day x))
  6326. list)))
  6327. (string (nth 3 org-agenda-time-grid))
  6328. (gridtimes (nth 1 org-agenda-time-grid))
  6329. (req (car org-agenda-time-grid))
  6330. (remove (member 'remove-match req))
  6331. new time)
  6332. (when (and (member 'require-timed req) (not have))
  6333. ;; don't show empty grid
  6334. (throw 'exit list))
  6335. (while (setq time (pop gridtimes))
  6336. (unless (and remove (member time have))
  6337. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6338. (push (org-agenda-format-item
  6339. nil string nil "" nil
  6340. (concat (substring time 0 -2) ":" (substring time -2)))
  6341. new)
  6342. (put-text-property
  6343. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6344. (when (and todayp org-agenda-show-current-time-in-grid)
  6345. (push (org-agenda-format-item
  6346. nil org-agenda-current-time-string nil "" nil
  6347. (format-time-string "%H:%M "))
  6348. new)
  6349. (put-text-property
  6350. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6351. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6352. (append new list)
  6353. (append list new)))))
  6354. (defun org-compile-prefix-format (key)
  6355. "Compile the prefix format into a Lisp form that can be evaluated.
  6356. The resulting form and associated variable bindings is returned
  6357. and stored in the variable `org-prefix-format-compiled'."
  6358. (setq org-prefix-has-time nil
  6359. org-prefix-has-tag nil
  6360. org-prefix-category-length nil
  6361. org-prefix-has-effort nil
  6362. org-prefix-has-breadcrumbs nil)
  6363. (let ((s (cond
  6364. ((stringp org-agenda-prefix-format)
  6365. org-agenda-prefix-format)
  6366. ((assq key org-agenda-prefix-format)
  6367. (cdr (assq key org-agenda-prefix-format)))
  6368. (t " %-12:c%?-12t% s")))
  6369. (start 0)
  6370. varform vars var e c f opt)
  6371. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6372. s start)
  6373. (setq var (or (cdr (assoc (match-string 4 s)
  6374. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6375. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6376. 'eval)
  6377. c (or (match-string 3 s) "")
  6378. opt (match-beginning 1)
  6379. start (1+ (match-beginning 0)))
  6380. (cl-case var
  6381. (time (setq org-prefix-has-time t))
  6382. (tag (setq org-prefix-has-tag t))
  6383. (effort (setq org-prefix-has-effort t))
  6384. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6385. (setq f (concat "%" (match-string 2 s) "s"))
  6386. (when (eq var 'category)
  6387. (setq org-prefix-category-length
  6388. (floor (abs (string-to-number (match-string 2 s)))))
  6389. (setq org-prefix-category-max-length
  6390. (let ((x (match-string 2 s)))
  6391. (save-match-data
  6392. (and (string-match "\\.[0-9]+" x)
  6393. (string-to-number (substring (match-string 0 x) 1)))))))
  6394. (if (eq var 'eval)
  6395. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6396. (if opt
  6397. (setq varform
  6398. `(if (or (equal "" ,var) (equal nil ,var))
  6399. ""
  6400. (format ,f (concat ,var ,c))))
  6401. (setq varform
  6402. `(format ,f (if (or (equal ,var "")
  6403. (equal ,var nil)) ""
  6404. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6405. (setq s (replace-match "%s" t nil s))
  6406. (push varform vars))
  6407. (setq vars (nreverse vars))
  6408. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6409. (setq org-prefix-format-compiled
  6410. (list
  6411. `((org-prefix-has-time ,org-prefix-has-time)
  6412. (org-prefix-has-tag ,org-prefix-has-tag)
  6413. (org-prefix-category-length ,org-prefix-category-length)
  6414. (org-prefix-has-effort ,org-prefix-has-effort)
  6415. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6416. `(format ,s ,@vars))))))
  6417. (defun org-set-sorting-strategy (key)
  6418. (if (symbolp (car org-agenda-sorting-strategy))
  6419. ;; the old format
  6420. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6421. (setq org-agenda-sorting-strategy-selected
  6422. (or (cdr (assq key org-agenda-sorting-strategy))
  6423. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6424. '(time-up category-keep priority-down)))))
  6425. (defun org-get-time-of-day (s &optional string mod24)
  6426. "Check string S for a time of day.
  6427. If found, return it as a military time number between 0 and 2400.
  6428. If not found, return nil.
  6429. The optional STRING argument forces conversion into a 5 character wide string
  6430. HH:MM."
  6431. (save-match-data
  6432. (when
  6433. (and
  6434. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6435. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6436. (not (eq (get-text-property 1 'face s) 'org-link)))
  6437. (let* ((h (string-to-number (match-string 1 s)))
  6438. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6439. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6440. (am-p (equal ampm "am"))
  6441. (h1 (cond ((not ampm) h)
  6442. ((= h 12) (if am-p 0 12))
  6443. (t (+ h (if am-p 0 12)))))
  6444. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6445. (mod h1 24) h1))
  6446. (t0 (+ (* 100 h2) m))
  6447. (t1 (concat (if (>= h1 24) "+" " ")
  6448. (if (and org-agenda-time-leading-zero
  6449. (< t0 1000)) "0" "")
  6450. (if (< t0 100) "0" "")
  6451. (if (< t0 10) "0" "")
  6452. (number-to-string t0))))
  6453. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6454. (defvar org-agenda-before-sorting-filter-function nil
  6455. "Function to be applied to agenda items prior to sorting.
  6456. Prior to sorting also means just before they are inserted into the agenda.
  6457. To aid sorting, you may revisit the original entries and add more text
  6458. properties which will later be used by the sorting functions.
  6459. The function should take a string argument, an agenda line.
  6460. It has access to the text properties in that line, which contain among
  6461. other things, the property `org-hd-marker' that points to the entry
  6462. where the line comes from. Note that not all lines going into the agenda
  6463. have this property, only most.
  6464. The function should return the modified string. It is probably best
  6465. to ONLY change text properties.
  6466. You can also use this function as a filter, by returning nil for lines
  6467. you don't want to have in the agenda at all. For this application, you
  6468. could bind the variable in the options section of a custom command.")
  6469. (defun org-agenda-finalize-entries (list &optional type)
  6470. "Sort, limit and concatenate the LIST of agenda items.
  6471. The optional argument TYPE tells the agenda type."
  6472. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6473. (cdr (assoc type org-agenda-max-effort)))
  6474. (t org-agenda-max-effort)))
  6475. (max-todo (cond ((listp org-agenda-max-todos)
  6476. (cdr (assoc type org-agenda-max-todos)))
  6477. (t org-agenda-max-todos)))
  6478. (max-tags (cond ((listp org-agenda-max-tags)
  6479. (cdr (assoc type org-agenda-max-tags)))
  6480. (t org-agenda-max-tags)))
  6481. (max-entries (cond ((listp org-agenda-max-entries)
  6482. (cdr (assoc type org-agenda-max-entries)))
  6483. (t org-agenda-max-entries))))
  6484. (when org-agenda-before-sorting-filter-function
  6485. (setq list
  6486. (delq nil
  6487. (mapcar
  6488. org-agenda-before-sorting-filter-function list))))
  6489. (setq list (mapcar 'org-agenda-highlight-todo list)
  6490. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6491. (when max-effort
  6492. (setq list (org-agenda-limit-entries
  6493. list 'effort-minutes max-effort
  6494. (lambda (e) (or e (if org-agenda-sort-noeffort-is-high
  6495. 32767 -1))))))
  6496. (when max-todo
  6497. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6498. (when max-tags
  6499. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6500. (when max-entries
  6501. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6502. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6503. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6504. (mapconcat 'identity list "\n")))
  6505. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6506. "Limit the number of agenda entries."
  6507. (let ((include (and limit (< limit 0))))
  6508. (if limit
  6509. (let ((fun (or fn (lambda (p) (when p 1))))
  6510. (lim 0))
  6511. (delq nil
  6512. (mapcar
  6513. (lambda (e)
  6514. (let ((pval (funcall
  6515. fun (get-text-property (1- (length e))
  6516. prop e))))
  6517. (when pval (setq lim (+ lim pval)))
  6518. (cond ((and pval (<= lim (abs limit))) e)
  6519. ((and include (not pval)) e))))
  6520. list)))
  6521. list)))
  6522. (defun org-agenda-limit-interactively (remove)
  6523. "In agenda, interactively limit entries to various maximums."
  6524. (interactive "P")
  6525. (if remove
  6526. (progn (setq org-agenda-max-entries nil
  6527. org-agenda-max-todos nil
  6528. org-agenda-max-tags nil
  6529. org-agenda-max-effort nil)
  6530. (org-agenda-redo))
  6531. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6532. (msg (cond ((= max ?E) "How many minutes? ")
  6533. ((= max ?e) "How many entries? ")
  6534. ((= max ?t) "How many TODO entries? ")
  6535. ((= max ?T) "How many tagged entries? ")
  6536. (t (user-error "Wrong input"))))
  6537. (num (string-to-number (read-from-minibuffer msg))))
  6538. (cond ((equal max ?e)
  6539. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6540. ((equal max ?t)
  6541. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6542. ((equal max ?T)
  6543. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6544. ((equal max ?E)
  6545. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6546. (org-agenda-fit-window-to-buffer))
  6547. (defun org-agenda-highlight-todo (x)
  6548. (let ((org-done-keywords org-done-keywords-for-agenda)
  6549. (case-fold-search nil)
  6550. re)
  6551. (if (eq x 'line)
  6552. (save-excursion
  6553. (beginning-of-line 1)
  6554. (setq re (org-get-at-bol 'org-todo-regexp))
  6555. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6556. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6557. (add-text-properties (match-beginning 0) (match-end 1)
  6558. (list 'face (org-get-todo-face 1)))
  6559. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6560. (delete-region (match-beginning 1) (1- (match-end 0)))
  6561. (goto-char (match-beginning 1))
  6562. (insert (format org-agenda-todo-keyword-format s)))))
  6563. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6564. (setq re (get-text-property 0 'org-todo-regexp x))
  6565. (when (and re
  6566. ;; Test `pl' because if there's no heading content,
  6567. ;; there's no point matching to highlight. Note
  6568. ;; that if we didn't test `pl' first, and there
  6569. ;; happened to be no keyword from `org-todo-regexp'
  6570. ;; on this heading line, then the `equal' comparison
  6571. ;; afterwards would spuriously succeed in the case
  6572. ;; where `pl' is nil -- causing an args-out-of-range
  6573. ;; error when we try to add text properties to text
  6574. ;; that isn't there.
  6575. pl
  6576. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6577. x pl)
  6578. pl))
  6579. (add-text-properties
  6580. (or (match-end 1) (match-end 0)) (match-end 0)
  6581. (list 'face (org-get-todo-face (match-string 2 x)))
  6582. x)
  6583. (when (match-end 1)
  6584. (setq x
  6585. (concat
  6586. (substring x 0 (match-end 1))
  6587. (format org-agenda-todo-keyword-format
  6588. (match-string 2 x))
  6589. ;; Remove `display' property as the icon could leak
  6590. ;; on the white space.
  6591. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6592. 'display))
  6593. (substring x (match-end 3)))))))
  6594. x)))
  6595. (defsubst org-cmp-values (a b property)
  6596. "Compare the numeric value of text PROPERTY for string A and B."
  6597. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6598. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6599. (cond ((> pa pb) +1)
  6600. ((< pa pb) -1))))
  6601. (defsubst org-cmp-effort (a b)
  6602. "Compare the effort values of string A and B."
  6603. (let* ((def (if org-agenda-sort-noeffort-is-high 32767 -1))
  6604. ;; `effort-minutes' property is not directly accessible from
  6605. ;; the strings, but is stored as a property in `txt'.
  6606. (ea (or (get-text-property
  6607. 0 'effort-minutes (get-text-property 0 'txt a))
  6608. def))
  6609. (eb (or (get-text-property
  6610. 0 'effort-minutes (get-text-property 0 'txt b))
  6611. def)))
  6612. (cond ((> ea eb) +1)
  6613. ((< ea eb) -1))))
  6614. (defsubst org-cmp-category (a b)
  6615. "Compare the string values of categories of strings A and B."
  6616. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6617. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6618. (cond ((string-lessp ca cb) -1)
  6619. ((string-lessp cb ca) +1))))
  6620. (defsubst org-cmp-todo-state (a b)
  6621. "Compare the todo states of strings A and B."
  6622. (let* ((ma (or (get-text-property 1 'org-marker a)
  6623. (get-text-property 1 'org-hd-marker a)))
  6624. (mb (or (get-text-property 1 'org-marker b)
  6625. (get-text-property 1 'org-hd-marker b)))
  6626. (fa (and ma (marker-buffer ma)))
  6627. (fb (and mb (marker-buffer mb)))
  6628. (todo-kwds
  6629. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6630. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6631. (ta (or (get-text-property 1 'todo-state a) ""))
  6632. (tb (or (get-text-property 1 'todo-state b) ""))
  6633. (la (- (length (member ta todo-kwds))))
  6634. (lb (- (length (member tb todo-kwds))))
  6635. (donepa (member ta org-done-keywords-for-agenda))
  6636. (donepb (member tb org-done-keywords-for-agenda)))
  6637. (cond ((and donepa (not donepb)) -1)
  6638. ((and (not donepa) donepb) +1)
  6639. ((< la lb) -1)
  6640. ((< lb la) +1))))
  6641. (defsubst org-cmp-alpha (a b)
  6642. "Compare the headlines, alphabetically."
  6643. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6644. (plb (text-property-any 0 (length b) 'org-heading t b))
  6645. (ta (and pla (substring a pla)))
  6646. (tb (and plb (substring b plb)))
  6647. (case-fold-search nil))
  6648. (when pla
  6649. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6650. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6651. ta)
  6652. (setq ta (substring ta (match-end 0))))
  6653. (setq ta (downcase ta)))
  6654. (when plb
  6655. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6656. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6657. tb)
  6658. (setq tb (substring tb (match-end 0))))
  6659. (setq tb (downcase tb)))
  6660. (cond ((not (or ta tb)) nil)
  6661. ((not ta) +1)
  6662. ((not tb) -1)
  6663. ((string-lessp ta tb) -1)
  6664. ((string-lessp tb ta) +1))))
  6665. (defsubst org-cmp-tag (a b)
  6666. "Compare the string values of the first tags of A and B."
  6667. (let ((ta (car (last (get-text-property 1 'tags a))))
  6668. (tb (car (last (get-text-property 1 'tags b)))))
  6669. (cond ((not (or ta tb)) nil)
  6670. ((not ta) +1)
  6671. ((not tb) -1)
  6672. ((string-lessp ta tb) -1)
  6673. ((string-lessp tb ta) +1))))
  6674. (defsubst org-cmp-time (a b)
  6675. "Compare the time-of-day values of strings A and B."
  6676. (let* ((def (if org-agenda-sort-notime-is-late 9901 -1))
  6677. (ta (or (get-text-property 1 'time-of-day a) def))
  6678. (tb (or (get-text-property 1 'time-of-day b) def)))
  6679. (cond ((< ta tb) -1)
  6680. ((< tb ta) +1))))
  6681. (defsubst org-cmp-ts (a b type)
  6682. "Compare the timestamps values of entries A and B.
  6683. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6684. \"timestamp_ia\", compare within each of these type. When TYPE
  6685. is the empty string, compare all timestamps without respect of
  6686. their type."
  6687. (let* ((def (and (not org-agenda-sort-notime-is-late) -1))
  6688. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6689. (get-text-property 1 'ts-date a))
  6690. def))
  6691. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6692. (get-text-property 1 'ts-date b))
  6693. def)))
  6694. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6695. ((if tb (and ta (< tb ta)) ta) +1))))
  6696. (defsubst org-cmp-habit-p (a b)
  6697. "Compare the todo states of strings A and B."
  6698. (let ((ha (get-text-property 1 'org-habit-p a))
  6699. (hb (get-text-property 1 'org-habit-p b)))
  6700. (cond ((and ha (not hb)) -1)
  6701. ((and (not ha) hb) +1))))
  6702. (defun org-entries-lessp (a b)
  6703. "Predicate for sorting agenda entries."
  6704. ;; The following variables will be used when the form is evaluated.
  6705. ;; So even though the compiler complains, keep them.
  6706. (let* ((ss org-agenda-sorting-strategy-selected)
  6707. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6708. (org-cmp-ts a b "")))
  6709. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6710. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6711. (org-cmp-ts a b "scheduled")))
  6712. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6713. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6714. (org-cmp-ts a b "deadline")))
  6715. (deadline-down (if deadline-up (- deadline-up) nil))
  6716. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6717. (org-cmp-ts a b "timestamp_ia")))
  6718. (tsia-down (if tsia-up (- tsia-up) nil))
  6719. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6720. (org-cmp-ts a b "timestamp")))
  6721. (ts-down (if ts-up (- ts-up) nil))
  6722. (time-up (and (org-em 'time-up 'time-down ss)
  6723. (org-cmp-time a b)))
  6724. (time-down (if time-up (- time-up) nil))
  6725. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6726. (org-cmp-values a b 'org-stats)))
  6727. (stats-down (if stats-up (- stats-up) nil))
  6728. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6729. (org-cmp-values a b 'priority)))
  6730. (priority-down (if priority-up (- priority-up) nil))
  6731. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6732. (org-cmp-effort a b)))
  6733. (effort-down (if effort-up (- effort-up) nil))
  6734. (category-up (and (or (org-em 'category-up 'category-down ss)
  6735. (memq 'category-keep ss))
  6736. (org-cmp-category a b)))
  6737. (category-down (if category-up (- category-up) nil))
  6738. (category-keep (if category-up +1 nil))
  6739. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6740. (org-cmp-tag a b)))
  6741. (tag-down (if tag-up (- tag-up) nil))
  6742. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6743. (org-cmp-todo-state a b)))
  6744. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6745. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6746. (org-cmp-habit-p a b)))
  6747. (habit-down (if habit-up (- habit-up) nil))
  6748. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6749. (org-cmp-alpha a b)))
  6750. (alpha-down (if alpha-up (- alpha-up) nil))
  6751. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6752. user-defined-up user-defined-down)
  6753. (when (and need-user-cmp org-agenda-cmp-user-defined
  6754. (functionp org-agenda-cmp-user-defined))
  6755. (setq user-defined-up
  6756. (funcall org-agenda-cmp-user-defined a b)
  6757. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6758. (cdr (assoc
  6759. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6760. '((-1 . t) (1 . nil) (nil . nil))))))
  6761. ;;; Agenda restriction lock
  6762. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6763. "Overlay to mark the headline to which agenda commands are restricted.")
  6764. (overlay-put org-agenda-restriction-lock-overlay
  6765. 'face 'org-agenda-restriction-lock)
  6766. (overlay-put org-agenda-restriction-lock-overlay
  6767. 'help-echo "Agendas are currently limited to this subtree.")
  6768. (delete-overlay org-agenda-restriction-lock-overlay)
  6769. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6770. "Set the restriction lock to the agenda item at point from within the agenda.
  6771. When called with a `\\[universal-argument]' prefix, restrict to
  6772. the file which contains the item.
  6773. Argument ARG is the prefix argument."
  6774. (interactive "P")
  6775. (unless (derived-mode-p 'org-agenda-mode)
  6776. (user-error "Not in an Org agenda buffer"))
  6777. (let* ((marker (or (org-get-at-bol 'org-marker)
  6778. (org-agenda-error)))
  6779. (buffer (marker-buffer marker))
  6780. (pos (marker-position marker)))
  6781. (with-current-buffer buffer
  6782. (goto-char pos)
  6783. (org-agenda-set-restriction-lock arg))))
  6784. ;;;###autoload
  6785. (defun org-agenda-set-restriction-lock (&optional type)
  6786. "Set restriction lock for agenda to current subtree or file.
  6787. When in a restricted subtree, remove it.
  6788. The restriction will span over the entire file if TYPE is `file',
  6789. or if type is '(4), or if the cursor is before the first headline
  6790. in the file. Otherwise, only apply the restriction to the current
  6791. subtree."
  6792. (interactive "P")
  6793. (if (and org-agenda-overriding-restriction
  6794. (member org-agenda-restriction-lock-overlay
  6795. (overlays-at (point)))
  6796. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6797. (point)))
  6798. (org-agenda-remove-restriction-lock 'noupdate)
  6799. (org-agenda-remove-restriction-lock 'noupdate)
  6800. (and (equal type '(4)) (setq type 'file))
  6801. (setq type (cond
  6802. (type type)
  6803. ((org-at-heading-p) 'subtree)
  6804. ((condition-case nil (org-back-to-heading t) (error nil))
  6805. 'subtree)
  6806. (t 'file)))
  6807. (if (eq type 'subtree)
  6808. (progn
  6809. (setq org-agenda-restrict (current-buffer))
  6810. (setq org-agenda-overriding-restriction 'subtree)
  6811. (put 'org-agenda-files 'org-restrict
  6812. (list (buffer-file-name (buffer-base-buffer))))
  6813. (org-back-to-heading t)
  6814. (move-overlay org-agenda-restriction-lock-overlay
  6815. (point)
  6816. (if org-agenda-restriction-lock-highlight-subtree
  6817. (save-excursion (org-end-of-subtree t t) (point))
  6818. (point-at-eol)))
  6819. (move-marker org-agenda-restrict-begin (point))
  6820. (move-marker org-agenda-restrict-end
  6821. (save-excursion (org-end-of-subtree t t)))
  6822. (message "Locking agenda restriction to subtree"))
  6823. (put 'org-agenda-files 'org-restrict
  6824. (list (buffer-file-name (buffer-base-buffer))))
  6825. (setq org-agenda-restrict nil)
  6826. (setq org-agenda-overriding-restriction 'file)
  6827. (move-marker org-agenda-restrict-begin nil)
  6828. (move-marker org-agenda-restrict-end nil)
  6829. (message "Locking agenda restriction to file"))
  6830. (setq current-prefix-arg nil))
  6831. (org-agenda-maybe-redo))
  6832. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6833. "Remove agenda restriction lock."
  6834. (interactive "P")
  6835. (if (not org-agenda-restrict)
  6836. (message "No agenda restriction to remove.")
  6837. (delete-overlay org-agenda-restriction-lock-overlay)
  6838. (delete-overlay org-speedbar-restriction-lock-overlay)
  6839. (setq org-agenda-overriding-restriction nil)
  6840. (setq org-agenda-restrict nil)
  6841. (put 'org-agenda-files 'org-restrict nil)
  6842. (move-marker org-agenda-restrict-begin nil)
  6843. (move-marker org-agenda-restrict-end nil)
  6844. (setq current-prefix-arg nil)
  6845. (message "Agenda restriction lock removed")
  6846. (or noupdate (org-agenda-maybe-redo))))
  6847. (defun org-agenda-maybe-redo ()
  6848. "If there is any window showing the agenda view, update it."
  6849. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6850. org-agenda-buffer-name)
  6851. t))
  6852. (w0 (selected-window)))
  6853. (when w
  6854. (select-window w)
  6855. (org-agenda-redo)
  6856. (select-window w0)
  6857. (if org-agenda-overriding-restriction
  6858. (message "Agenda view shifted to new %s restriction"
  6859. org-agenda-overriding-restriction)
  6860. (message "Agenda restriction lock removed")))))
  6861. ;;; Agenda commands
  6862. (defun org-agenda-check-type (error &rest types)
  6863. "Check if agenda buffer or component is of allowed type.
  6864. If ERROR is non-nil, throw an error, otherwise just return nil.
  6865. Allowed types are `agenda' `todo' `tags' `search'."
  6866. (cond ((not org-agenda-type)
  6867. (error "No Org agenda currently displayed"))
  6868. ((memq org-agenda-type types) t)
  6869. (error
  6870. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6871. (t nil)))
  6872. (defun org-agenda-Quit ()
  6873. "Exit the agenda, killing the agenda buffer.
  6874. Like `org-agenda-quit', but kill the buffer even when
  6875. `org-agenda-sticky' is non-nil."
  6876. (interactive)
  6877. (org-agenda--quit))
  6878. (defun org-agenda-quit ()
  6879. "Exit the agenda.
  6880. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6881. instead of killing it.
  6882. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6883. the pre-agenda window configuration.
  6884. When column view is active, exit column view instead of the
  6885. agenda."
  6886. (interactive)
  6887. (org-agenda--quit org-agenda-sticky))
  6888. (defun org-agenda--quit (&optional bury)
  6889. (if org-agenda-columns-active
  6890. (org-columns-quit)
  6891. (let ((wconf org-agenda-pre-window-conf)
  6892. (buf (current-buffer))
  6893. (org-agenda-last-indirect-window
  6894. (and (eq org-indirect-buffer-display 'other-window)
  6895. org-agenda-last-indirect-buffer
  6896. (get-buffer-window org-agenda-last-indirect-buffer))))
  6897. (cond
  6898. ((eq org-agenda-window-setup 'other-frame)
  6899. (delete-frame))
  6900. ((eq org-agenda-window-setup 'other-tab)
  6901. (if (fboundp 'tab-bar-close-tab)
  6902. (tab-bar-close-tab)
  6903. (user-error "Your version of Emacs does not have tab bar mode support")))
  6904. ((and org-agenda-restore-windows-after-quit
  6905. wconf)
  6906. ;; Maybe restore the pre-agenda window configuration. Reset
  6907. ;; `org-agenda-pre-window-conf' before running
  6908. ;; `set-window-configuration', which loses the current buffer.
  6909. (setq org-agenda-pre-window-conf nil)
  6910. (set-window-configuration wconf))
  6911. (t
  6912. (when org-agenda-last-indirect-window
  6913. (delete-window org-agenda-last-indirect-window))
  6914. (and (not (eq org-agenda-window-setup 'current-window))
  6915. (not (one-window-p))
  6916. (delete-window))))
  6917. (if bury
  6918. ;; Set the agenda buffer as the current buffer instead of
  6919. ;; passing it as an argument to `bury-buffer' so that
  6920. ;; `bury-buffer' removes it from the window.
  6921. (with-current-buffer buf
  6922. (bury-buffer))
  6923. (kill-buffer buf)
  6924. (setq org-agenda-archives-mode nil
  6925. org-agenda-buffer nil)))))
  6926. (defun org-agenda-exit ()
  6927. "Exit the agenda, killing Org buffers loaded by the agenda.
  6928. Like `org-agenda-Quit', but kill any buffers that were created by
  6929. the agenda. Org buffers visited directly by the user will not be
  6930. touched. Also, exit the agenda even if it is in column view."
  6931. (interactive)
  6932. (when org-agenda-columns-active
  6933. (org-columns-quit))
  6934. (org-release-buffers org-agenda-new-buffers)
  6935. (setq org-agenda-new-buffers nil)
  6936. (org-agenda-Quit))
  6937. (defun org-agenda-kill-all-agenda-buffers ()
  6938. "Kill all buffers in `org-agenda-mode'.
  6939. This is used when toggling sticky agendas."
  6940. (interactive)
  6941. (let (blist)
  6942. (dolist (buf (buffer-list))
  6943. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6944. (push buf blist)))
  6945. (mapc 'kill-buffer blist)))
  6946. (defun org-agenda-execute (arg)
  6947. "Execute another agenda command, keeping same window.
  6948. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6949. in the agenda."
  6950. (interactive "P")
  6951. (let ((org-agenda-window-setup 'current-window))
  6952. (org-agenda arg)))
  6953. (defun org-agenda-redo (&optional all)
  6954. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6955. (interactive "P")
  6956. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6957. (cpa (unless (eq all t) current-prefix-arg))
  6958. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6959. (org-agenda-sticky nil)
  6960. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6961. org-agenda-buffer-name))
  6962. (org-agenda-keep-modes t)
  6963. (tag-filter org-agenda-tag-filter)
  6964. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6965. (top-hl-filter org-agenda-top-headline-filter)
  6966. (cat-filter org-agenda-category-filter)
  6967. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6968. (re-filter org-agenda-regexp-filter)
  6969. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6970. (effort-filter org-agenda-effort-filter)
  6971. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6972. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6973. (cols org-agenda-columns-active)
  6974. (line (org-current-line))
  6975. (window-line (- line (org-current-line (window-start))))
  6976. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6977. (redo-cmd (get-text-property p 'org-redo-cmd))
  6978. (last-args (get-text-property p 'org-last-args))
  6979. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6980. (org-agenda-overriding-cmd-arguments
  6981. (unless (eq all t)
  6982. (cond ((listp last-args)
  6983. (cons (or cpa (car last-args)) (cdr last-args)))
  6984. ((stringp last-args)
  6985. last-args))))
  6986. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6987. (put 'org-agenda-tag-filter :preset-filter nil)
  6988. (put 'org-agenda-category-filter :preset-filter nil)
  6989. (put 'org-agenda-regexp-filter :preset-filter nil)
  6990. (put 'org-agenda-effort-filter :preset-filter nil)
  6991. (and cols (org-columns-quit))
  6992. (message "Rebuilding agenda buffer...")
  6993. (if series-redo-cmd
  6994. (eval series-redo-cmd)
  6995. (org-let lprops redo-cmd))
  6996. (setq org-agenda-undo-list nil
  6997. org-agenda-pending-undo-list nil
  6998. org-agenda-tag-filter tag-filter
  6999. org-agenda-category-filter cat-filter
  7000. org-agenda-regexp-filter re-filter
  7001. org-agenda-effort-filter effort-filter
  7002. org-agenda-top-headline-filter top-hl-filter)
  7003. (message "Rebuilding agenda buffer...done")
  7004. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  7005. (put 'org-agenda-category-filter :preset-filter cat-preset)
  7006. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  7007. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  7008. (let ((tag (or tag-filter tag-preset))
  7009. (cat (or cat-filter cat-preset))
  7010. (effort (or effort-filter effort-preset))
  7011. (re (or re-filter re-preset)))
  7012. (when tag (org-agenda-filter-apply tag 'tag t))
  7013. (when cat (org-agenda-filter-apply cat 'category))
  7014. (when effort (org-agenda-filter-apply effort 'effort))
  7015. (when re (org-agenda-filter-apply re 'regexp)))
  7016. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  7017. (and cols (called-interactively-p 'any) (org-agenda-columns))
  7018. (org-goto-line line)
  7019. (when (called-interactively-p 'any) (recenter window-line))))
  7020. (defun org-agenda-redo-all (&optional exhaustive)
  7021. "Rebuild all agenda views in the current buffer.
  7022. With a prefix argument, do so in all agenda buffers."
  7023. (interactive "P")
  7024. (if exhaustive
  7025. (dolist (buffer (buffer-list))
  7026. (with-current-buffer buffer
  7027. (when (derived-mode-p 'org-agenda-mode)
  7028. (org-agenda-redo t))))
  7029. (org-agenda-redo t)))
  7030. (defvar org-global-tags-completion-table nil)
  7031. (defvar org-agenda-filter-form nil)
  7032. (defvar org-agenda-filtered-by-category nil)
  7033. (defsubst org-agenda-get-category ()
  7034. "Return the category of the agenda line."
  7035. (org-get-at-bol 'org-category))
  7036. (defun org-agenda-filter-by-category (strip)
  7037. "Filter lines in the agenda buffer that have a specific category.
  7038. The category is that of the current line.
  7039. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7040. When there is already a category filter in place, this command removes the filter."
  7041. (interactive "P")
  7042. (if (and org-agenda-filtered-by-category
  7043. org-agenda-category-filter)
  7044. (org-agenda-filter-show-all-cat)
  7045. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7046. (cond
  7047. ((and cat strip)
  7048. (org-agenda-filter-apply
  7049. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7050. (cat
  7051. (org-agenda-filter-apply
  7052. (setq org-agenda-category-filter
  7053. (list (concat "+" cat)))
  7054. 'category))
  7055. (t (error "No category at point"))))))
  7056. (defun org-find-top-headline (&optional pos)
  7057. "Find the topmost parent headline and return it.
  7058. POS when non-nil is the marker or buffer position to start the
  7059. search from."
  7060. (save-excursion
  7061. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7062. (when pos (goto-char pos))
  7063. ;; Skip up to the topmost parent.
  7064. (while (org-up-heading-safe))
  7065. (ignore-errors
  7066. (replace-regexp-in-string
  7067. "^\\[[0-9]+/[0-9]+\\] *\\|^\\[%[0-9]+\\] *" ""
  7068. (nth 4 (org-heading-components)))))))
  7069. (defvar org-agenda-filtered-by-top-headline nil)
  7070. (defun org-agenda-filter-by-top-headline (strip)
  7071. "Keep only those lines that are descendants from the same top headline.
  7072. The top headline is that of the current line. With prefix arg STRIP, hide
  7073. all lines of the category at point."
  7074. (interactive "P")
  7075. (if org-agenda-filtered-by-top-headline
  7076. (progn
  7077. (setq org-agenda-filtered-by-top-headline nil
  7078. org-agenda-top-headline-filter nil)
  7079. (org-agenda-filter-show-all-top-filter))
  7080. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7081. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7082. (error "No top-level headline at point")))))
  7083. (defvar org-agenda-regexp-filter nil)
  7084. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7085. "Filter agenda entries by a regular expressions.
  7086. You will be prompted for the regular expression, and the agenda
  7087. view will only show entries that are matched by that expression.
  7088. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7089. When there is already a regexp filter active, this command removed the
  7090. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7091. an already existing regexp filter."
  7092. (interactive "P")
  7093. (let* ((strip (equal strip-or-accumulate '(4)))
  7094. (accumulate (equal strip-or-accumulate '(16))))
  7095. (cond
  7096. ((and org-agenda-regexp-filter (not accumulate))
  7097. (org-agenda-filter-show-all-re)
  7098. (message "Regexp filter removed"))
  7099. (t (let ((flt (concat (if strip "-" "+")
  7100. (read-from-minibuffer
  7101. (if strip
  7102. "Hide entries matching regexp: "
  7103. "Narrow to entries matching regexp: ")))))
  7104. (push flt org-agenda-regexp-filter)
  7105. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7106. (defvar org-agenda-effort-filter nil)
  7107. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7108. "Filter agenda entries by effort.
  7109. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7110. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7111. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7112. This last option is in practice not very useful, but it is available for
  7113. consistency with the other filter commands."
  7114. (interactive "P")
  7115. (let* ((efforts (split-string
  7116. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7117. org-global-properties
  7118. t))
  7119. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7120. ;; XXX: the following handles only up to 10 different
  7121. ;; effort values.
  7122. (allowed-keys (if (null efforts) nil
  7123. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7124. (number-sequence 1 (length efforts)))))
  7125. (keep (equal strip-or-accumulate '(16)))
  7126. (negative (equal strip-or-accumulate '(4)))
  7127. (current org-agenda-effort-filter)
  7128. (op nil))
  7129. (while (not (memq op '(?< ?> ?= ?_)))
  7130. (setq op (read-char-exclusive
  7131. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7132. ;; Select appropriate duration. Ignore non-digit characters.
  7133. (if (eq op ?_)
  7134. (progn
  7135. (org-agenda-filter-show-all-effort)
  7136. (message "Effort filter removed"))
  7137. (let ((prompt
  7138. (apply #'format
  7139. (concat "Effort %c "
  7140. (mapconcat (lambda (s) (concat "[%d]" s))
  7141. efforts
  7142. " "))
  7143. op allowed-keys))
  7144. (eff -1))
  7145. (while (not (memq eff allowed-keys))
  7146. (message prompt)
  7147. (setq eff (- (read-char-exclusive) 48)))
  7148. (org-agenda-filter-show-all-effort)
  7149. (setq org-agenda-effort-filter
  7150. (append
  7151. (list (concat (if negative "-" "+")
  7152. (char-to-string op)
  7153. ;; Numbering is 1 2 3 ... 9 0, but we want
  7154. ;; 0 1 2 ... 8 9.
  7155. (nth (mod (1- eff) 10) efforts)))
  7156. (if keep current nil)))
  7157. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7158. (defun org-agenda-filter (&optional strip-or-accumulate)
  7159. "Prompt for a general filter string and apply it to the agenda.
  7160. The string may contain filter elements like
  7161. +category
  7162. +tag
  7163. +<effort > and = are also allowed as effort operators
  7164. +/regexp/
  7165. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7166. `+' is optional if it is not required to separate two string parts.
  7167. Multiple filter elements can be concatenated without spaces, for example
  7168. +work-John<0:10-/plot/
  7169. selects entries with category `work' and effort estimates below 10 minutes,
  7170. and deselects entries with tag `John' or matching the regexp `plot'.
  7171. During entry of the filter, completion for tags, categories and effort
  7172. values is offered. Since the syntax for categories and tags is identical
  7173. there should be no overlap between categories and tags. If there is, tags
  7174. get priority.
  7175. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7176. entire filter, which can be useful in connection with the prompt history.
  7177. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7178. existing ones. A shortcut for this is to add an additional `+' at the
  7179. beginning of the string, like `+-John'.
  7180. With a triple prefix argument, execute the computed filtering defined in
  7181. the variable `org-agenda-auto-exclude-function'."
  7182. (interactive "P")
  7183. (if (equal strip-or-accumulate '(64))
  7184. ;; Execute the auto-exclude action
  7185. (if (not org-agenda-auto-exclude-function)
  7186. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7187. (org-agenda-filter-show-all-tag)
  7188. (setq org-agenda-tag-filter nil)
  7189. (dolist (tag (org-agenda-get-represented-tags))
  7190. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7191. (when modifier
  7192. (push modifier org-agenda-tag-filter))))
  7193. (unless (null org-agenda-tag-filter)
  7194. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7195. ;; Prompt for a filter and act
  7196. (let* ((tag-list (org-agenda-get-represented-tags))
  7197. (category-list (org-agenda-get-represented-categories))
  7198. (negate (equal strip-or-accumulate '(4)))
  7199. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7200. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7201. (rpl-fn (lambda (c) (replace-regexp-in-string "^\+" "" (or (car c) ""))))
  7202. (ef (replace-regexp-in-string "^\+" "" (or (car org-agenda-effort-filter) "")))
  7203. (rf (replace-regexp-in-string "^\+" "" (or (car org-agenda-regexp-filter) "")))
  7204. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7205. (f-string (completing-read
  7206. (concat
  7207. (if negate "Negative filter" "Filter")
  7208. " [+cat-tag<0:10-/regexp/]: ")
  7209. 'org-agenda-filter-completion-function
  7210. nil nil ff))
  7211. (keep (or (if (string-match "^\\+[+-]" f-string)
  7212. (progn (setq f-string (substring f-string 1)) t))
  7213. (equal strip-or-accumulate '(16))))
  7214. (fc (if keep org-agenda-category-filter))
  7215. (ft (if keep org-agenda-tag-filter))
  7216. (fe (if keep org-agenda-effort-filter))
  7217. (fr (if keep org-agenda-regexp-filter))
  7218. pm s)
  7219. ;; If the filter contains a double-quoted string, replace a
  7220. ;; single hyphen by the arbitrary and temporary string "~~~"
  7221. ;; to disambiguate such hyphens from syntactic ones.
  7222. (setq f-string (replace-regexp-in-string
  7223. "\"\\([^\"]*\\)-\\([^\"]*\\)\"" "\"\\1~~~\\2\"" f-string))
  7224. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7225. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7226. (when negate
  7227. (setq pm (if (equal pm "+") "-" "+")))
  7228. (cond
  7229. ((match-beginning 3)
  7230. ;; category or tag
  7231. (setq s (replace-regexp-in-string ; Remove the temporary special string.
  7232. "~~~" "-" (match-string 3 f-string)))
  7233. (cond
  7234. ((member (downcase s) tag-list)
  7235. (add-to-list 'ft (concat pm (downcase s)) 'append 'equal))
  7236. ((member s category-list)
  7237. (add-to-list 'fc (concat pm ; Remove temporary double quotes.
  7238. (replace-regexp-in-string "\"\\(.*\\)\"" "\\1" s))
  7239. 'append 'equal))
  7240. (t (message
  7241. "`%s%s' filter ignored because tag/category is not represented"
  7242. pm s))))
  7243. ((match-beginning 4)
  7244. ;; effort
  7245. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7246. ((match-beginning 5)
  7247. ;; regexp
  7248. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7249. (setq f-string (substring f-string (match-end 0))))
  7250. (org-agenda-filter-remove-all)
  7251. (and fc (org-agenda-filter-apply
  7252. (setq org-agenda-category-filter fc) 'category))
  7253. (and ft (org-agenda-filter-apply
  7254. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7255. (and fe (org-agenda-filter-apply
  7256. (setq org-agenda-effort-filter fe) 'effort))
  7257. (and fr (org-agenda-filter-apply
  7258. (setq org-agenda-regexp-filter fr) 'regexp))
  7259. (run-hooks 'org-agenda-filter-hook))))
  7260. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7261. "Complete a complex filter string.
  7262. FLAG specifies the type of completion operation to perform. This
  7263. function is passed as a collection function to `completing-read',
  7264. which see."
  7265. (let ((completion-ignore-case t) ;tags are case-sensitive
  7266. (confirm (lambda (x) (stringp x)))
  7267. (prefix "")
  7268. (operator "")
  7269. table)
  7270. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7271. (setq prefix (match-string 1 string)
  7272. operator (match-string 2 string)
  7273. string (match-string 3 string)))
  7274. (cond
  7275. ((member operator '("+" "-" "" nil))
  7276. (setq table (append (org-agenda-get-represented-categories)
  7277. (org-agenda-get-represented-tags))))
  7278. ((member operator '("<" ">" "="))
  7279. (setq table (split-string
  7280. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7281. org-global-properties
  7282. t))
  7283. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7284. " +")))
  7285. (t (setq table nil)))
  7286. (pcase flag
  7287. (`t (all-completions string table confirm))
  7288. (`lambda (assoc string table)) ;exact match?
  7289. (`nil
  7290. (pcase (try-completion string table confirm)
  7291. ((and completion (pred stringp))
  7292. (concat prefix completion))
  7293. (completion completion)))
  7294. (_ nil))))
  7295. (defun org-agenda-filter-remove-all ()
  7296. "Remove all filters from the current agenda buffer."
  7297. (interactive)
  7298. (when org-agenda-tag-filter
  7299. (org-agenda-filter-show-all-tag))
  7300. (when org-agenda-category-filter
  7301. (org-agenda-filter-show-all-cat))
  7302. (when org-agenda-regexp-filter
  7303. (org-agenda-filter-show-all-re))
  7304. (when org-agenda-top-headline-filter
  7305. (org-agenda-filter-show-all-top-filter))
  7306. (when org-agenda-effort-filter
  7307. (org-agenda-filter-show-all-effort))
  7308. (org-agenda-finalize)
  7309. (when (called-interactively-p 'interactive)
  7310. (message "All agenda filters removed")))
  7311. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7312. "Keep only those lines in the agenda buffer that have a specific tag.
  7313. The tag is selected with its fast selection letter, as configured.
  7314. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7315. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7316. instead of replacing it.
  7317. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7318. i.e. don't
  7319. filter on all its group members.
  7320. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7321. should be used to exclude the search - the interactive user can
  7322. also press `-' or `+' to switch between filtering and excluding."
  7323. (interactive "P")
  7324. (let* ((alist org-tag-alist-for-agenda)
  7325. (seen-chars nil)
  7326. (tag-chars (mapconcat
  7327. (lambda (x) (if (and (not (symbolp (car x)))
  7328. (cdr x)
  7329. (not (member (cdr x) seen-chars)))
  7330. (progn
  7331. (push (cdr x) seen-chars)
  7332. (char-to-string (cdr x)))
  7333. ""))
  7334. org-tag-alist-for-agenda ""))
  7335. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7336. (string-to-list tag-chars)))
  7337. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7338. (accumulate (equal strip-or-accumulate '(16)))
  7339. (expand (not (equal strip-or-accumulate '(64))))
  7340. (inhibit-read-only t)
  7341. (current org-agenda-tag-filter)
  7342. a n tag)
  7343. (unless char
  7344. (while (not (memq char valid-char-list))
  7345. (org-unlogged-message
  7346. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7347. (if exclude "Exclude[+]" "Filter[-]")
  7348. (if expand "" " (no grouptag expand)")
  7349. tag-chars
  7350. (if org-agenda-auto-exclude-function "[RET] " ""))
  7351. (setq char (read-char-exclusive))
  7352. ;; Excluding or filtering down
  7353. (cond ((eq char ?-) (setq exclude t))
  7354. ((eq char ?+) (setq exclude nil)))))
  7355. (when (eq char ?\t)
  7356. (unless (local-variable-p 'org-global-tags-completion-table)
  7357. (setq-local org-global-tags-completion-table
  7358. (org-global-tags-completion-table)))
  7359. (let ((completion-ignore-case t))
  7360. (setq tag (completing-read
  7361. "Tag: " org-global-tags-completion-table nil t))))
  7362. (cond
  7363. ((eq char ?\r)
  7364. (org-agenda-filter-show-all-tag)
  7365. (when org-agenda-auto-exclude-function
  7366. (setq org-agenda-tag-filter nil)
  7367. (dolist (tag (org-agenda-get-represented-tags))
  7368. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7369. (when modifier
  7370. (push modifier org-agenda-tag-filter))))
  7371. (unless (null org-agenda-tag-filter)
  7372. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7373. ((eq char ?\\)
  7374. (org-agenda-filter-show-all-tag)
  7375. (when (get 'org-agenda-tag-filter :preset-filter)
  7376. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7377. ((eq char ?.)
  7378. (setq org-agenda-tag-filter
  7379. (mapcar (lambda(tag) (concat "+" tag))
  7380. (org-get-at-bol 'tags)))
  7381. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7382. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7383. ((or (eq char ?\s)
  7384. (setq a (rassoc char alist))
  7385. (and tag (setq a (cons tag nil))))
  7386. (org-agenda-filter-show-all-tag)
  7387. (setq tag (car a))
  7388. (setq org-agenda-tag-filter
  7389. (cons (concat (if exclude "-" "+") tag)
  7390. (if accumulate current nil)))
  7391. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7392. (t (error "Invalid tag selection character %c" char)))))
  7393. (defun org-agenda-get-represented-categories ()
  7394. "Return a list of all categories used in this agenda buffer."
  7395. (or org-agenda-represented-categories
  7396. (when (derived-mode-p 'org-agenda-mode)
  7397. (let ((pos (point-min)) categories)
  7398. (while (and (< pos (point-max))
  7399. (setq pos (next-single-property-change
  7400. pos 'org-category nil (point-max))))
  7401. (push (get-text-property pos 'org-category) categories))
  7402. (setq org-agenda-represented-categories
  7403. ;; Enclose category names with a hyphen in double
  7404. ;; quotes to process them specially in `org-agenda-filter'.
  7405. (mapcar (lambda (s) (if (string-match-p "-" s) (format "\"%s\"" s) s))
  7406. (nreverse (org-uniquify (delq nil categories)))))))))
  7407. (defvar org-tag-groups-alist-for-agenda)
  7408. (defun org-agenda-get-represented-tags ()
  7409. "Return a list of all tags used in this agenda buffer.
  7410. These will be lower-case, for filtering."
  7411. (or org-agenda-represented-tags
  7412. (when (derived-mode-p 'org-agenda-mode)
  7413. (let ((pos (point-min)) tags-lists tt)
  7414. (while (and (< pos (point-max))
  7415. (setq pos (next-single-property-change
  7416. pos 'tags nil (point-max))))
  7417. (setq tt (get-text-property pos 'tags))
  7418. (if tt (push tt tags-lists)))
  7419. (setq tags-lists
  7420. (nreverse (org-uniquify
  7421. (delq nil (apply 'append tags-lists)))))
  7422. (dolist (tag tags-lists)
  7423. (mapc
  7424. (lambda (group)
  7425. (when (member tag (mapcar #'downcase group))
  7426. (push (downcase (car group)) tags-lists)))
  7427. org-tag-groups-alist-for-agenda))
  7428. (setq org-agenda-represented-tags tags-lists)))))
  7429. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7430. "Create the form that tests a line for agenda filter. Optional
  7431. argument EXPAND can be used for the TYPE tag and will expand the
  7432. tags in the FILTER if any of the tags in FILTER are grouptags."
  7433. (let ((multi-pos-cats
  7434. (and (eq type 'category)
  7435. (string-match-p "\\+.*\\+"
  7436. (mapconcat (lambda (cat) (substring cat 0 1))
  7437. filter ""))))
  7438. f f1)
  7439. (cond
  7440. ;; Tag filter
  7441. ((eq type 'tag)
  7442. (setq filter
  7443. (delete-dups
  7444. (append (get 'org-agenda-tag-filter :preset-filter)
  7445. filter)))
  7446. (dolist (x filter)
  7447. (let ((op (string-to-char x)))
  7448. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7449. (setq x (list x)))
  7450. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7451. (push f1 f))))
  7452. ;; Category filter
  7453. ((eq type 'category)
  7454. (setq filter
  7455. (delete-dups
  7456. (append (get 'org-agenda-category-filter :preset-filter)
  7457. filter)))
  7458. (dolist (x filter)
  7459. (if (equal "-" (substring x 0 1))
  7460. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7461. (setq f1 (list 'equal (substring x 1) 'cat)))
  7462. (push f1 f)))
  7463. ;; Regexp filter
  7464. ((eq type 'regexp)
  7465. (setq filter
  7466. (delete-dups
  7467. (append (get 'org-agenda-regexp-filter :preset-filter)
  7468. filter)))
  7469. (dolist (x filter)
  7470. (if (equal "-" (substring x 0 1))
  7471. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7472. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7473. (push f1 f)))
  7474. ;; Effort filter
  7475. ((eq type 'effort)
  7476. (setq filter
  7477. (delete-dups
  7478. (append (get 'org-agenda-effort-filter :preset-filter)
  7479. filter)))
  7480. (dolist (x filter)
  7481. (push (org-agenda-filter-effort-form x) f))))
  7482. (cons (if multi-pos-cats 'or 'and) (nreverse f))))
  7483. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7484. "Return a form associated to tag-expression TAGS.
  7485. Build a form testing a line for agenda filter for
  7486. tag-expressions. OP is an operator of type CHAR that allows the
  7487. function to set the right switches in the returned form."
  7488. (let (form)
  7489. ;; Any of the expressions can match if OP is +, all must match if
  7490. ;; the operator is -.
  7491. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7492. (let* ((tag (substring x 1))
  7493. (f (cond
  7494. ((string= "" tag) 'tags)
  7495. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7496. ;; TAG is a regexp.
  7497. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7498. (t (list 'member (downcase tag) 'tags)))))
  7499. (push (if (eq op ?-) (list 'not f) f) form)))))
  7500. (defun org-agenda-filter-effort-form (e)
  7501. "Return the form to compare the effort of the current line with what E says.
  7502. E looks like \"+<2:25\"."
  7503. (let (op)
  7504. (setq e (substring e 1))
  7505. (setq op (string-to-char e) e (substring e 1))
  7506. (setq op (cond ((equal op ?<) '<=)
  7507. ((equal op ?>) '>=)
  7508. ((equal op ??) op)
  7509. (t '=)))
  7510. (list 'org-agenda-compare-effort (list 'quote op)
  7511. (org-duration-to-minutes e))))
  7512. (defun org-agenda-compare-effort (op value)
  7513. "Compare the effort of the current line with VALUE, using OP.
  7514. If the line does not have an effort defined, return nil."
  7515. ;; `effort-minutes' property cannot be extracted directly from
  7516. ;; current line but is stored as a property in `txt'.
  7517. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7518. (funcall op
  7519. (or effort (if org-agenda-sort-noeffort-is-high 32767 -1))
  7520. value)))
  7521. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7522. "Expand group tags in FILTER for the agenda.
  7523. When NO-OPERATOR is non-nil, do not add the + operator to
  7524. returned tags."
  7525. (if org-group-tags
  7526. (let ((case-fold-search t) rtn)
  7527. (mapc
  7528. (lambda (f)
  7529. (let (f0 dir)
  7530. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7531. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7532. (setq dir (if no-operator "" "+") f0 f))
  7533. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7534. (org-tags-expand f0 t t))
  7535. rtn))))
  7536. filter)
  7537. (reverse rtn))
  7538. filter))
  7539. (defun org-agenda-filter-apply (filter type &optional expand)
  7540. "Set FILTER as the new agenda filter and apply it.
  7541. Optional argument EXPAND can be used for the TYPE tag and will
  7542. expand the tags in the FILTER if any of the tags in FILTER are
  7543. grouptags."
  7544. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7545. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7546. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7547. filter type expand))
  7548. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7549. ;; category is used as the filter:
  7550. (setq org-agenda-filtered-by-category
  7551. (and (eq type 'category)
  7552. (not (equal (substring (car filter) 0 1) "-"))))
  7553. (org-agenda-set-mode-name)
  7554. (save-excursion
  7555. (goto-char (point-min))
  7556. (while (not (eobp))
  7557. (when (or (org-get-at-bol 'org-hd-marker)
  7558. (org-get-at-bol 'org-marker))
  7559. (let ((tags (org-get-at-bol 'tags))
  7560. (cat (org-agenda-get-category))
  7561. (txt (or (org-get-at-bol 'txt) "")))
  7562. (unless (eval org-agenda-filter-form)
  7563. (org-agenda-filter-hide-line type))))
  7564. (beginning-of-line 2)))
  7565. (when (get-char-property (point) 'invisible)
  7566. (ignore-errors (org-agenda-previous-line))))
  7567. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7568. "Filter by top headline HL."
  7569. (org-agenda-set-mode-name)
  7570. (save-excursion
  7571. (goto-char (point-min))
  7572. (while (not (eobp))
  7573. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7574. (tophl (and pos (org-find-top-headline pos))))
  7575. (when (and tophl (funcall (if negative 'identity 'not)
  7576. (string= hl tophl)))
  7577. (org-agenda-filter-hide-line 'top-headline)))
  7578. (beginning-of-line 2)))
  7579. (when (get-char-property (point) 'invisible)
  7580. (org-agenda-previous-line))
  7581. (setq org-agenda-top-headline-filter hl
  7582. org-agenda-filtered-by-top-headline t))
  7583. (defun org-agenda-filter-hide-line (type)
  7584. "If current line is TYPE, hide it in the agenda buffer."
  7585. (let* (buffer-invisibility-spec
  7586. (beg (max (point-min) (1- (point-at-bol))))
  7587. (end (point-at-eol)))
  7588. (let ((inhibit-read-only t))
  7589. (add-text-properties
  7590. beg end `(invisible org-filtered org-filter-type ,type)))))
  7591. (defun org-agenda-remove-filter (type)
  7592. "Remove filter of type TYPE from the agenda buffer."
  7593. (interactive)
  7594. (save-excursion
  7595. (goto-char (point-min))
  7596. (let ((inhibit-read-only t) pos)
  7597. (while (setq pos (text-property-any (point) (point-max)
  7598. 'org-filter-type type))
  7599. (goto-char pos)
  7600. (remove-text-properties
  7601. (point) (next-single-property-change (point) 'org-filter-type)
  7602. `(invisible org-filtered org-filter-type ,type))))
  7603. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7604. (setq org-agenda-filter-form nil)
  7605. (org-agenda-set-mode-name)
  7606. (org-agenda-finalize)))
  7607. (defun org-agenda-filter-show-all-tag nil
  7608. (org-agenda-remove-filter 'tag))
  7609. (defun org-agenda-filter-show-all-re nil
  7610. (org-agenda-remove-filter 'regexp))
  7611. (defun org-agenda-filter-show-all-effort nil
  7612. (org-agenda-remove-filter 'effort))
  7613. (defun org-agenda-filter-show-all-cat nil
  7614. (org-agenda-remove-filter 'category))
  7615. (defun org-agenda-filter-show-all-top-filter nil
  7616. (org-agenda-remove-filter 'top-headline))
  7617. (defun org-agenda-manipulate-query-add ()
  7618. "Manipulate the query by adding a search term with positive selection.
  7619. Positive selection means the term must be matched for selection of an entry."
  7620. (interactive)
  7621. (org-agenda-manipulate-query ?\[))
  7622. (defun org-agenda-manipulate-query-subtract ()
  7623. "Manipulate the query by adding a search term with negative selection.
  7624. Negative selection means term must not be matched for selection of an entry."
  7625. (interactive)
  7626. (org-agenda-manipulate-query ?\]))
  7627. (defun org-agenda-manipulate-query-add-re ()
  7628. "Manipulate the query by adding a search regexp with positive selection.
  7629. Positive selection means the regexp must match for selection of an entry."
  7630. (interactive)
  7631. (org-agenda-manipulate-query ?\{))
  7632. (defun org-agenda-manipulate-query-subtract-re ()
  7633. "Manipulate the query by adding a search regexp with negative selection.
  7634. Negative selection means regexp must not match for selection of an entry."
  7635. (interactive)
  7636. (org-agenda-manipulate-query ?\}))
  7637. (defun org-agenda-manipulate-query (char)
  7638. (cond
  7639. ((eq org-agenda-type 'agenda)
  7640. (let ((org-agenda-include-inactive-timestamps t))
  7641. (org-agenda-redo))
  7642. (message "Display now includes inactive timestamps as well"))
  7643. ((eq org-agenda-type 'search)
  7644. (org-add-to-string
  7645. 'org-agenda-query-string
  7646. (if org-agenda-last-search-view-search-was-boolean
  7647. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7648. (?\{ . " +{}") (?\} . " -{}"))))
  7649. " "))
  7650. (setq org-agenda-redo-command
  7651. (list 'org-search-view
  7652. (car (get-text-property (min (1- (point-max)) (point))
  7653. 'org-last-args))
  7654. org-agenda-query-string
  7655. (+ (length org-agenda-query-string)
  7656. (if (member char '(?\{ ?\})) 0 1))))
  7657. (set-register org-agenda-query-register org-agenda-query-string)
  7658. (let ((org-agenda-overriding-arguments
  7659. (cdr org-agenda-redo-command)))
  7660. (org-agenda-redo)))
  7661. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7662. org-agenda-type))))
  7663. (defun org-add-to-string (var string)
  7664. (set var (concat (symbol-value var) string)))
  7665. (defun org-agenda-goto-date (span)
  7666. "Jump to DATE in agenda."
  7667. (interactive "P")
  7668. (let* ((org-read-date-prefer-future
  7669. (eval org-agenda-jump-prefer-future))
  7670. (date (org-read-date))
  7671. (day (time-to-days (org-time-string-to-time date)))
  7672. (org-agenda-sticky-orig org-agenda-sticky)
  7673. (org-agenda-buffer-tmp-name (buffer-name))
  7674. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7675. (0-arg (or current-prefix-arg (car args)))
  7676. (2-arg (nth 2 args))
  7677. (with-hour-p (nth 4 org-agenda-redo-command))
  7678. (newcmd (list 'org-agenda-list 0-arg date
  7679. (org-agenda-span-to-ndays
  7680. 2-arg (org-time-string-to-absolute date))
  7681. with-hour-p))
  7682. (newargs (cdr newcmd))
  7683. (inhibit-read-only t)
  7684. org-agenda-sticky)
  7685. (if (not (org-agenda-check-type t 'agenda))
  7686. (error "Not available in non-agenda views")
  7687. (add-text-properties (point-min) (point-max)
  7688. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7689. (org-agenda-redo)
  7690. (goto-char (point-min))
  7691. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7692. (save-excursion (move-beginning-of-line 2) (eobp))))
  7693. (move-beginning-of-line 2))
  7694. (setq org-agenda-sticky org-agenda-sticky-orig
  7695. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7696. (defun org-agenda-goto-today ()
  7697. "Go to today."
  7698. (interactive)
  7699. (org-agenda-check-type t 'agenda)
  7700. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7701. (curspan (nth 2 args))
  7702. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7703. (cond
  7704. (tdpos (goto-char tdpos))
  7705. ((eq org-agenda-type 'agenda)
  7706. (let* ((sd (org-agenda-compute-starting-span
  7707. (org-today) (or curspan org-agenda-span)))
  7708. (org-agenda-overriding-arguments args))
  7709. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7710. (org-agenda-redo)
  7711. (org-agenda-find-same-or-today-or-agenda)))
  7712. (t (error "Cannot find today")))))
  7713. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7714. (goto-char
  7715. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7716. (text-property-any (point-min) (point-max) 'org-today t)
  7717. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7718. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7719. (org-agenda-backward-block))
  7720. (point-min))))
  7721. (defun org-agenda-backward-block ()
  7722. "Move backward by one agenda block."
  7723. (interactive)
  7724. (org-agenda-forward-block 'backward))
  7725. (defun org-agenda-forward-block (&optional backward)
  7726. "Move forward by one agenda block.
  7727. When optional argument BACKWARD is set, go backward."
  7728. (interactive)
  7729. (cond ((not (derived-mode-p 'org-agenda-mode))
  7730. (user-error
  7731. "Cannot execute this command outside of org-agenda-mode buffers"))
  7732. ((looking-at (if backward "\\`" "\\'"))
  7733. (message "Already at the %s block" (if backward "first" "last")))
  7734. (t (let ((pos (prog1 (point)
  7735. (ignore-errors (if backward (backward-char 1)
  7736. (move-end-of-line 1)))))
  7737. (f (if backward
  7738. 'previous-single-property-change
  7739. 'next-single-property-change))
  7740. moved dest)
  7741. (while (and (setq dest (funcall
  7742. f (point) 'org-agenda-structural-header))
  7743. (not (get-text-property
  7744. (point) 'org-agenda-structural-header)))
  7745. (setq moved t)
  7746. (goto-char dest))
  7747. (if moved (move-beginning-of-line 1)
  7748. (goto-char (if backward (point-min) (point-max)))
  7749. (move-beginning-of-line 1)
  7750. (message "No %s block" (if backward "previous" "further")))))))
  7751. (defun org-agenda-later (arg)
  7752. "Go forward in time by the current span.
  7753. With prefix ARG, go forward that many times the current span."
  7754. (interactive "p")
  7755. (org-agenda-check-type t 'agenda)
  7756. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7757. (span (or (nth 2 args) org-agenda-current-span))
  7758. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7759. (greg (calendar-gregorian-from-absolute sd))
  7760. (cnt (org-get-at-bol 'org-day-cnt))
  7761. greg2)
  7762. (cond
  7763. ((numberp span)
  7764. (setq sd (+ (* span arg) sd)))
  7765. ((eq span 'day)
  7766. (setq sd (+ arg sd)))
  7767. ((eq span 'week)
  7768. (setq sd (+ (* 7 arg) sd)))
  7769. ((eq span 'fortnight)
  7770. (setq sd (+ (* 14 arg) sd)))
  7771. ((eq span 'month)
  7772. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7773. sd (calendar-absolute-from-gregorian greg2))
  7774. (setcar greg2 (1+ (car greg2))))
  7775. ((eq span 'year)
  7776. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7777. sd (calendar-absolute-from-gregorian greg2))
  7778. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7779. (t
  7780. (setq sd (+ (* span arg) sd))))
  7781. (let ((org-agenda-overriding-cmd
  7782. ;; `cmd' may have been set by `org-agenda-run-series' which
  7783. ;; uses `org-agenda-overriding-cmd' to decide whether
  7784. ;; overriding is allowed for `cmd'
  7785. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7786. (org-agenda-overriding-arguments
  7787. (list (car args) sd span)))
  7788. (org-agenda-redo)
  7789. (org-agenda-find-same-or-today-or-agenda cnt))))
  7790. (defun org-agenda-earlier (arg)
  7791. "Go backward in time by the current span.
  7792. With prefix ARG, go backward that many times the current span."
  7793. (interactive "p")
  7794. (org-agenda-later (- arg)))
  7795. (defun org-agenda-view-mode-dispatch ()
  7796. "Call one of the view mode commands."
  7797. (interactive)
  7798. (org-unlogged-message
  7799. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7800. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7801. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7802. (pcase (read-char-exclusive)
  7803. (?\ (call-interactively 'org-agenda-reset-view))
  7804. (?d (call-interactively 'org-agenda-day-view))
  7805. (?w (call-interactively 'org-agenda-week-view))
  7806. (?t (call-interactively 'org-agenda-fortnight-view))
  7807. (?m (call-interactively 'org-agenda-month-view))
  7808. (?y (call-interactively 'org-agenda-year-view))
  7809. (?l (call-interactively 'org-agenda-log-mode))
  7810. (?L (org-agenda-log-mode '(4)))
  7811. (?c (org-agenda-log-mode 'clockcheck))
  7812. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7813. (?a (call-interactively 'org-agenda-archives-mode))
  7814. (?A (org-agenda-archives-mode 'files))
  7815. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7816. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7817. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7818. (?D (call-interactively 'org-agenda-toggle-diary))
  7819. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7820. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7821. (org-agenda-check-type t 'agenda)
  7822. (org-agenda-redo))
  7823. (message "Display now includes inactive timestamps as well"))
  7824. (?q (message "Abort"))
  7825. (key (user-error "Invalid key: %s" key))))
  7826. (defun org-agenda-reset-view ()
  7827. "Switch to default view for agenda."
  7828. (interactive)
  7829. (org-agenda-change-time-span org-agenda-span))
  7830. (defun org-agenda-day-view (&optional day-of-month)
  7831. "Switch to daily view for agenda.
  7832. With argument DAY-OF-MONTH, switch to that day of the month."
  7833. (interactive "P")
  7834. (org-agenda-change-time-span 'day day-of-month))
  7835. (defun org-agenda-week-view (&optional iso-week)
  7836. "Switch to weekly view for agenda.
  7837. With argument ISO-WEEK, switch to the corresponding ISO week.
  7838. If ISO-WEEK has more then 2 digits, only the last two encode
  7839. the week. Any digits before this encode a year. So 200712
  7840. means week 12 of year 2007. Years ranging from 70 years ago
  7841. to 30 years in the future can also be written as 2-digit years."
  7842. (interactive "P")
  7843. (org-agenda-change-time-span 'week iso-week))
  7844. (defun org-agenda-fortnight-view (&optional iso-week)
  7845. "Switch to fortnightly view for agenda.
  7846. With argument ISO-WEEK, switch to the corresponding ISO week.
  7847. If ISO-WEEK has more then 2 digits, only the last two encode
  7848. the week. Any digits before this encode a year. So 200712
  7849. means week 12 of year 2007. Years ranging from 70 years ago
  7850. to 30 years in the future can also be written as 2-digit years."
  7851. (interactive "P")
  7852. (org-agenda-change-time-span 'fortnight iso-week))
  7853. (defun org-agenda-month-view (&optional month)
  7854. "Switch to monthly view for agenda.
  7855. With argument MONTH, switch to that month. If MONTH has more
  7856. then 2 digits, only the last two encode the month. Any digits
  7857. before this encode a year. So 200712 means December year 2007.
  7858. Years ranging from 70 years ago to 30 years in the future can
  7859. also be written as 2-digit years."
  7860. (interactive "P")
  7861. (org-agenda-change-time-span 'month month))
  7862. (defun org-agenda-year-view (&optional year)
  7863. "Switch to yearly view for agenda.
  7864. With argument YEAR, switch to that year. Years ranging from 70
  7865. years ago to 30 years in the future can also be written as
  7866. 2-digit years."
  7867. (interactive "P")
  7868. (when year
  7869. (setq year (org-small-year-to-year year)))
  7870. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7871. (org-agenda-change-time-span 'year year)
  7872. (error "Abort")))
  7873. (defun org-agenda-change-time-span (span &optional n)
  7874. "Change the agenda view to SPAN.
  7875. SPAN may be `day', `week', `fortnight', `month', `year'."
  7876. (org-agenda-check-type t 'agenda)
  7877. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7878. (curspan (nth 2 args)))
  7879. (when (and (not n) (equal curspan span))
  7880. (error "Viewing span is already \"%s\"" span))
  7881. (let* ((sd (or (org-get-at-bol 'day)
  7882. (nth 1 args)
  7883. org-starting-day))
  7884. (sd (org-agenda-compute-starting-span sd span n))
  7885. (org-agenda-overriding-cmd
  7886. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7887. (org-agenda-overriding-arguments
  7888. (list (car args) sd span)))
  7889. (org-agenda-redo)
  7890. (org-agenda-find-same-or-today-or-agenda))
  7891. (org-agenda-set-mode-name)
  7892. (message "Switched to %s view" span)))
  7893. (defun org-agenda-compute-starting-span (sd span &optional n)
  7894. "Compute starting date for agenda.
  7895. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7896. is a cons cell with the starting date and the number of days,
  7897. so that the date SD will be in that range."
  7898. (let* ((greg (calendar-gregorian-from-absolute sd))
  7899. (dg (nth 1 greg))
  7900. (mg (car greg))
  7901. (yg (nth 2 greg)))
  7902. (cond
  7903. ((eq span 'day)
  7904. (when n
  7905. (setq sd (+ (calendar-absolute-from-gregorian
  7906. (list mg 1 yg))
  7907. n -1))))
  7908. ((or (eq span 'week) (eq span 'fortnight))
  7909. (let* ((nt (calendar-day-of-week
  7910. (calendar-gregorian-from-absolute sd)))
  7911. (d (if org-agenda-start-on-weekday
  7912. (- nt org-agenda-start-on-weekday)
  7913. 0))
  7914. y1)
  7915. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7916. (when n
  7917. (require 'cal-iso)
  7918. (when (> n 99)
  7919. (setq y1 (org-small-year-to-year (/ n 100))
  7920. n (mod n 100)))
  7921. (setq sd
  7922. (calendar-iso-to-absolute
  7923. (list n 1
  7924. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7925. ((eq span 'month)
  7926. (let (y1)
  7927. (when (and n (> n 99))
  7928. (setq y1 (org-small-year-to-year (/ n 100))
  7929. n (mod n 100)))
  7930. (setq sd (calendar-absolute-from-gregorian
  7931. (list (or n mg) 1 (or y1 yg))))))
  7932. ((eq span 'year)
  7933. (setq sd (calendar-absolute-from-gregorian
  7934. (list 1 1 (or n yg))))))
  7935. sd))
  7936. (defun org-agenda-next-date-line (&optional arg)
  7937. "Jump to the next line indicating a date in agenda buffer."
  7938. (interactive "p")
  7939. (org-agenda-check-type t 'agenda)
  7940. (beginning-of-line 1)
  7941. ;; This does not work if user makes date format that starts with a blank
  7942. (when (looking-at-p "^\\S-") (forward-char 1))
  7943. (unless (re-search-forward "^\\S-" nil t arg)
  7944. (backward-char 1)
  7945. (error "No next date after this line in this buffer"))
  7946. (goto-char (match-beginning 0)))
  7947. (defun org-agenda-previous-date-line (&optional arg)
  7948. "Jump to the previous line indicating a date in agenda buffer."
  7949. (interactive "p")
  7950. (org-agenda-check-type t 'agenda)
  7951. (beginning-of-line 1)
  7952. (unless (re-search-backward "^\\S-" nil t arg)
  7953. (error "No previous date before this line in this buffer")))
  7954. ;; Initialize the highlight
  7955. (defvar org-hl (make-overlay 1 1))
  7956. (overlay-put org-hl 'face 'highlight)
  7957. (defun org-highlight (begin end &optional buffer)
  7958. "Highlight a region with overlay."
  7959. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7960. (defun org-unhighlight ()
  7961. "Detach overlay INDEX."
  7962. (delete-overlay org-hl))
  7963. (defun org-unhighlight-once ()
  7964. "Remove the highlight from its position, and this function from the hook."
  7965. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7966. (org-unhighlight))
  7967. (defvar org-agenda-pre-follow-window-conf nil)
  7968. (defun org-agenda-follow-mode ()
  7969. "Toggle follow mode in an agenda buffer."
  7970. (interactive)
  7971. (unless org-agenda-follow-mode
  7972. (setq org-agenda-pre-follow-window-conf
  7973. (current-window-configuration)))
  7974. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7975. (unless org-agenda-follow-mode
  7976. (set-window-configuration org-agenda-pre-follow-window-conf))
  7977. (org-agenda-set-mode-name)
  7978. (org-agenda-do-context-action)
  7979. (message "Follow mode is %s"
  7980. (if org-agenda-follow-mode "on" "off")))
  7981. (defun org-agenda-entry-text-mode (&optional arg)
  7982. "Toggle entry text mode in an agenda buffer."
  7983. (interactive "P")
  7984. (if (or org-agenda-tag-filter
  7985. org-agenda-category-filter
  7986. org-agenda-regexp-filter
  7987. org-agenda-top-headline-filter)
  7988. (user-error "Can't show entry text in filtered views")
  7989. (setq org-agenda-entry-text-mode (or (integerp arg)
  7990. (not org-agenda-entry-text-mode)))
  7991. (org-agenda-entry-text-hide)
  7992. (and org-agenda-entry-text-mode
  7993. (let ((org-agenda-entry-text-maxlines
  7994. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7995. (org-agenda-entry-text-show)))
  7996. (org-agenda-set-mode-name)
  7997. (message "Entry text mode is %s%s"
  7998. (if org-agenda-entry-text-mode "on" "off")
  7999. (if (not org-agenda-entry-text-mode) ""
  8000. (format " (maximum number of lines is %d)"
  8001. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  8002. (defun org-agenda-clockreport-mode ()
  8003. "Toggle clocktable mode in an agenda buffer."
  8004. (interactive)
  8005. (org-agenda-check-type t 'agenda)
  8006. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  8007. (org-agenda-set-mode-name)
  8008. (org-agenda-redo)
  8009. (message "Clocktable mode is %s"
  8010. (if org-agenda-clockreport-mode "on" "off")))
  8011. (defun org-agenda-log-mode (&optional special)
  8012. "Toggle log mode in an agenda buffer.
  8013. With argument SPECIAL, show all possible log items, not only the ones
  8014. configured in `org-agenda-log-mode-items'.
  8015. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  8016. log items, nothing else."
  8017. (interactive "P")
  8018. (org-agenda-check-type t 'agenda)
  8019. (setq org-agenda-show-log
  8020. (cond
  8021. ((equal special '(16)) 'only)
  8022. ((eq special 'clockcheck)
  8023. (if (eq org-agenda-show-log 'clockcheck)
  8024. nil 'clockcheck))
  8025. (special '(closed clock state))
  8026. (t (not org-agenda-show-log))))
  8027. (org-agenda-set-mode-name)
  8028. (org-agenda-redo)
  8029. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  8030. (defun org-agenda-archives-mode (&optional with-files)
  8031. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  8032. When called with a prefix argument, include all archive files as well."
  8033. (interactive "P")
  8034. (setq org-agenda-archives-mode
  8035. (cond ((and with-files (eq org-agenda-archives-mode t)) nil)
  8036. (with-files t)
  8037. (org-agenda-archives-mode nil)
  8038. (t 'trees)))
  8039. (org-agenda-set-mode-name)
  8040. (org-agenda-redo)
  8041. (message
  8042. "%s"
  8043. (cond
  8044. ((eq org-agenda-archives-mode nil)
  8045. "No archives are included")
  8046. ((eq org-agenda-archives-mode 'trees)
  8047. (format "Trees with :%s: tag are included" org-archive-tag))
  8048. ((eq org-agenda-archives-mode t)
  8049. (format "Trees with :%s: tag and all active archive files are included"
  8050. org-archive-tag)))))
  8051. (defun org-agenda-toggle-diary ()
  8052. "Toggle diary inclusion in an agenda buffer."
  8053. (interactive)
  8054. (org-agenda-check-type t 'agenda)
  8055. (setq org-agenda-include-diary (not org-agenda-include-diary))
  8056. (org-agenda-redo)
  8057. (org-agenda-set-mode-name)
  8058. (message "Diary inclusion turned %s"
  8059. (if org-agenda-include-diary "on" "off")))
  8060. (defun org-agenda-toggle-deadlines ()
  8061. "Toggle inclusion of entries with a deadline in an agenda buffer."
  8062. (interactive)
  8063. (org-agenda-check-type t 'agenda)
  8064. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  8065. (org-agenda-redo)
  8066. (org-agenda-set-mode-name)
  8067. (message "Deadlines inclusion turned %s"
  8068. (if org-agenda-include-deadlines "on" "off")))
  8069. (defun org-agenda-toggle-time-grid ()
  8070. "Toggle time grid in an agenda buffer."
  8071. (interactive)
  8072. (org-agenda-check-type t 'agenda)
  8073. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8074. (org-agenda-redo)
  8075. (org-agenda-set-mode-name)
  8076. (message "Time-grid turned %s"
  8077. (if org-agenda-use-time-grid "on" "off")))
  8078. (defun org-agenda-set-mode-name ()
  8079. "Set the mode name to indicate all the small mode settings."
  8080. (setq mode-name
  8081. (list "Org-Agenda"
  8082. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8083. " "
  8084. '(:eval (org-agenda-span-name org-agenda-current-span))
  8085. (if org-agenda-follow-mode " Follow" "")
  8086. (if org-agenda-entry-text-mode " ETxt" "")
  8087. (if org-agenda-include-diary " Diary" "")
  8088. (if org-agenda-include-deadlines " Ddl" "")
  8089. (if org-agenda-use-time-grid " Grid" "")
  8090. (if (and (boundp 'org-habit-show-habits)
  8091. org-habit-show-habits) " Habit" "")
  8092. (cond
  8093. ((consp org-agenda-show-log) " LogAll")
  8094. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8095. (org-agenda-show-log " Log")
  8096. (t ""))
  8097. (if (org-agenda-filter-any) " " "")
  8098. (if (or org-agenda-category-filter
  8099. (get 'org-agenda-category-filter :preset-filter))
  8100. '(:eval (propertize
  8101. (concat "["
  8102. (mapconcat
  8103. 'identity
  8104. (append
  8105. (get 'org-agenda-category-filter :preset-filter)
  8106. org-agenda-category-filter)
  8107. "")
  8108. "]")
  8109. 'face 'org-agenda-filter-category
  8110. 'help-echo "Category used in filtering")) "")
  8111. (if (or org-agenda-tag-filter
  8112. (get 'org-agenda-tag-filter :preset-filter))
  8113. '(:eval (propertize
  8114. (concat (mapconcat
  8115. 'identity
  8116. (append
  8117. (get 'org-agenda-tag-filter :preset-filter)
  8118. org-agenda-tag-filter)
  8119. ""))
  8120. 'face 'org-agenda-filter-tags
  8121. 'help-echo "Tags used in filtering")) "")
  8122. (if (or org-agenda-effort-filter
  8123. (get 'org-agenda-effort-filter :preset-filter))
  8124. '(:eval (propertize
  8125. (concat (mapconcat
  8126. 'identity
  8127. (append
  8128. (get 'org-agenda-effort-filter :preset-filter)
  8129. org-agenda-effort-filter)
  8130. ""))
  8131. 'face 'org-agenda-filter-effort
  8132. 'help-echo "Effort conditions used in filtering")) "")
  8133. (if (or org-agenda-regexp-filter
  8134. (get 'org-agenda-regexp-filter :preset-filter))
  8135. '(:eval (propertize
  8136. (concat (mapconcat
  8137. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8138. (append
  8139. (get 'org-agenda-regexp-filter :preset-filter)
  8140. org-agenda-regexp-filter)
  8141. ""))
  8142. 'face 'org-agenda-filter-regexp
  8143. 'help-echo "Regexp used in filtering")) "")
  8144. (if org-agenda-archives-mode
  8145. (if (eq org-agenda-archives-mode t)
  8146. " Archives"
  8147. (format " :%s:" org-archive-tag))
  8148. "")
  8149. (if org-agenda-clockreport-mode " Clock" "")))
  8150. (force-mode-line-update))
  8151. (defun org-agenda-update-agenda-type ()
  8152. "Update the agenda type after each command."
  8153. (setq org-agenda-type
  8154. (or (get-text-property (point) 'org-agenda-type)
  8155. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8156. (defun org-agenda-next-line ()
  8157. "Move cursor to the next line, and show if follow mode is active."
  8158. (interactive)
  8159. (call-interactively 'next-line)
  8160. (org-agenda-do-context-action))
  8161. (defun org-agenda-previous-line ()
  8162. "Move cursor to the previous line, and show if follow-mode is active."
  8163. (interactive)
  8164. (call-interactively 'previous-line)
  8165. (org-agenda-do-context-action))
  8166. (defun org-agenda-next-item (n)
  8167. "Move cursor to next agenda item."
  8168. (interactive "p")
  8169. (let ((col (current-column)))
  8170. (dotimes (c n)
  8171. (when (next-single-property-change (point-at-eol) 'org-marker)
  8172. (move-end-of-line 1)
  8173. (goto-char (next-single-property-change (point) 'org-marker))))
  8174. (org-move-to-column col))
  8175. (org-agenda-do-context-action))
  8176. (defun org-agenda-previous-item (n)
  8177. "Move cursor to next agenda item."
  8178. (interactive "p")
  8179. (dotimes (c n)
  8180. (let ((col (current-column))
  8181. (goto (save-excursion
  8182. (move-end-of-line 0)
  8183. (previous-single-property-change (point) 'org-marker))))
  8184. (when goto (goto-char goto))
  8185. (org-move-to-column col)))
  8186. (org-agenda-do-context-action))
  8187. (defun org-agenda-do-context-action ()
  8188. "Show outline path and, maybe, follow mode window."
  8189. (let ((m (org-get-at-bol 'org-marker)))
  8190. (when (and (markerp m) (marker-buffer m))
  8191. (and org-agenda-follow-mode
  8192. (if org-agenda-follow-indirect
  8193. (org-agenda-tree-to-indirect-buffer nil)
  8194. (org-agenda-show)))
  8195. (and org-agenda-show-outline-path
  8196. (org-with-point-at m (org-display-outline-path t))))))
  8197. (defun org-agenda-show-tags ()
  8198. "Show the tags applicable to the current item."
  8199. (interactive)
  8200. (let* ((tags (org-get-at-bol 'tags)))
  8201. (if tags
  8202. (message "Tags are :%s:"
  8203. (org-no-properties (mapconcat 'identity tags ":")))
  8204. (message "No tags associated with this line"))))
  8205. (defun org-agenda-goto (&optional highlight)
  8206. "Go to the entry at point in the corresponding Org file."
  8207. (interactive)
  8208. (let* ((marker (or (org-get-at-bol 'org-marker)
  8209. (org-agenda-error)))
  8210. (buffer (marker-buffer marker))
  8211. (pos (marker-position marker)))
  8212. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8213. (switch-to-buffer-other-window buffer)
  8214. (widen)
  8215. (push-mark)
  8216. (goto-char pos)
  8217. (when (derived-mode-p 'org-mode)
  8218. (org-show-context 'agenda)
  8219. (recenter (/ (window-height) 2))
  8220. (org-back-to-heading t)
  8221. (let ((case-fold-search nil))
  8222. (when (re-search-forward org-complex-heading-regexp nil t)
  8223. (goto-char (match-beginning 4)))))
  8224. (run-hooks 'org-agenda-after-show-hook)
  8225. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8226. (defvar org-agenda-after-show-hook nil
  8227. "Normal hook run after an item has been shown from the agenda.
  8228. Point is in the buffer where the item originated.")
  8229. ;; Defined later in org-agenda.el
  8230. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8231. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8232. "Between region BEG and END, call agenda command CMD.
  8233. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8234. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8235. deletes the agenda entry and don't move to the next entry."
  8236. (save-excursion
  8237. (goto-char beg)
  8238. (let ((mend (move-marker (make-marker) end))
  8239. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8240. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8241. org-agenda-loop-over-headlines-in-active-region))
  8242. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8243. (org-get-at-bol 'level))))
  8244. (while (< (point) mend)
  8245. (let ((ov (make-overlay (point) (point-at-eol))))
  8246. (if (not (or all
  8247. (and match (looking-at-p match))
  8248. (eq level (org-get-at-bol 'level))))
  8249. (org-agenda-next-item 1)
  8250. (overlay-put ov 'face 'region)
  8251. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8252. (when (not delete) (org-agenda-next-item 1))
  8253. (delete-overlay ov)))))))
  8254. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8255. ;; kill,set-property,set-effort] commands may loop over agenda
  8256. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8257. ;; use their own mechanisms on active regions.
  8258. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8259. "Maybe loop over agenda entries and perform CMD.
  8260. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8261. (declare (debug t))
  8262. `(if (and (called-interactively-p 'any)
  8263. org-agenda-loop-over-headlines-in-active-region
  8264. (org-region-active-p))
  8265. (org-agenda-do-in-region
  8266. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8267. ,@body))
  8268. (defun org-agenda-kill ()
  8269. "Kill the entry or subtree belonging to the current agenda entry."
  8270. (interactive)
  8271. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8272. (org-agenda-maybe-loop
  8273. #'org-agenda-kill nil nil t
  8274. (let* ((bufname-orig (buffer-name))
  8275. (marker (or (org-get-at-bol 'org-marker)
  8276. (org-agenda-error)))
  8277. (buffer (marker-buffer marker))
  8278. (pos (marker-position marker))
  8279. (type (org-get-at-bol 'type))
  8280. dbeg dend (n 0))
  8281. (org-with-remote-undo buffer
  8282. (with-current-buffer buffer
  8283. (save-excursion
  8284. (goto-char pos)
  8285. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8286. (setq dbeg (progn (org-back-to-heading t) (point))
  8287. dend (org-end-of-subtree t t))
  8288. (setq dbeg (point-at-bol)
  8289. dend (min (point-max) (1+ (point-at-eol)))))
  8290. (goto-char dbeg)
  8291. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8292. (when (or (eq t org-agenda-confirm-kill)
  8293. (and (numberp org-agenda-confirm-kill)
  8294. (> n org-agenda-confirm-kill)))
  8295. (let ((win-conf (current-window-configuration)))
  8296. (unwind-protect
  8297. (and
  8298. (prog2
  8299. (org-agenda-tree-to-indirect-buffer nil)
  8300. (not (y-or-n-p
  8301. (format "Delete entry with %d lines in buffer \"%s\"? "
  8302. n (buffer-name buffer))))
  8303. (kill-buffer org-last-indirect-buffer))
  8304. (error "Abort"))
  8305. (set-window-configuration win-conf))))
  8306. (let ((org-agenda-buffer-name bufname-orig))
  8307. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8308. (with-current-buffer buffer (delete-region dbeg dend))
  8309. (message "Agenda item and source killed")))))
  8310. (defvar org-archive-default-command) ; defined in org-archive.el
  8311. (defun org-agenda-archive-default ()
  8312. "Archive the entry or subtree belonging to the current agenda entry."
  8313. (interactive)
  8314. (require 'org-archive)
  8315. (funcall-interactively
  8316. #'org-agenda-archive-with org-archive-default-command))
  8317. (defun org-agenda-archive-default-with-confirmation ()
  8318. "Archive the entry or subtree belonging to the current agenda entry."
  8319. (interactive)
  8320. (require 'org-archive)
  8321. (funcall-interactively
  8322. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8323. (defun org-agenda-archive ()
  8324. "Archive the entry or subtree belonging to the current agenda entry."
  8325. (interactive)
  8326. (funcall-interactively
  8327. #'org-agenda-archive-with 'org-archive-subtree))
  8328. (defun org-agenda-archive-to-archive-sibling ()
  8329. "Move the entry to the archive sibling."
  8330. (interactive)
  8331. (funcall-interactively
  8332. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8333. (defun org-agenda-archive-with (cmd &optional confirm)
  8334. "Move the entry to the archive sibling."
  8335. (interactive)
  8336. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8337. (org-agenda-maybe-loop
  8338. #'org-agenda-archive-with cmd nil t
  8339. (let* ((bufname-orig (buffer-name))
  8340. (marker (or (org-get-at-bol 'org-marker)
  8341. (org-agenda-error)))
  8342. (buffer (marker-buffer marker))
  8343. (pos (marker-position marker)))
  8344. (org-with-remote-undo buffer
  8345. (with-current-buffer buffer
  8346. (if (derived-mode-p 'org-mode)
  8347. (if (and confirm
  8348. (not (y-or-n-p "Archive this subtree or entry? ")))
  8349. (error "Abort")
  8350. (save-window-excursion
  8351. (goto-char pos)
  8352. (let ((org-agenda-buffer-name bufname-orig))
  8353. (org-remove-subtree-entries-from-agenda))
  8354. (org-back-to-heading t)
  8355. (let ((org-archive-from-agenda t))
  8356. (funcall cmd))))
  8357. (error "Archiving works only in Org files")))))))
  8358. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8359. "Remove all lines in the agenda that correspond to a given subtree.
  8360. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8361. If this information is not given, the function uses the tree at point."
  8362. (let ((buf (or buf (current-buffer))) m p)
  8363. (save-excursion
  8364. (unless (and beg end)
  8365. (org-back-to-heading t)
  8366. (setq beg (point))
  8367. (org-end-of-subtree t)
  8368. (setq end (point)))
  8369. (set-buffer (get-buffer org-agenda-buffer-name))
  8370. (save-excursion
  8371. (goto-char (point-max))
  8372. (beginning-of-line 1)
  8373. (while (not (bobp))
  8374. (when (and (setq m (org-get-at-bol 'org-marker))
  8375. (equal buf (marker-buffer m))
  8376. (setq p (marker-position m))
  8377. (>= p beg)
  8378. (< p end))
  8379. (let ((inhibit-read-only t))
  8380. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8381. (beginning-of-line 0))))))
  8382. (defun org-agenda-refile (&optional goto rfloc no-update)
  8383. "Refile the item at point.
  8384. When called with `\\[universal-argument] \\[universal-argument]', \
  8385. go to the location of the last
  8386. refiled item.
  8387. When called with `\\[universal-argument] \\[universal-argument] \
  8388. \\[universal-argument]' prefix or when GOTO is 0, clear
  8389. the refile cache.
  8390. RFLOC can be a refile location obtained in a different way.
  8391. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8392. (interactive "P")
  8393. (cond
  8394. ((member goto '(0 (64)))
  8395. (org-refile-cache-clear))
  8396. ((equal goto '(16))
  8397. (org-refile-goto-last-stored))
  8398. (t
  8399. (let* ((buffer-orig (buffer-name))
  8400. (marker (or (org-get-at-bol 'org-hd-marker)
  8401. (org-agenda-error)))
  8402. (buffer (marker-buffer marker))
  8403. (pos (marker-position marker))
  8404. (rfloc (or rfloc
  8405. (org-refile-get-location
  8406. (if goto "Goto" "Refile to") buffer
  8407. org-refile-allow-creating-parent-nodes))))
  8408. (with-current-buffer buffer
  8409. (org-with-wide-buffer
  8410. (goto-char marker)
  8411. (let ((org-agenda-buffer-name buffer-orig))
  8412. (org-remove-subtree-entries-from-agenda))
  8413. (org-refile goto buffer rfloc))))
  8414. (unless no-update (org-agenda-redo)))))
  8415. (defun org-agenda-open-link (&optional arg)
  8416. "Open the link(s) in the current entry, if any.
  8417. This looks for a link in the displayed line in the agenda.
  8418. It also looks at the text of the entry itself."
  8419. (interactive "P")
  8420. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8421. (org-get-at-bol 'org-marker)))
  8422. (buffer (and marker (marker-buffer marker)))
  8423. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8424. (lkall (and buffer (org-offer-links-in-entry
  8425. buffer marker arg prefix)))
  8426. (lk0 (car lkall))
  8427. (lk (if (stringp lk0) (list lk0) lk0))
  8428. (lkend (cdr lkall))
  8429. trg)
  8430. (cond
  8431. ((and buffer lk)
  8432. (mapcar (lambda(l)
  8433. (with-current-buffer buffer
  8434. (setq trg (and (string-match org-link-bracket-re l)
  8435. (match-string 1 l)))
  8436. (if (or (not trg) (string-match org-link-any-re trg))
  8437. ;; Don't use `org-with-wide-buffer' here as
  8438. ;; opening the link may result in moving the point
  8439. (save-restriction
  8440. (widen)
  8441. (goto-char marker)
  8442. (when (search-forward l nil lkend)
  8443. (goto-char (match-beginning 0))
  8444. (org-open-at-point)))
  8445. ;; This is an internal link, widen the buffer
  8446. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8447. (switch-to-buffer-other-window buffer)
  8448. (widen)
  8449. (goto-char marker)
  8450. (when (search-forward l nil lkend)
  8451. (goto-char (match-beginning 0))
  8452. (org-open-at-point)))))
  8453. lk))
  8454. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8455. (save-excursion
  8456. (beginning-of-line 1)
  8457. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8458. (org-link-open-from-string (match-string 1)))
  8459. (t (message "No link to open here")))))
  8460. (defun org-agenda-copy-local-variable (var)
  8461. "Get a variable from a referenced buffer and install it here."
  8462. (let ((m (org-get-at-bol 'org-marker)))
  8463. (when (and m (buffer-live-p (marker-buffer m)))
  8464. (set (make-local-variable var)
  8465. (with-current-buffer (marker-buffer m)
  8466. (symbol-value var))))))
  8467. (defun org-agenda-switch-to (&optional delete-other-windows)
  8468. "Go to the Org mode file which contains the item at point.
  8469. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8470. displayed Org file fills the frame."
  8471. (interactive)
  8472. (if (and org-return-follows-link
  8473. (not (org-get-at-bol 'org-marker))
  8474. (org-in-regexp org-link-bracket-re))
  8475. (org-link-open-from-string (match-string 0))
  8476. (let* ((marker (or (org-get-at-bol 'org-marker)
  8477. (org-agenda-error)))
  8478. (buffer (marker-buffer marker))
  8479. (pos (marker-position marker)))
  8480. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8481. (pop-to-buffer-same-window buffer)
  8482. (when delete-other-windows (delete-other-windows))
  8483. (widen)
  8484. (goto-char pos)
  8485. (when (derived-mode-p 'org-mode)
  8486. (org-show-context 'agenda)
  8487. (run-hooks 'org-agenda-after-show-hook)))))
  8488. (defun org-agenda-goto-mouse (ev)
  8489. "Go to the Org file which contains the item at the mouse click."
  8490. (interactive "e")
  8491. (mouse-set-point ev)
  8492. (org-agenda-goto))
  8493. (defun org-agenda-show (&optional full-entry)
  8494. "Display the Org file which contains the item at point.
  8495. With prefix argument FULL-ENTRY, make the entire entry visible
  8496. if it was hidden in the outline."
  8497. (interactive "P")
  8498. (let ((win (selected-window)))
  8499. (org-agenda-goto t)
  8500. (when full-entry (org-show-entry))
  8501. (select-window win)))
  8502. (defvar org-agenda-show-window nil)
  8503. (defun org-agenda-show-and-scroll-up (&optional arg)
  8504. "Display the Org file which contains the item at point.
  8505. When called repeatedly, scroll the window that is displaying the buffer.
  8506. With a `\\[universal-argument]' prefix argument, display the item, but \
  8507. fold drawers."
  8508. (interactive "P")
  8509. (let ((win (selected-window)))
  8510. (if (and (window-live-p org-agenda-show-window)
  8511. (eq this-command last-command))
  8512. (progn
  8513. (select-window org-agenda-show-window)
  8514. (ignore-errors (scroll-up)))
  8515. (org-agenda-goto t)
  8516. (org-show-entry)
  8517. (if arg (org-cycle-hide-drawers 'children)
  8518. (org-with-wide-buffer
  8519. (narrow-to-region (org-entry-beginning-position)
  8520. (org-entry-end-position))
  8521. (org-show-all '(drawers))))
  8522. (setq org-agenda-show-window (selected-window)))
  8523. (select-window win)))
  8524. (defun org-agenda-show-scroll-down ()
  8525. "Scroll down the window showing the agenda."
  8526. (interactive)
  8527. (let ((win (selected-window)))
  8528. (when (window-live-p org-agenda-show-window)
  8529. (select-window org-agenda-show-window)
  8530. (ignore-errors (scroll-down))
  8531. (select-window win))))
  8532. (defun org-agenda-show-1 (&optional more)
  8533. "Display the Org file which contains the item at point.
  8534. The prefix arg selects the amount of information to display:
  8535. 0 hide the subtree
  8536. 1 just show the entry according to defaults.
  8537. 2 show the children view
  8538. 3 show the subtree view
  8539. 4 show the entire subtree and any drawers
  8540. With prefix argument FULL-ENTRY, make the entire entry visible
  8541. if it was hidden in the outline."
  8542. (interactive "p")
  8543. (let ((win (selected-window)))
  8544. (org-agenda-goto t)
  8545. (org-back-to-heading)
  8546. (set-window-start (selected-window) (point-at-bol))
  8547. (cond
  8548. ((= more 0)
  8549. (org-flag-subtree t)
  8550. (save-excursion
  8551. (org-back-to-heading)
  8552. (run-hook-with-args 'org-cycle-hook 'folded))
  8553. (message "Remote: FOLDED"))
  8554. ((and (called-interactively-p 'any) (= more 1))
  8555. (message "Remote: show with default settings"))
  8556. ((= more 2)
  8557. (outline-show-entry)
  8558. (org-show-children)
  8559. (save-excursion
  8560. (org-back-to-heading)
  8561. (run-hook-with-args 'org-cycle-hook 'children))
  8562. (message "Remote: CHILDREN"))
  8563. ((= more 3)
  8564. (outline-show-subtree)
  8565. (save-excursion
  8566. (org-back-to-heading)
  8567. (run-hook-with-args 'org-cycle-hook 'subtree))
  8568. (message "Remote: SUBTREE"))
  8569. ((> more 3)
  8570. (outline-show-subtree)
  8571. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8572. (select-window win)))
  8573. (defvar org-agenda-cycle-counter nil)
  8574. (defun org-agenda-cycle-show (&optional n)
  8575. "Show the current entry in another window, with default settings.
  8576. Default settings are taken from `org-show-context-detail'. When
  8577. use repeatedly in immediate succession, the remote entry will
  8578. cycle through visibility
  8579. children -> subtree -> folded
  8580. When called with a numeric prefix arg, that arg will be passed through to
  8581. `org-agenda-show-1'. For the interpretation of that argument, see the
  8582. docstring of `org-agenda-show-1'."
  8583. (interactive "P")
  8584. (if (integerp n)
  8585. (setq org-agenda-cycle-counter n)
  8586. (if (not (eq last-command this-command))
  8587. (setq org-agenda-cycle-counter 1)
  8588. (if (equal org-agenda-cycle-counter 0)
  8589. (setq org-agenda-cycle-counter 2)
  8590. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8591. (when (> org-agenda-cycle-counter 3)
  8592. (setq org-agenda-cycle-counter 0)))))
  8593. (org-agenda-show-1 org-agenda-cycle-counter))
  8594. (defun org-agenda-recenter (arg)
  8595. "Display the Org file which contains the item at point and recenter."
  8596. (interactive "P")
  8597. (let ((win (selected-window)))
  8598. (org-agenda-goto t)
  8599. (recenter arg)
  8600. (select-window win)))
  8601. (defun org-agenda-show-mouse (ev)
  8602. "Display the Org file which contains the item at the mouse click."
  8603. (interactive "e")
  8604. (mouse-set-point ev)
  8605. (org-agenda-show))
  8606. (defun org-agenda-check-no-diary ()
  8607. "Check if the entry is a diary link and abort if yes."
  8608. (when (org-get-at-bol 'org-agenda-diary-link)
  8609. (org-agenda-error)))
  8610. (defun org-agenda-error ()
  8611. "Throw an error when a command is not allowed in the agenda."
  8612. (user-error "Command not allowed in this line"))
  8613. (defun org-agenda-tree-to-indirect-buffer (arg)
  8614. "Show the subtree corresponding to the current entry in an indirect buffer.
  8615. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8616. With a numerical prefix ARG, go up to this level and then take that tree.
  8617. With a negative numeric ARG, go up by this number of levels.
  8618. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8619. i.e. don't use
  8620. the dedicated frame."
  8621. (interactive "P")
  8622. (if current-prefix-arg
  8623. (org-agenda-do-tree-to-indirect-buffer arg)
  8624. (let ((agenda-buffer (buffer-name))
  8625. (agenda-window (selected-window))
  8626. (indirect-window
  8627. (and org-last-indirect-buffer
  8628. (get-buffer-window org-last-indirect-buffer))))
  8629. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8630. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8631. (eq org-indirect-buffer-display 'dedicated-frame))
  8632. (unwind-protect
  8633. (unless (and indirect-window (window-live-p indirect-window))
  8634. (setq indirect-window (split-window agenda-window)))
  8635. (and indirect-window (select-window indirect-window))
  8636. (switch-to-buffer org-last-indirect-buffer :norecord)
  8637. (fit-window-to-buffer indirect-window)))
  8638. (select-window (get-buffer-window agenda-buffer))
  8639. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8640. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8641. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8642. (org-agenda-check-no-diary)
  8643. (let* ((marker (or (org-get-at-bol 'org-marker)
  8644. (org-agenda-error)))
  8645. (buffer (marker-buffer marker))
  8646. (pos (marker-position marker)))
  8647. (with-current-buffer buffer
  8648. (save-excursion
  8649. (goto-char pos)
  8650. (org-tree-to-indirect-buffer arg)))))
  8651. (defvar org-last-heading-marker (make-marker)
  8652. "Marker pointing to the headline that last changed its TODO state
  8653. by a remote command from the agenda.")
  8654. (defun org-agenda-todo-nextset ()
  8655. "Switch TODO entry to next sequence."
  8656. (interactive)
  8657. (org-agenda-todo 'nextset))
  8658. (defun org-agenda-todo-previousset ()
  8659. "Switch TODO entry to previous sequence."
  8660. (interactive)
  8661. (org-agenda-todo 'previousset))
  8662. (defun org-agenda-todo (&optional arg)
  8663. "Cycle TODO state of line at point, also in Org file.
  8664. This changes the line at point, all other lines in the agenda referring to
  8665. the same tree node, and the headline of the tree node in the Org file."
  8666. (interactive "P")
  8667. (org-agenda-check-no-diary)
  8668. (org-agenda-maybe-loop
  8669. #'org-agenda-todo arg nil nil
  8670. (let* ((col (current-column))
  8671. (marker (or (org-get-at-bol 'org-marker)
  8672. (org-agenda-error)))
  8673. (buffer (marker-buffer marker))
  8674. (pos (marker-position marker))
  8675. (hdmarker (org-get-at-bol 'org-hd-marker))
  8676. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8677. (inhibit-read-only t)
  8678. org-loop-over-headlines-in-active-region
  8679. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8680. (org-with-remote-undo buffer
  8681. (with-current-buffer buffer
  8682. (widen)
  8683. (goto-char pos)
  8684. (org-show-context 'agenda)
  8685. (let ((current-prefix-arg arg))
  8686. (call-interactively 'org-todo))
  8687. (and (bolp) (forward-char 1))
  8688. (setq newhead (org-get-heading))
  8689. (when (and (bound-and-true-p
  8690. org-agenda-headline-snapshot-before-repeat)
  8691. (not (equal org-agenda-headline-snapshot-before-repeat
  8692. newhead))
  8693. todayp)
  8694. (setq newhead org-agenda-headline-snapshot-before-repeat
  8695. just-one t))
  8696. (save-excursion
  8697. (org-back-to-heading)
  8698. (move-marker org-last-heading-marker (point))))
  8699. (beginning-of-line 1)
  8700. (save-window-excursion
  8701. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8702. (when (bound-and-true-p org-clock-out-when-done)
  8703. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8704. newhead)
  8705. (org-agenda-unmark-clocking-task))
  8706. (org-move-to-column col)
  8707. (org-agenda-mark-clocking-task)))))
  8708. (defun org-agenda-add-note (&optional arg)
  8709. "Add a time-stamped note to the entry at point."
  8710. (interactive "P")
  8711. (org-agenda-check-no-diary)
  8712. (let* ((marker (or (org-get-at-bol 'org-marker)
  8713. (org-agenda-error)))
  8714. (buffer (marker-buffer marker))
  8715. (pos (marker-position marker))
  8716. (hdmarker (org-get-at-bol 'org-hd-marker))
  8717. (inhibit-read-only t))
  8718. (with-current-buffer buffer
  8719. (widen)
  8720. (goto-char pos)
  8721. (org-show-context 'agenda)
  8722. (org-add-note))))
  8723. (defun org-agenda-change-all-lines (newhead hdmarker
  8724. &optional fixface just-this)
  8725. "Change all lines in the agenda buffer which match HDMARKER.
  8726. The new content of the line will be NEWHEAD (as modified by
  8727. `org-agenda-format-item'). HDMARKER is checked with
  8728. `equal' against all `org-hd-marker' text properties in the file.
  8729. If FIXFACE is non-nil, the face of each item is modified according to
  8730. the new TODO state.
  8731. If JUST-THIS is non-nil, change just the current line, not all.
  8732. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8733. (let* ((inhibit-read-only t)
  8734. (line (org-current-line))
  8735. (org-agenda-buffer (current-buffer))
  8736. (thetags (with-current-buffer (marker-buffer hdmarker)
  8737. (org-get-tags hdmarker)))
  8738. props m pl undone-face done-face finish new dotime level cat tags)
  8739. (save-excursion
  8740. (goto-char (point-max))
  8741. (beginning-of-line 1)
  8742. (while (not finish)
  8743. (setq finish (bobp))
  8744. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8745. (or (not just-this) (= (org-current-line) line))
  8746. (equal m hdmarker))
  8747. (setq props (text-properties-at (point))
  8748. dotime (org-get-at-bol 'dotime)
  8749. cat (org-agenda-get-category)
  8750. level (org-get-at-bol 'level)
  8751. tags thetags
  8752. new
  8753. (let ((org-prefix-format-compiled
  8754. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8755. org-prefix-format-compiled))
  8756. (extra (org-get-at-bol 'extra)))
  8757. (with-current-buffer (marker-buffer hdmarker)
  8758. (org-with-wide-buffer
  8759. (org-agenda-format-item extra newhead level cat tags dotime))))
  8760. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8761. undone-face (org-get-at-bol 'undone-face)
  8762. done-face (org-get-at-bol 'done-face))
  8763. (beginning-of-line 1)
  8764. (cond
  8765. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8766. ((looking-at ".*")
  8767. ;; When replacing the whole line, preserve bulk mark
  8768. ;; overlay, if any.
  8769. (let ((mark (catch :overlay
  8770. (dolist (o (overlays-in (point) (+ 2 (point))))
  8771. (when (eq (overlay-get o 'type)
  8772. 'org-marked-entry-overlay)
  8773. (throw :overlay o))))))
  8774. (replace-match new t t)
  8775. (beginning-of-line)
  8776. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8777. (add-text-properties (point-at-bol) (point-at-eol) props)
  8778. (when fixface
  8779. (add-text-properties
  8780. (point-at-bol) (point-at-eol)
  8781. (list 'face
  8782. (if org-last-todo-state-is-todo
  8783. undone-face done-face))))
  8784. (org-agenda-highlight-todo 'line)
  8785. (beginning-of-line 1))
  8786. (t (error "Line update did not work")))
  8787. (save-restriction
  8788. (narrow-to-region (point-at-bol) (point-at-eol))
  8789. (org-agenda-finalize)))
  8790. (beginning-of-line 0)))))
  8791. (defun org-agenda-align-tags (&optional line)
  8792. "Align all tags in agenda items to `org-agenda-tags-column'.
  8793. When optional argument LINE is non-nil, align tags only on the
  8794. current line."
  8795. (let ((inhibit-read-only t)
  8796. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8797. (- (window-text-width))
  8798. org-agenda-tags-column))
  8799. (end (and line (line-end-position)))
  8800. l c)
  8801. (save-excursion
  8802. (goto-char (if line (line-beginning-position) (point-min)))
  8803. (while (re-search-forward org-tag-group-re end t)
  8804. (add-text-properties
  8805. (match-beginning 1) (match-end 1)
  8806. (list 'face (delq nil (let ((prop (get-text-property
  8807. (match-beginning 1) 'face)))
  8808. (or (listp prop) (setq prop (list prop)))
  8809. (if (memq 'org-tag prop)
  8810. prop
  8811. (cons 'org-tag prop))))))
  8812. (setq l (string-width (match-string 1))
  8813. c (if (< org-agenda-tags-column 0)
  8814. (- (abs org-agenda-tags-column) l)
  8815. org-agenda-tags-column))
  8816. (goto-char (match-beginning 1))
  8817. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8818. (point))
  8819. (insert (org-add-props
  8820. (make-string (max 1 (- c (current-column))) ?\s)
  8821. (plist-put (copy-sequence (text-properties-at (point)))
  8822. 'face nil))))
  8823. (goto-char (point-min))
  8824. (org-font-lock-add-tag-faces (point-max)))))
  8825. (defun org-agenda-priority-up ()
  8826. "Increase the priority of line at point, also in Org file."
  8827. (interactive)
  8828. (org-agenda-priority 'up))
  8829. (defun org-agenda-priority-down ()
  8830. "Decrease the priority of line at point, also in Org file."
  8831. (interactive)
  8832. (org-agenda-priority 'down))
  8833. (defun org-agenda-priority (&optional force-direction)
  8834. "Set the priority of line at point, also in Org file.
  8835. This changes the line at point, all other lines in the agenda referring to
  8836. the same tree node, and the headline of the tree node in the Org file.
  8837. Called with a universal prefix arg, show the priority instead of setting it."
  8838. (interactive "P")
  8839. (if (equal force-direction '(4))
  8840. (org-priority-show)
  8841. (unless org-priority-enable-commands
  8842. (user-error "Priority commands are disabled"))
  8843. (org-agenda-check-no-diary)
  8844. (let* ((col (current-column))
  8845. (marker (or (org-get-at-bol 'org-marker)
  8846. (org-agenda-error)))
  8847. (hdmarker (org-get-at-bol 'org-hd-marker))
  8848. (buffer (marker-buffer hdmarker))
  8849. (pos (marker-position hdmarker))
  8850. (inhibit-read-only t)
  8851. newhead)
  8852. (org-with-remote-undo buffer
  8853. (with-current-buffer buffer
  8854. (widen)
  8855. (goto-char pos)
  8856. (org-show-context 'agenda)
  8857. (org-priority force-direction)
  8858. (end-of-line 1)
  8859. (setq newhead (org-get-heading)))
  8860. (org-agenda-change-all-lines newhead hdmarker)
  8861. (org-move-to-column col)))))
  8862. ;; FIXME: should fix the tags property of the agenda line.
  8863. (defun org-agenda-set-tags (&optional tag onoff)
  8864. "Set tags for the current headline."
  8865. (interactive)
  8866. (org-agenda-check-no-diary)
  8867. (if (and (org-region-active-p) (called-interactively-p 'any))
  8868. (call-interactively 'org-change-tag-in-region)
  8869. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8870. (org-agenda-error)))
  8871. (buffer (marker-buffer hdmarker))
  8872. (pos (marker-position hdmarker))
  8873. (inhibit-read-only t)
  8874. newhead)
  8875. (org-with-remote-undo buffer
  8876. (with-current-buffer buffer
  8877. (widen)
  8878. (goto-char pos)
  8879. (org-show-context 'agenda)
  8880. (if tag
  8881. (org-toggle-tag tag onoff)
  8882. (call-interactively #'org-set-tags-command))
  8883. (end-of-line 1)
  8884. (setq newhead (org-get-heading)))
  8885. (org-agenda-change-all-lines newhead hdmarker)
  8886. (beginning-of-line 1)))))
  8887. (defun org-agenda-set-property ()
  8888. "Set a property for the current headline."
  8889. (interactive)
  8890. (org-agenda-check-no-diary)
  8891. (org-agenda-maybe-loop
  8892. #'org-agenda-set-property nil nil nil
  8893. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8894. (org-agenda-error)))
  8895. (buffer (marker-buffer hdmarker))
  8896. (pos (marker-position hdmarker))
  8897. (inhibit-read-only t)
  8898. newhead)
  8899. (org-with-remote-undo buffer
  8900. (with-current-buffer buffer
  8901. (widen)
  8902. (goto-char pos)
  8903. (org-show-context 'agenda)
  8904. (call-interactively 'org-set-property))))))
  8905. (defun org-agenda-set-effort ()
  8906. "Set the effort property for the current headline."
  8907. (interactive)
  8908. (org-agenda-check-no-diary)
  8909. (org-agenda-maybe-loop
  8910. #'org-agenda-set-effort nil nil nil
  8911. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8912. (org-agenda-error)))
  8913. (buffer (marker-buffer hdmarker))
  8914. (pos (marker-position hdmarker))
  8915. (inhibit-read-only t)
  8916. newhead)
  8917. (org-with-remote-undo buffer
  8918. (with-current-buffer buffer
  8919. (widen)
  8920. (goto-char pos)
  8921. (org-show-context 'agenda)
  8922. (call-interactively 'org-set-effort)
  8923. (end-of-line 1)
  8924. (setq newhead (org-get-heading)))
  8925. (org-agenda-change-all-lines newhead hdmarker)))))
  8926. (defun org-agenda-toggle-archive-tag ()
  8927. "Toggle the archive tag for the current entry."
  8928. (interactive)
  8929. (org-agenda-check-no-diary)
  8930. (org-agenda-maybe-loop
  8931. #'org-agenda-toggle-archive-tag nil nil nil
  8932. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8933. (org-agenda-error)))
  8934. (buffer (marker-buffer hdmarker))
  8935. (pos (marker-position hdmarker))
  8936. (inhibit-read-only t)
  8937. newhead)
  8938. (org-with-remote-undo buffer
  8939. (with-current-buffer buffer
  8940. (widen)
  8941. (goto-char pos)
  8942. (org-show-context 'agenda)
  8943. (call-interactively 'org-toggle-archive-tag)
  8944. (end-of-line 1)
  8945. (setq newhead (org-get-heading)))
  8946. (org-agenda-change-all-lines newhead hdmarker)
  8947. (beginning-of-line 1)))))
  8948. (defun org-agenda-do-date-later (arg)
  8949. (interactive "P")
  8950. (cond
  8951. ((or (equal arg '(16))
  8952. (memq last-command
  8953. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8954. (setq this-command 'org-agenda-date-later-minutes)
  8955. (org-agenda-date-later-minutes 1))
  8956. ((or (equal arg '(4))
  8957. (memq last-command
  8958. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8959. (setq this-command 'org-agenda-date-later-hours)
  8960. (org-agenda-date-later-hours 1))
  8961. (t
  8962. (org-agenda-date-later (prefix-numeric-value arg)))))
  8963. (defun org-agenda-do-date-earlier (arg)
  8964. (interactive "P")
  8965. (cond
  8966. ((or (equal arg '(16))
  8967. (memq last-command
  8968. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8969. (setq this-command 'org-agenda-date-earlier-minutes)
  8970. (org-agenda-date-earlier-minutes 1))
  8971. ((or (equal arg '(4))
  8972. (memq last-command
  8973. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8974. (setq this-command 'org-agenda-date-earlier-hours)
  8975. (org-agenda-date-earlier-hours 1))
  8976. (t
  8977. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8978. (defun org-agenda-date-later (arg &optional what)
  8979. "Change the date of this item to ARG day(s) later."
  8980. (interactive "p")
  8981. (org-agenda-check-type t 'agenda)
  8982. (org-agenda-check-no-diary)
  8983. (let* ((marker (or (org-get-at-bol 'org-marker)
  8984. (org-agenda-error)))
  8985. (buffer (marker-buffer marker))
  8986. (pos (marker-position marker))
  8987. cdate today)
  8988. (org-with-remote-undo buffer
  8989. (with-current-buffer buffer
  8990. (widen)
  8991. (goto-char pos)
  8992. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8993. (when (and org-agenda-move-date-from-past-immediately-to-today
  8994. (equal arg 1)
  8995. (or (not what) (eq what 'day))
  8996. (not (save-match-data (org-at-date-range-p))))
  8997. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8998. cdate (calendar-absolute-from-gregorian
  8999. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  9000. today (org-today))
  9001. (when (> today cdate)
  9002. ;; immediately shift to today
  9003. (setq arg (- today cdate))))
  9004. (org-timestamp-change arg (or what 'day))
  9005. (when (and (org-at-date-range-p)
  9006. (re-search-backward org-tr-regexp-both (point-at-bol)))
  9007. (let ((end org-last-changed-timestamp))
  9008. (org-timestamp-change arg (or what 'day))
  9009. (setq org-last-changed-timestamp
  9010. (concat org-last-changed-timestamp "--" end)))))
  9011. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9012. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  9013. (defun org-agenda-date-earlier (arg &optional what)
  9014. "Change the date of this item to ARG day(s) earlier."
  9015. (interactive "p")
  9016. (org-agenda-date-later (- arg) what))
  9017. (defun org-agenda-date-later-minutes (arg)
  9018. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9019. (interactive "p")
  9020. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9021. (org-agenda-date-later arg 'minute))
  9022. (defun org-agenda-date-earlier-minutes (arg)
  9023. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9024. (interactive "p")
  9025. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9026. (org-agenda-date-earlier arg 'minute))
  9027. (defun org-agenda-date-later-hours (arg)
  9028. "Change the time of this item, in hour steps."
  9029. (interactive "p")
  9030. (org-agenda-date-later arg 'hour))
  9031. (defun org-agenda-date-earlier-hours (arg)
  9032. "Change the time of this item, in hour steps."
  9033. (interactive "p")
  9034. (org-agenda-date-earlier arg 'hour))
  9035. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  9036. "Show new date stamp via text properties."
  9037. ;; We use text properties to make this undoable
  9038. (let ((inhibit-read-only t))
  9039. (setq stamp (concat prefix " => " stamp " "))
  9040. (save-excursion
  9041. (goto-char (point-max))
  9042. (while (not (bobp))
  9043. (when (equal marker (org-get-at-bol 'org-marker))
  9044. (remove-text-properties (line-beginning-position)
  9045. (line-end-position)
  9046. '(display nil))
  9047. (org-move-to-column
  9048. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  9049. (add-text-properties
  9050. (1- (point)) (point-at-eol)
  9051. (list 'display (org-add-props stamp nil
  9052. 'face '(secondary-selection default))))
  9053. (beginning-of-line 1))
  9054. (beginning-of-line 0)))))
  9055. (defun org-agenda-date-prompt (arg)
  9056. "Change the date of this item. Date is prompted for, with default today.
  9057. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  9058. be used to request time specification in the time stamp."
  9059. (interactive "P")
  9060. (org-agenda-check-type t 'agenda)
  9061. (org-agenda-check-no-diary)
  9062. (org-agenda-maybe-loop
  9063. #'org-agenda-date-prompt arg t nil
  9064. (let* ((marker (or (org-get-at-bol 'org-marker)
  9065. (org-agenda-error)))
  9066. (buffer (marker-buffer marker))
  9067. (pos (marker-position marker)))
  9068. (org-with-remote-undo buffer
  9069. (with-current-buffer buffer
  9070. (widen)
  9071. (goto-char pos)
  9072. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9073. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9074. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9075. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9076. (defun org-agenda-schedule (arg &optional time)
  9077. "Schedule the item at point.
  9078. ARG is passed through to `org-schedule'."
  9079. (interactive "P")
  9080. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9081. (org-agenda-check-no-diary)
  9082. (org-agenda-maybe-loop
  9083. #'org-agenda-schedule arg t nil
  9084. (let* ((marker (or (org-get-at-bol 'org-marker)
  9085. (org-agenda-error)))
  9086. (type (marker-insertion-type marker))
  9087. (buffer (marker-buffer marker))
  9088. (pos (marker-position marker))
  9089. ts)
  9090. (set-marker-insertion-type marker t)
  9091. (org-with-remote-undo buffer
  9092. (with-current-buffer buffer
  9093. (widen)
  9094. (goto-char pos)
  9095. (setq ts (org-schedule arg time)))
  9096. (org-agenda-show-new-time marker ts " S"))
  9097. (message "%s" ts))))
  9098. (defun org-agenda-deadline (arg &optional time)
  9099. "Schedule the item at point.
  9100. ARG is passed through to `org-deadline'."
  9101. (interactive "P")
  9102. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9103. (org-agenda-check-no-diary)
  9104. (org-agenda-maybe-loop
  9105. #'org-agenda-deadline arg t nil
  9106. (let* ((marker (or (org-get-at-bol 'org-marker)
  9107. (org-agenda-error)))
  9108. (buffer (marker-buffer marker))
  9109. (pos (marker-position marker))
  9110. ts)
  9111. (org-with-remote-undo buffer
  9112. (with-current-buffer buffer
  9113. (widen)
  9114. (goto-char pos)
  9115. (setq ts (org-deadline arg time)))
  9116. (org-agenda-show-new-time marker ts " D"))
  9117. (message "%s" ts))))
  9118. (defun org-agenda-clock-in (&optional arg)
  9119. "Start the clock on the currently selected item."
  9120. (interactive "P")
  9121. (org-agenda-check-no-diary)
  9122. (if (equal arg '(4))
  9123. (org-clock-in arg)
  9124. (let* ((marker (or (org-get-at-bol 'org-marker)
  9125. (org-agenda-error)))
  9126. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9127. (pos (marker-position marker))
  9128. (col (current-column))
  9129. newhead)
  9130. (org-with-remote-undo (marker-buffer marker)
  9131. (with-current-buffer (marker-buffer marker)
  9132. (widen)
  9133. (goto-char pos)
  9134. (org-show-context 'agenda)
  9135. (org-clock-in arg)
  9136. (setq newhead (org-get-heading)))
  9137. (org-agenda-change-all-lines newhead hdmarker))
  9138. (org-move-to-column col))))
  9139. (defun org-agenda-clock-out ()
  9140. "Stop the currently running clock."
  9141. (interactive)
  9142. (unless (marker-buffer org-clock-marker)
  9143. (user-error "No running clock"))
  9144. (let ((marker (make-marker)) (col (current-column)) newhead)
  9145. (org-with-remote-undo (marker-buffer org-clock-marker)
  9146. (with-current-buffer (marker-buffer org-clock-marker)
  9147. (org-with-wide-buffer
  9148. (goto-char org-clock-marker)
  9149. (org-back-to-heading t)
  9150. (move-marker marker (point))
  9151. (org-clock-out)
  9152. (setq newhead (org-get-heading)))))
  9153. (org-agenda-change-all-lines newhead marker)
  9154. (move-marker marker nil)
  9155. (org-move-to-column col)
  9156. (org-agenda-unmark-clocking-task)))
  9157. (defun org-agenda-clock-cancel (&optional arg)
  9158. "Cancel the currently running clock."
  9159. (interactive "P")
  9160. (unless (marker-buffer org-clock-marker)
  9161. (user-error "No running clock"))
  9162. (org-with-remote-undo (marker-buffer org-clock-marker)
  9163. (org-clock-cancel)))
  9164. (defun org-agenda-clock-goto ()
  9165. "Jump to the currently clocked in task within the agenda.
  9166. If the currently clocked in task is not listed in the agenda
  9167. buffer, display it in another window."
  9168. (interactive)
  9169. (let (pos)
  9170. (mapc (lambda (o)
  9171. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9172. (setq pos (overlay-start o))))
  9173. (overlays-in (point-min) (point-max)))
  9174. (cond (pos (goto-char pos))
  9175. ;; If the currently clocked entry is not in the agenda
  9176. ;; buffer, we visit it in another window:
  9177. ((bound-and-true-p org-clock-current-task)
  9178. (org-switch-to-buffer-other-window (org-clock-goto)))
  9179. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9180. (defun org-agenda-diary-entry-in-org-file ()
  9181. "Make a diary entry in the file `org-agenda-diary-file'."
  9182. (let (d1 d2 char (text "") dp1 dp2)
  9183. (if (equal (buffer-name) "*Calendar*")
  9184. (setq d1 (calendar-cursor-to-date t)
  9185. d2 (car calendar-mark-ring))
  9186. (setq dp1 (get-text-property (point-at-bol) 'day))
  9187. (unless dp1 (user-error "No date defined in current line"))
  9188. (setq d1 (calendar-gregorian-from-absolute dp1)
  9189. d2 (and (ignore-errors (mark))
  9190. (save-excursion
  9191. (goto-char (mark))
  9192. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9193. (calendar-gregorian-from-absolute dp2))))
  9194. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9195. (setq char (read-char-exclusive))
  9196. (cond
  9197. ((equal char ?d)
  9198. (setq text (read-string "Day entry: "))
  9199. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9200. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9201. ((equal char ?a)
  9202. (setq d1 (list (car d1) (nth 1 d1)
  9203. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9204. (nth 2 d1))))
  9205. (setq text (read-string "Anniversary (use %d to show years): "))
  9206. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9207. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9208. ((equal char ?b)
  9209. (setq text (read-string "Block entry: "))
  9210. (unless (and d1 d2 (not (equal d1 d2)))
  9211. (user-error "No block of days selected"))
  9212. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9213. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9214. ((equal char ?j)
  9215. (org-switch-to-buffer-other-window
  9216. (find-file-noselect org-agenda-diary-file))
  9217. (require 'org-datetree)
  9218. (org-datetree-find-date-create d1)
  9219. (org-reveal t))
  9220. (t (user-error "Invalid selection character `%c'" char)))))
  9221. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9222. "Where in `org-agenda-diary-file' should new entries be added?
  9223. Valid values:
  9224. date-tree in the date tree, as first child of the date
  9225. date-tree-last in the date tree, as last child of the date
  9226. top-level as top-level entries at the end of the file."
  9227. :group 'org-agenda
  9228. :type '(choice
  9229. (const :tag "first in a date tree" date-tree)
  9230. (const :tag "last in a date tree" date-tree-last)
  9231. (const :tag "as top level at end of file" top-level)))
  9232. (defcustom org-agenda-insert-diary-extract-time nil
  9233. "Non-nil means extract any time specification from the diary entry."
  9234. :group 'org-agenda
  9235. :version "24.1"
  9236. :type 'boolean)
  9237. (defcustom org-agenda-bulk-mark-char ">"
  9238. "A single-character string to be used as the bulk mark."
  9239. :group 'org-agenda
  9240. :version "24.1"
  9241. :type 'string)
  9242. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9243. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9244. If TEXT is not empty, it will become the headline of the new entry, and
  9245. the resulting entry will not be shown. When TEXT is empty, switch to
  9246. `org-agenda-diary-file' and let the user finish the entry there."
  9247. (let ((cw (current-window-configuration)))
  9248. (org-switch-to-buffer-other-window
  9249. (find-file-noselect org-agenda-diary-file))
  9250. (widen)
  9251. (goto-char (point-min))
  9252. (cl-case type
  9253. (anniversary
  9254. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9255. (progn
  9256. (or (org-at-heading-p t)
  9257. (progn
  9258. (outline-next-heading)
  9259. (insert "* Anniversaries\n\n")
  9260. (beginning-of-line -1)))))
  9261. (outline-next-heading)
  9262. (org-back-over-empty-lines)
  9263. (backward-char 1)
  9264. (insert "\n")
  9265. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9266. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9267. (day
  9268. (let ((org-prefix-has-time t)
  9269. (org-agenda-time-leading-zero t)
  9270. fmt time time2)
  9271. (when org-agenda-insert-diary-extract-time
  9272. ;; Use org-agenda-format-item to parse text for a time-range and
  9273. ;; remove it. FIXME: This is a hack, we should refactor
  9274. ;; that function to make time extraction available separately
  9275. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9276. time (get-text-property 0 'time fmt)
  9277. time2 (if (> (length time) 0)
  9278. ;; split-string removes trailing ...... if
  9279. ;; no end time given. First space
  9280. ;; separates time from date.
  9281. (concat " " (car (split-string time "\\.")))
  9282. nil)
  9283. text (get-text-property 0 'txt fmt)))
  9284. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9285. (org-agenda-insert-diary-as-top-level text)
  9286. (require 'org-datetree)
  9287. (org-datetree-find-date-create d1)
  9288. (org-agenda-insert-diary-make-new-entry text))
  9289. (org-insert-time-stamp (org-time-from-absolute
  9290. (calendar-absolute-from-gregorian d1))
  9291. nil nil nil nil time2))
  9292. (end-of-line 0))
  9293. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9294. ;; otherwise the indentation gets confused by the
  9295. ;; special meaning of 'block
  9296. (when (> (calendar-absolute-from-gregorian d1)
  9297. (calendar-absolute-from-gregorian d2))
  9298. (setq d1 (prog1 d2 (setq d2 d1))))
  9299. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9300. (org-agenda-insert-diary-as-top-level text)
  9301. (require 'org-datetree)
  9302. (org-datetree-find-date-create d1)
  9303. (org-agenda-insert-diary-make-new-entry text))
  9304. (org-insert-time-stamp (org-time-from-absolute
  9305. (calendar-absolute-from-gregorian d1)))
  9306. (insert "--")
  9307. (org-insert-time-stamp (org-time-from-absolute
  9308. (calendar-absolute-from-gregorian d2)))
  9309. (end-of-line 0)))
  9310. (if (string-match "\\S-" text)
  9311. (progn
  9312. (set-window-configuration cw)
  9313. (message "%s entry added to %s"
  9314. (capitalize (symbol-name type))
  9315. (abbreviate-file-name org-agenda-diary-file)))
  9316. (org-reveal t)
  9317. (message "Please finish entry here"))))
  9318. (defun org-agenda-insert-diary-as-top-level (text)
  9319. "Make new entry as a top-level entry at the end of the file.
  9320. Add TEXT as headline, and position the cursor in the second line so that
  9321. a timestamp can be added there."
  9322. (widen)
  9323. (goto-char (point-max))
  9324. (unless (bolp) (insert "\n"))
  9325. (org-insert-heading nil t t)
  9326. (insert text)
  9327. (org-end-of-meta-data)
  9328. (unless (bolp) (insert "\n"))
  9329. (when org-adapt-indentation (indent-to-column 2)))
  9330. (defun org-agenda-insert-diary-make-new-entry (text)
  9331. "Make a new entry with TEXT as a child of the current subtree.
  9332. Position the point in the heading's first body line so that
  9333. a timestamp can be added there."
  9334. (cond
  9335. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9336. (end-of-line)
  9337. (org-insert-heading '(4) t)
  9338. (org-do-demote))
  9339. (t
  9340. (outline-next-heading)
  9341. (org-back-over-empty-lines)
  9342. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9343. (org-insert-heading nil t)
  9344. (org-do-demote)))
  9345. (let ((col (current-column)))
  9346. (insert text)
  9347. (org-end-of-meta-data)
  9348. ;; Ensure point is left on a blank line, at proper indentation.
  9349. (unless (bolp) (insert "\n"))
  9350. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9351. (when org-adapt-indentation (indent-to-column col)))
  9352. (org-show-set-visibility 'lineage))
  9353. (defun org-agenda-diary-entry ()
  9354. "Make a diary entry, like the `i' command from the calendar.
  9355. All the standard commands work: block, weekly etc.
  9356. When `org-agenda-diary-file' points to a file,
  9357. `org-agenda-diary-entry-in-org-file' is called instead to create
  9358. entries in that Org file."
  9359. (interactive)
  9360. (if (not (eq org-agenda-diary-file 'diary-file))
  9361. (org-agenda-diary-entry-in-org-file)
  9362. (require 'diary-lib)
  9363. (let* ((char (read-char-exclusive
  9364. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9365. [a]nniversary [b]lock [c]yclic"))
  9366. (cmd (cdr (assoc char
  9367. '((?d . diary-insert-entry)
  9368. (?w . diary-insert-weekly-entry)
  9369. (?m . diary-insert-monthly-entry)
  9370. (?y . diary-insert-yearly-entry)
  9371. (?a . diary-insert-anniversary-entry)
  9372. (?b . diary-insert-block-entry)
  9373. (?c . diary-insert-cyclic-entry)))))
  9374. (oldf (symbol-function 'calendar-cursor-to-date))
  9375. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9376. (point (point))
  9377. (mark (or (mark t) (point))))
  9378. (unless cmd
  9379. (user-error "No command associated with <%c>" char))
  9380. (unless (and (get-text-property point 'day)
  9381. (or (not (equal ?b char))
  9382. (get-text-property mark 'day)))
  9383. (user-error "Don't know which date to use for diary entry"))
  9384. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9385. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9386. (let ((calendar-mark-ring
  9387. (list (calendar-gregorian-from-absolute
  9388. (or (get-text-property mark 'day)
  9389. (get-text-property point 'day))))))
  9390. (unwind-protect
  9391. (progn
  9392. (fset 'calendar-cursor-to-date
  9393. (lambda (&optional error dummy)
  9394. (calendar-gregorian-from-absolute
  9395. (get-text-property point 'day))))
  9396. (call-interactively cmd))
  9397. (fset 'calendar-cursor-to-date oldf))))))
  9398. (defun org-agenda-execute-calendar-command (cmd)
  9399. "Execute a calendar command from the agenda with date from cursor."
  9400. (org-agenda-check-type t 'agenda)
  9401. (require 'diary-lib)
  9402. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9403. (user-error "Don't know which date to use for the calendar command"))
  9404. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9405. (point (point))
  9406. (date (calendar-gregorian-from-absolute
  9407. (get-text-property point 'day)))
  9408. ;; the following 2 vars are needed in the calendar
  9409. (displayed-month (car date))
  9410. (displayed-year (nth 2 date)))
  9411. (unwind-protect
  9412. (progn
  9413. (fset 'calendar-cursor-to-date
  9414. (lambda (&optional error dummy)
  9415. (calendar-gregorian-from-absolute
  9416. (get-text-property point 'day))))
  9417. (call-interactively cmd))
  9418. (fset 'calendar-cursor-to-date oldf))))
  9419. (defun org-agenda-phases-of-moon ()
  9420. "Display the phases of the moon for the 3 months around the cursor date."
  9421. (interactive)
  9422. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9423. (defun org-agenda-holidays ()
  9424. "Display the holidays for the 3 months around the cursor date."
  9425. (interactive)
  9426. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9427. (defvar calendar-longitude) ; defined in calendar.el
  9428. (defvar calendar-latitude) ; defined in calendar.el
  9429. (defvar calendar-location-name) ; defined in calendar.el
  9430. (defun org-agenda-sunrise-sunset (arg)
  9431. "Display sunrise and sunset for the cursor date.
  9432. Latitude and longitude can be specified with the variables
  9433. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9434. argument, latitude and longitude will be prompted for."
  9435. (interactive "P")
  9436. (require 'solar)
  9437. (let ((calendar-longitude (if arg nil calendar-longitude))
  9438. (calendar-latitude (if arg nil calendar-latitude))
  9439. (calendar-location-name
  9440. (if arg "the given coordinates" calendar-location-name)))
  9441. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9442. (defun org-agenda-goto-calendar ()
  9443. "Open the Emacs calendar with the date at the cursor."
  9444. (interactive)
  9445. (org-agenda-check-type t 'agenda)
  9446. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9447. (user-error "Don't know which date to open in calendar")))
  9448. (date (calendar-gregorian-from-absolute day))
  9449. (calendar-move-hook nil)
  9450. (calendar-view-holidays-initially-flag nil)
  9451. (calendar-view-diary-initially-flag nil))
  9452. (calendar)
  9453. (calendar-goto-date date)))
  9454. ;;;###autoload
  9455. (defun org-calendar-goto-agenda ()
  9456. "Compute the Org agenda for the calendar date displayed at the cursor.
  9457. This is a command that has to be installed in `calendar-mode-map'."
  9458. (interactive)
  9459. ;; Temporarily disable sticky agenda since user clearly wants to
  9460. ;; refresh view anyway.
  9461. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9462. (org-agenda-sticky nil))
  9463. (org-agenda-list nil (calendar-absolute-from-gregorian
  9464. (calendar-cursor-to-date))
  9465. nil)))
  9466. (defun org-agenda-convert-date ()
  9467. (interactive)
  9468. (org-agenda-check-type t 'agenda)
  9469. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9470. date s)
  9471. (unless day
  9472. (user-error "Don't know which date to convert"))
  9473. (setq date (calendar-gregorian-from-absolute day))
  9474. (setq s (concat
  9475. "Gregorian: " (calendar-date-string date) "\n"
  9476. "ISO: " (calendar-iso-date-string date) "\n"
  9477. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9478. "Julian: " (calendar-julian-date-string date) "\n"
  9479. "Astron. JD: " (calendar-astro-date-string date)
  9480. " (Julian date number at noon UTC)\n"
  9481. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9482. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9483. "French: " (calendar-french-date-string date) "\n"
  9484. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9485. "Mayan: " (calendar-mayan-date-string date) "\n"
  9486. "Coptic: " (calendar-coptic-date-string date) "\n"
  9487. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9488. "Persian: " (calendar-persian-date-string date) "\n"
  9489. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9490. (with-output-to-temp-buffer "*Dates*"
  9491. (princ s))
  9492. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9493. ;;; Bulk commands
  9494. (defun org-agenda-bulk-marked-p ()
  9495. "Non-nil when current entry is marked for bulk action."
  9496. (eq (get-char-property (point-at-bol) 'type)
  9497. 'org-marked-entry-overlay))
  9498. (defun org-agenda-bulk-mark (&optional arg)
  9499. "Mark entries for future bulk action.
  9500. When ARG is nil or one and region is not active then mark the
  9501. entry at point.
  9502. When ARG is nil or one and region is active then mark the entries
  9503. in the region.
  9504. When ARG is greater than one mark ARG lines."
  9505. (interactive "p")
  9506. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9507. (setq arg (count-lines (region-beginning) (region-end)))
  9508. (goto-char (region-beginning))
  9509. (deactivate-mark))
  9510. (dotimes (i (or arg 1))
  9511. (unless (org-get-at-bol 'org-agenda-diary-link)
  9512. (let* ((m (org-get-at-bol 'org-hd-marker))
  9513. ov)
  9514. (unless (org-agenda-bulk-marked-p)
  9515. (unless m (user-error "Nothing to mark at point"))
  9516. (push m org-agenda-bulk-marked-entries)
  9517. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9518. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9519. (org-get-todo-face "TODO")
  9520. 'evaporate)
  9521. (overlay-put ov 'type 'org-marked-entry-overlay))
  9522. (end-of-line 1)
  9523. (or (ignore-errors
  9524. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9525. (beginning-of-line 2))
  9526. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9527. (beginning-of-line 2)))))
  9528. (message "%d entries marked for bulk action"
  9529. (length org-agenda-bulk-marked-entries)))
  9530. (defun org-agenda-bulk-mark-all ()
  9531. "Mark all entries for future agenda bulk action."
  9532. (interactive)
  9533. (org-agenda-bulk-mark-regexp "."))
  9534. (defun org-agenda-bulk-mark-regexp (regexp)
  9535. "Mark entries matching REGEXP for future agenda bulk action."
  9536. (interactive "sMark entries matching regexp: ")
  9537. (let ((entries-marked 0) txt-at-point)
  9538. (save-excursion
  9539. (goto-char (point-min))
  9540. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9541. (while (and (re-search-forward regexp nil t)
  9542. (setq txt-at-point
  9543. (get-text-property (match-beginning 0) 'txt)))
  9544. (if (get-char-property (point) 'invisible)
  9545. (beginning-of-line 2)
  9546. (when (string-match-p regexp txt-at-point)
  9547. (setq entries-marked (1+ entries-marked))
  9548. (call-interactively 'org-agenda-bulk-mark)))))
  9549. (unless entries-marked
  9550. (message "No entry matching this regexp."))))
  9551. (defun org-agenda-bulk-unmark (&optional arg)
  9552. "Unmark the entry at point for future bulk action."
  9553. (interactive "P")
  9554. (if arg
  9555. (org-agenda-bulk-unmark-all)
  9556. (cond ((org-agenda-bulk-marked-p)
  9557. (org-agenda-bulk-remove-overlays
  9558. (point-at-bol) (+ 2 (point-at-bol)))
  9559. (setq org-agenda-bulk-marked-entries
  9560. (delete (org-get-at-bol 'org-hd-marker)
  9561. org-agenda-bulk-marked-entries))
  9562. (end-of-line 1)
  9563. (or (ignore-errors
  9564. (goto-char (next-single-property-change (point) 'txt)))
  9565. (beginning-of-line 2))
  9566. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9567. (beginning-of-line 2))
  9568. (message "%d entries left marked for bulk action"
  9569. (length org-agenda-bulk-marked-entries)))
  9570. (t (message "No entry to unmark here")))))
  9571. (defun org-agenda-bulk-toggle-all ()
  9572. "Toggle all marks for bulk action."
  9573. (interactive)
  9574. (save-excursion
  9575. (goto-char (point-min))
  9576. (while (ignore-errors
  9577. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9578. (org-agenda-bulk-toggle))))
  9579. (defun org-agenda-bulk-toggle ()
  9580. "Toggle the mark at point for bulk action."
  9581. (interactive)
  9582. (if (org-agenda-bulk-marked-p)
  9583. (org-agenda-bulk-unmark)
  9584. (org-agenda-bulk-mark)))
  9585. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9586. "Remove the mark overlays between BEG and END in the agenda buffer.
  9587. BEG and END default to the buffer limits.
  9588. This only removes the overlays, it does not remove the markers
  9589. from the list in `org-agenda-bulk-marked-entries'."
  9590. (interactive)
  9591. (mapc (lambda (ov)
  9592. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9593. (delete-overlay ov)))
  9594. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9595. (defun org-agenda-bulk-unmark-all ()
  9596. "Remove all marks in the agenda buffer.
  9597. This will remove the markers and the overlays."
  9598. (interactive)
  9599. (if (null org-agenda-bulk-marked-entries)
  9600. (message "No entry to unmark")
  9601. (setq org-agenda-bulk-marked-entries nil)
  9602. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9603. (defcustom org-agenda-persistent-marks nil
  9604. "Non-nil means marked items will stay marked after a bulk action.
  9605. You can toggle this interactively by typing `p' when prompted for a
  9606. bulk action."
  9607. :group 'org-agenda
  9608. :version "24.1"
  9609. :type 'boolean)
  9610. (defcustom org-agenda-loop-over-headlines-in-active-region t
  9611. "Shall some commands act upon headlines in the active region?
  9612. When set to t, some commands will be performed in all headlines
  9613. within the active region.
  9614. When set to `start-level', some commands will be performed in all
  9615. headlines within the active region, provided that these headlines
  9616. are of the same level than the first one.
  9617. When set to a regular expression, those commands will be
  9618. performed on the matching headlines within the active region.
  9619. The list of commands is: `org-agenda-schedule',
  9620. `org-agenda-deadline', `org-agenda-date-prompt',
  9621. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9622. See `org-loop-over-headlines-in-active-region' for the equivalent
  9623. option for Org buffers."
  9624. :type '(choice (const :tag "Don't loop" nil)
  9625. (const :tag "All headlines in active region" t)
  9626. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9627. (regexp :tag "Regular expression matcher"))
  9628. :version "27.1"
  9629. :package-version '(Org . "9.4")
  9630. :group 'org-agenda)
  9631. (defun org-agenda-bulk-action (&optional arg)
  9632. "Execute an remote-editing action on all marked entries.
  9633. The prefix arg is passed through to the command if possible."
  9634. (interactive "P")
  9635. ;; When there is no mark, act on the agenda entry at point.
  9636. (if (not org-agenda-bulk-marked-entries)
  9637. (save-excursion (org-agenda-bulk-mark)))
  9638. (dolist (m org-agenda-bulk-marked-entries)
  9639. (unless (and (markerp m)
  9640. (marker-buffer m)
  9641. (buffer-live-p (marker-buffer m))
  9642. (marker-position m))
  9643. (user-error "Marker %s for bulk command is invalid" m)))
  9644. ;; Prompt for the bulk command.
  9645. (org-unlogged-message
  9646. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9647. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9648. "[S]catter [f]unction "
  9649. (and org-agenda-bulk-custom-functions
  9650. (format " Custom: [%s]"
  9651. (mapconcat (lambda (f) (char-to-string (car f)))
  9652. org-agenda-bulk-custom-functions
  9653. "")))))
  9654. (catch 'exit
  9655. (let* ((org-log-refile (if org-log-refile 'time nil))
  9656. (entries (reverse org-agenda-bulk-marked-entries))
  9657. (org-overriding-default-time
  9658. (and (get-text-property (point) 'org-agenda-date-header)
  9659. (org-get-cursor-date)))
  9660. redo-at-end
  9661. cmd)
  9662. (pcase (read-char-exclusive)
  9663. (?p
  9664. (let ((org-agenda-persistent-marks
  9665. (not org-agenda-persistent-marks)))
  9666. (org-agenda-bulk-action)
  9667. (throw 'exit nil)))
  9668. (?$
  9669. (setq cmd #'org-agenda-archive))
  9670. (?A
  9671. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9672. ((or ?r ?w)
  9673. (let ((refile-location
  9674. (org-refile-get-location
  9675. "Refile to"
  9676. (marker-buffer (car entries))
  9677. org-refile-allow-creating-parent-nodes)))
  9678. (when (nth 3 refile-location)
  9679. (setcar (nthcdr 3 refile-location)
  9680. (move-marker
  9681. (make-marker)
  9682. (nth 3 refile-location)
  9683. (or (get-file-buffer (nth 1 refile-location))
  9684. (find-buffer-visiting (nth 1 refile-location))
  9685. (error "This should not happen")))))
  9686. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9687. (setq redo-at-end t)))
  9688. (?t
  9689. (let ((state (completing-read
  9690. "Todo state: "
  9691. (with-current-buffer (marker-buffer (car entries))
  9692. (mapcar #'list org-todo-keywords-1)))))
  9693. (setq cmd `(lambda ()
  9694. (let ((org-inhibit-blocking t)
  9695. (org-inhibit-logging 'note))
  9696. (org-agenda-todo ,state))))))
  9697. ((and (or ?- ?+) action)
  9698. (let ((tag (completing-read
  9699. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9700. (with-current-buffer (marker-buffer (car entries))
  9701. (delq nil
  9702. (mapcar (lambda (x) (and (stringp (car x)) x))
  9703. org-current-tag-alist))))))
  9704. (setq cmd
  9705. `(lambda ()
  9706. (org-agenda-set-tags ,tag
  9707. ,(if (eq action ?+) ''on ''off))))))
  9708. ((and (or ?s ?d) c)
  9709. (let* ((schedule? (eq c ?s))
  9710. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9711. (time
  9712. (and (not arg)
  9713. (let ((new (org-read-date
  9714. nil nil nil prompt org-overriding-default-time)))
  9715. ;; A "double plus" answer applies to every
  9716. ;; scheduled time. Do not turn it into
  9717. ;; a fixed date yet.
  9718. (if (string-match-p "\\`[ \t]*\\+\\+"
  9719. org-read-date-final-answer)
  9720. org-read-date-final-answer
  9721. new)))))
  9722. ;; Make sure to not prompt for a note when bulk
  9723. ;; rescheduling/resetting deadline as Org cannot cope with
  9724. ;; simultaneous notes. Besides, it could be annoying
  9725. ;; depending on the number of marked items.
  9726. (setq cmd
  9727. (if schedule?
  9728. `(lambda ()
  9729. (let ((org-log-reschedule
  9730. (and org-log-reschedule 'time)))
  9731. (org-agenda-schedule arg ,time)))
  9732. `(lambda ()
  9733. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9734. (org-agenda-deadline arg ,time)))))))
  9735. (?S
  9736. (unless (org-agenda-check-type nil 'agenda 'todo)
  9737. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9738. (let ((days (read-number
  9739. (format "Scatter tasks across how many %sdays: "
  9740. (if arg "week" ""))
  9741. 7)))
  9742. (setq cmd
  9743. `(lambda ()
  9744. (let ((distance (1+ (random ,days))))
  9745. (when arg
  9746. (let ((dist distance)
  9747. (day-of-week
  9748. (calendar-day-of-week
  9749. (calendar-gregorian-from-absolute (org-today)))))
  9750. (dotimes (i (1+ dist))
  9751. (while (member day-of-week org-agenda-weekend-days)
  9752. (cl-incf distance)
  9753. (cl-incf day-of-week)
  9754. (when (= day-of-week 7)
  9755. (setq day-of-week 0)))
  9756. (cl-incf day-of-week)
  9757. (when (= day-of-week 7)
  9758. (setq day-of-week 0)))))
  9759. ;; Silently fail when try to replan a sexp entry.
  9760. (ignore-errors
  9761. (let* ((date (calendar-gregorian-from-absolute
  9762. (+ (org-today) distance)))
  9763. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9764. (nth 2 date))))
  9765. (org-agenda-schedule nil time))))))))
  9766. (?f
  9767. (setq cmd
  9768. (intern
  9769. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9770. (action
  9771. (pcase (assoc action org-agenda-bulk-custom-functions)
  9772. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9773. (_ (user-error "Invalid bulk action: %c" action)))))
  9774. ;; Sort the markers, to make sure that parents are handled
  9775. ;; before children.
  9776. (setq entries (sort entries
  9777. (lambda (a b)
  9778. (cond
  9779. ((eq (marker-buffer a) (marker-buffer b))
  9780. (< (marker-position a) (marker-position b)))
  9781. (t
  9782. (string< (buffer-name (marker-buffer a))
  9783. (buffer-name (marker-buffer b))))))))
  9784. ;; Now loop over all markers and apply CMD.
  9785. (let ((processed 0)
  9786. (skipped 0))
  9787. (dolist (e entries)
  9788. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9789. (if (not pos)
  9790. (progn (message "Skipping removed entry at %s" e)
  9791. (cl-incf skipped))
  9792. (goto-char pos)
  9793. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9794. ;; `post-command-hook' is not run yet. We make sure any
  9795. ;; pending log note is processed.
  9796. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9797. (memq 'org-add-log-note post-command-hook))
  9798. (org-add-log-note))
  9799. (cl-incf processed))))
  9800. (when redo-at-end (org-agenda-redo))
  9801. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9802. (message "Acted on %d entries%s%s"
  9803. processed
  9804. (if (= skipped 0)
  9805. ""
  9806. (format ", skipped %d (disappeared before their turn)"
  9807. skipped))
  9808. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9809. (defun org-agenda-capture (&optional with-time)
  9810. "Call `org-capture' with the date at point.
  9811. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9812. current HH:MM time."
  9813. (interactive "P")
  9814. (if (not (eq major-mode 'org-agenda-mode))
  9815. (user-error "You cannot do this outside of agenda buffers")
  9816. (let ((org-overriding-default-time
  9817. (org-get-cursor-date (equal with-time 1))))
  9818. (call-interactively 'org-capture))))
  9819. ;;; Dragging agenda lines forward/backward
  9820. (defun org-agenda-reapply-filters ()
  9821. "Re-apply all agenda filters."
  9822. (mapcar
  9823. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9824. `((,org-agenda-tag-filter tag)
  9825. (,org-agenda-category-filter category)
  9826. (,org-agenda-regexp-filter regexp)
  9827. (,org-agenda-effort-filter effort)
  9828. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9829. (,(get 'org-agenda-category-filter :preset-filter) category)
  9830. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9831. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9832. (defun org-agenda-drag-line-forward (arg &optional backward)
  9833. "Drag an agenda line forward by ARG lines.
  9834. When the optional argument `backward' is non-nil, move backward."
  9835. (interactive "p")
  9836. (let ((inhibit-read-only t) lst line)
  9837. (if (or (not (get-text-property (point) 'txt))
  9838. (save-excursion
  9839. (dotimes (n arg)
  9840. (move-beginning-of-line (if backward 0 2))
  9841. (push (not (get-text-property (point) 'txt)) lst))
  9842. (delq nil lst)))
  9843. (message "Cannot move line forward")
  9844. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9845. (move-beginning-of-line 1)
  9846. (setq line (buffer-substring (point) end))
  9847. (delete-region (point) end)
  9848. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9849. (insert line)
  9850. (org-agenda-reapply-filters)
  9851. (org-agenda-mark-clocking-task)
  9852. (move-beginning-of-line 0)))))
  9853. (defun org-agenda-drag-line-backward (arg)
  9854. "Drag an agenda line backward by ARG lines."
  9855. (interactive "p")
  9856. (org-agenda-drag-line-forward arg t))
  9857. ;;; Flagging notes
  9858. (defun org-agenda-show-the-flagging-note ()
  9859. "Display the flagging note in the other window.
  9860. When called a second time in direct sequence, offer to remove the FLAGGING
  9861. tag and (if present) the flagging note."
  9862. (interactive)
  9863. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9864. (win (selected-window))
  9865. note heading newhead)
  9866. (unless hdmarker
  9867. (user-error "No linked entry at point"))
  9868. (if (and (eq this-command last-command)
  9869. (y-or-n-p "Unflag and remove any flagging note? "))
  9870. (progn
  9871. (org-agenda-remove-flag hdmarker)
  9872. (let ((win (get-buffer-window "*Flagging Note*")))
  9873. (and win (delete-window win)))
  9874. (message "Entry unflagged"))
  9875. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9876. (unless note
  9877. (user-error "No flagging note"))
  9878. (org-kill-new note)
  9879. (org-switch-to-buffer-other-window "*Flagging Note*")
  9880. (erase-buffer)
  9881. (insert note)
  9882. (goto-char (point-min))
  9883. (while (re-search-forward "\\\\n" nil t)
  9884. (replace-match "\n" t t))
  9885. (goto-char (point-min))
  9886. (select-window win)
  9887. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9888. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9889. tag and note")))))
  9890. (defun org-agenda-remove-flag (marker)
  9891. "Remove the FLAGGED tag and any flagging note in the entry."
  9892. (let (newhead)
  9893. (org-with-point-at marker
  9894. (org-toggle-tag "FLAGGED" 'off)
  9895. (org-entry-delete nil "THEFLAGGINGNOTE")
  9896. (setq newhead (org-get-heading)))
  9897. (org-agenda-change-all-lines newhead marker)
  9898. (message "Entry unflagged")))
  9899. (defun org-agenda-get-any-marker (&optional pos)
  9900. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9901. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9902. ;;; Appointment reminders
  9903. (defvar appt-time-msg-list) ; defined in appt.el
  9904. ;;;###autoload
  9905. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9906. "Activate appointments found in `org-agenda-files'.
  9907. With a `\\[universal-argument]' prefix, refresh the list of \
  9908. appointments.
  9909. If FILTER is t, interactively prompt the user for a regular
  9910. expression, and filter out entries that don't match it.
  9911. If FILTER is a string, use this string as a regular expression
  9912. for filtering entries out.
  9913. If FILTER is a function, filter out entries against which
  9914. calling the function returns nil. This function takes one
  9915. argument: an entry from `org-agenda-get-day-entries'.
  9916. FILTER can also be an alist with the car of each cell being
  9917. either `headline' or `category'. For example:
  9918. \\='((headline \"IMPORTANT\")
  9919. (category \"Work\"))
  9920. will only add headlines containing IMPORTANT or headlines
  9921. belonging to the \"Work\" category.
  9922. ARGS are symbols indicating what kind of entries to consider.
  9923. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9924. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9925. and :timestamp entries. See the docstring of `org-diary' for
  9926. details and examples.
  9927. If an entry has a APPT_WARNTIME property, its value will be used
  9928. to override `appt-message-warning-time'."
  9929. (interactive "P")
  9930. (when refresh (setq appt-time-msg-list nil))
  9931. (when (eq filter t)
  9932. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9933. (let* ((cnt 0) ; count added events
  9934. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9935. (org-agenda-new-buffers nil)
  9936. (org-deadline-warning-days 0)
  9937. ;; Do not use `org-today' here because appt only takes
  9938. ;; time and without date as argument, so it may pass wrong
  9939. ;; information otherwise
  9940. (today (org-date-to-gregorian
  9941. (time-to-days nil)))
  9942. (org-agenda-restrict nil)
  9943. (files (org-agenda-files 'unrestricted)) entries file
  9944. (org-agenda-buffer nil))
  9945. ;; Get all entries which may contain an appt
  9946. (org-agenda-prepare-buffers files)
  9947. (while (setq file (pop files))
  9948. (setq entries
  9949. (delq nil
  9950. (append entries
  9951. (apply 'org-agenda-get-day-entries
  9952. file today scope)))))
  9953. ;; Map through entries and find if we should filter them out
  9954. (mapc
  9955. (lambda (x)
  9956. (let* ((evt (org-trim
  9957. (replace-regexp-in-string
  9958. org-link-bracket-re "\\2"
  9959. (or (get-text-property 1 'txt x) ""))))
  9960. (cat (get-text-property (1- (length x)) 'org-category x))
  9961. (tod (get-text-property 1 'time-of-day x))
  9962. (ok (or (null filter)
  9963. (and (stringp filter) (string-match filter evt))
  9964. (and (functionp filter) (funcall filter x))
  9965. (and (listp filter)
  9966. (let ((cat-filter (cadr (assq 'category filter)))
  9967. (evt-filter (cadr (assq 'headline filter))))
  9968. (or (and (stringp cat-filter)
  9969. (string-match cat-filter cat))
  9970. (and (stringp evt-filter)
  9971. (string-match evt-filter evt)))))))
  9972. (wrn (get-text-property 1 'warntime x)))
  9973. ;; FIXME: Shall we remove text-properties for the appt text?
  9974. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9975. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9976. (setq tod (concat "00" (number-to-string tod)))
  9977. (setq tod (when (string-match
  9978. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9979. (concat (match-string 1 tod) ":"
  9980. (match-string 2 tod))))
  9981. (when (appt-add tod evt wrn)
  9982. (setq cnt (1+ cnt))))))
  9983. entries)
  9984. (org-release-buffers org-agenda-new-buffers)
  9985. (if (eq cnt 0)
  9986. (message "No event to add")
  9987. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9988. (defun org-agenda-today-p (date)
  9989. "Non-nil when DATE means today.
  9990. DATE is either a list of the form (month day year) or a number of
  9991. days as returned by `calendar-absolute-from-gregorian' or
  9992. `org-today'. This function considers `org-extend-today-until'
  9993. when defining today."
  9994. (eq (org-today)
  9995. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9996. (defun org-agenda-todo-yesterday (&optional arg)
  9997. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9998. (interactive "P")
  9999. (let* ((org-use-effective-time t)
  10000. (hour (nth 2 (decode-time (org-current-time))))
  10001. (org-extend-today-until (1+ hour)))
  10002. (org-agenda-todo arg)))
  10003. (defun org-agenda-ctrl-c-ctrl-c ()
  10004. "Set tags in agenda buffer."
  10005. (interactive)
  10006. (org-agenda-set-tags))
  10007. (provide 'org-agenda)
  10008. ;;; org-agenda.el ends here