org-agenda.el 394 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'cl-lib)
  42. (require 'org)
  43. (require 'org-macs)
  44. (declare-function diary-add-to-list "diary-lib"
  45. (date string specifier &optional marker globcolor literal))
  46. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  47. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  48. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  49. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  50. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  51. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-french-date-string "cal-french" (&optional date))
  53. (declare-function calendar-goto-date "cal-move" (date))
  54. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  55. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  56. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  57. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  58. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  59. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  60. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  61. (declare-function calendar-check-holidays "holidays" (date))
  62. (declare-function org-columns-remove-overlays "org-colview" ())
  63. (declare-function org-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-agenda-columns "org-colview" ())
  74. (declare-function org-add-archive-files "org-archive" (files))
  75. (declare-function org-capture "org-capture" (&optional goto keys))
  76. (defvar calendar-mode-map)
  77. (defvar org-clock-current-task)
  78. (defvar org-current-tag-alist)
  79. (defvar org-mobile-force-id-on-agenda-items)
  80. (defvar org-habit-show-habits)
  81. (defvar org-habit-show-habits-only-for-today)
  82. (defvar org-habit-show-all-today)
  83. ;; Defined somewhere in this file, but used before definition.
  84. (defvar org-agenda-buffer-name "*Org Agenda*")
  85. (defvar org-agenda-overriding-header nil)
  86. (defvar org-agenda-title-append nil)
  87. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  88. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  89. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  90. (defvar org-agenda-undo-list nil
  91. "List of undoable operations in the agenda since last refresh.")
  92. (defvar org-agenda-pending-undo-list nil
  93. "In a series of undo commands, this is the list of remaining undo items.")
  94. (defcustom org-agenda-confirm-kill 1
  95. "When set, remote killing from the agenda buffer needs confirmation.
  96. When t, a confirmation is always needed. When a number N, confirmation is
  97. only needed when the text to be killed contains more than N non-white lines."
  98. :group 'org-agenda
  99. :type '(choice
  100. (const :tag "Never" nil)
  101. (const :tag "Always" t)
  102. (integer :tag "When more than N lines")))
  103. (defcustom org-agenda-compact-blocks nil
  104. "Non-nil means make the block agenda more compact.
  105. This is done globally by leaving out lines like the agenda span
  106. name and week number or the separator lines."
  107. :group 'org-agenda
  108. :type 'boolean)
  109. (defcustom org-agenda-block-separator ?=
  110. "The separator between blocks in the agenda.
  111. If this is a string, it will be used as the separator, with a newline added.
  112. If it is a character, it will be repeated to fill the window width.
  113. If nil the separator is disabled. In `org-agenda-custom-commands' this
  114. addresses the separator between the current and the previous block."
  115. :group 'org-agenda
  116. :type '(choice
  117. (const :tag "Disabled" nil)
  118. (character)
  119. (string)))
  120. (defgroup org-agenda-export nil
  121. "Options concerning exporting agenda views in Org-mode."
  122. :tag "Org Agenda Export"
  123. :group 'org-agenda)
  124. (defcustom org-agenda-with-colors t
  125. "Non-nil means use colors in agenda views."
  126. :group 'org-agenda-export
  127. :type 'boolean)
  128. (defcustom org-agenda-exporter-settings nil
  129. "Alist of variable/value pairs that should be active during agenda export.
  130. This is a good place to set options for ps-print and for htmlize.
  131. Note that the way this is implemented, the values will be evaluated
  132. before assigned to the variables. So make sure to quote values you do
  133. *not* want evaluated, for example
  134. (setq org-agenda-exporter-settings
  135. \\='((ps-print-color-p \\='black-white)))"
  136. :group 'org-agenda-export
  137. :type '(repeat
  138. (list
  139. (variable)
  140. (sexp :tag "Value"))))
  141. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  142. "Hook run in a temporary buffer before writing the agenda to an export file.
  143. A useful function for this hook is `org-agenda-add-entry-text'."
  144. :group 'org-agenda-export
  145. :type 'hook
  146. :options '(org-agenda-add-entry-text))
  147. (defcustom org-agenda-add-entry-text-maxlines 0
  148. "Maximum number of entry text lines to be added to agenda.
  149. This is only relevant when `org-agenda-add-entry-text' is part of
  150. `org-agenda-before-write-hook', which is the default.
  151. When this is 0, nothing will happen. When it is greater than 0, it
  152. specifies the maximum number of lines that will be added for each entry
  153. that is listed in the agenda view.
  154. Note that this variable is not used during display, only when exporting
  155. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  156. and `org-agenda-entry-text-maxlines'."
  157. :group 'org-agenda
  158. :type 'integer)
  159. (defcustom org-agenda-add-entry-text-descriptive-links t
  160. "Non-nil means export org-links as descriptive links in agenda added text.
  161. This variable applies to the text added to the agenda when
  162. `org-agenda-add-entry-text-maxlines' is larger than 0.
  163. When this variable nil, the URL will (also) be shown."
  164. :group 'org-agenda
  165. :type 'boolean)
  166. (defcustom org-agenda-export-html-style nil
  167. "The style specification for exported HTML Agenda files.
  168. If this variable contains a string, it will replace the default <style>
  169. section as produced by `htmlize'.
  170. Since there are different ways of setting style information, this variable
  171. needs to contain the full HTML structure to provide a style, including the
  172. surrounding HTML tags. The style specifications should include definitions
  173. the fonts used by the agenda, here is an example:
  174. <style type=\"text/css\">
  175. p { font-weight: normal; color: gray; }
  176. .org-agenda-structure {
  177. font-size: 110%;
  178. color: #003399;
  179. font-weight: 600;
  180. }
  181. .org-todo {
  182. color: #cc6666;
  183. font-weight: bold;
  184. }
  185. .org-agenda-done {
  186. color: #339933;
  187. }
  188. .org-done {
  189. color: #339933;
  190. }
  191. .title { text-align: center; }
  192. .todo, .deadline { color: red; }
  193. .done { color: green; }
  194. </style>
  195. or, if you want to keep the style in a file,
  196. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  197. As the value of this option simply gets inserted into the HTML <head> header,
  198. you can \"misuse\" it to also add other text to the header."
  199. :group 'org-agenda-export
  200. :group 'org-export-html
  201. :type '(choice
  202. (const nil)
  203. (string)))
  204. (defcustom org-agenda-persistent-filter nil
  205. "When set, keep filters from one agenda view to the next."
  206. :group 'org-agenda
  207. :type 'boolean)
  208. (defgroup org-agenda-custom-commands nil
  209. "Options concerning agenda views in Org-mode."
  210. :tag "Org Agenda Custom Commands"
  211. :group 'org-agenda)
  212. (defconst org-sorting-choice
  213. '(choice
  214. (const time-up) (const time-down)
  215. (const timestamp-up) (const timestamp-down)
  216. (const scheduled-up) (const scheduled-down)
  217. (const deadline-up) (const deadline-down)
  218. (const ts-up) (const ts-down)
  219. (const tsia-up) (const tsia-down)
  220. (const category-keep) (const category-up) (const category-down)
  221. (const tag-down) (const tag-up)
  222. (const priority-up) (const priority-down)
  223. (const todo-state-up) (const todo-state-down)
  224. (const effort-up) (const effort-down)
  225. (const habit-up) (const habit-down)
  226. (const alpha-up) (const alpha-down)
  227. (const user-defined-up) (const user-defined-down))
  228. "Sorting choices.")
  229. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  230. ;; the new variable `org-agenda-tag-filter-preset'.
  231. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  232. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  233. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  234. "List of types searched for when creating the daily/weekly agenda.
  235. This variable is a list of symbols that controls the types of
  236. items that appear in the daily/weekly agenda. Allowed symbols in this
  237. list are are
  238. :timestamp List items containing a date stamp or date range matching
  239. the selected date. This includes sexp entries in angular
  240. brackets.
  241. :sexp List entries resulting from plain diary-like sexps.
  242. :deadline List deadline due on that date. When the date is today,
  243. also list any deadlines past due, or due within
  244. `org-deadline-warning-days'. `:deadline' must appear before
  245. `:scheduled' if the setting of
  246. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  247. any effect.
  248. :deadline* Same as above, but only include the deadline if it has an
  249. hour specification as [h]h:mm.
  250. :scheduled List all items which are scheduled for the given date.
  251. The diary for *today* also contains items which were
  252. scheduled earlier and are not yet marked DONE.
  253. :scheduled* Same as above, but only include the scheduled item if it
  254. has an hour specification as [h]h:mm.
  255. By default, all four non-starred types are turned on.
  256. When :scheduled* or :deadline* are included, :schedule or :deadline
  257. will be ignored.
  258. Never set this variable globally using `setq', because then it
  259. will apply to all future agenda commands. Instead, bind it with
  260. `let' to scope it dynamically into the agenda-constructing
  261. command. A good way to set it is through options in
  262. `org-agenda-custom-commands'. For a more flexible (though
  263. somewhat less efficient) way of determining what is included in
  264. the daily/weekly agenda, see `org-agenda-skip-function'.")
  265. (defconst org-agenda-custom-commands-local-options
  266. `(repeat :tag "Local settings for this command. Remember to quote values"
  267. (choice :tag "Setting"
  268. (list :tag "Heading for this block"
  269. (const org-agenda-overriding-header)
  270. (string :tag "Headline"))
  271. (list :tag "Files to be searched"
  272. (const org-agenda-files)
  273. (list
  274. (const :format "" quote)
  275. (repeat (file))))
  276. (list :tag "Sorting strategy"
  277. (const org-agenda-sorting-strategy)
  278. (list
  279. (const :format "" quote)
  280. (repeat
  281. ,org-sorting-choice)))
  282. (list :tag "Prefix format"
  283. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  284. (string))
  285. (list :tag "Number of days in agenda"
  286. (const org-agenda-span)
  287. (choice (const :tag "Day" day)
  288. (const :tag "Week" week)
  289. (const :tag "Fortnight" fortnight)
  290. (const :tag "Month" month)
  291. (const :tag "Year" year)
  292. (integer :tag "Custom")))
  293. (list :tag "Fixed starting date"
  294. (const org-agenda-start-day)
  295. (string :value "2007-11-01"))
  296. (list :tag "Start on day of week"
  297. (const org-agenda-start-on-weekday)
  298. (choice :value 1
  299. (const :tag "Today" nil)
  300. (integer :tag "Weekday No.")))
  301. (list :tag "Include data from diary"
  302. (const org-agenda-include-diary)
  303. (boolean))
  304. (list :tag "Deadline Warning days"
  305. (const org-deadline-warning-days)
  306. (integer :value 1))
  307. (list :tag "Category filter preset"
  308. (const org-agenda-category-filter-preset)
  309. (list
  310. (const :format "" quote)
  311. (repeat
  312. (string :tag "+category or -category"))))
  313. (list :tag "Tags filter preset"
  314. (const org-agenda-tag-filter-preset)
  315. (list
  316. (const :format "" quote)
  317. (repeat
  318. (string :tag "+tag or -tag"))))
  319. (list :tag "Effort filter preset"
  320. (const org-agenda-effort-filter-preset)
  321. (list
  322. (const :format "" quote)
  323. (repeat
  324. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  325. (list :tag "Regexp filter preset"
  326. (const org-agenda-regexp-filter-preset)
  327. (list
  328. (const :format "" quote)
  329. (repeat
  330. (string :tag "+regexp or -regexp"))))
  331. (list :tag "Set daily/weekly entry types"
  332. (const org-agenda-entry-types)
  333. (list
  334. (const :format "" quote)
  335. (set :greedy t :value ,org-agenda-entry-types
  336. (const :deadline)
  337. (const :scheduled)
  338. (const :deadline*)
  339. (const :scheduled*)
  340. (const :timestamp)
  341. (const :sexp))))
  342. (list :tag "Standard skipping condition"
  343. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  344. (const org-agenda-skip-function)
  345. (list
  346. (const :format "" quote)
  347. (list
  348. (choice
  349. :tag "Skipping range"
  350. (const :tag "Skip entry" org-agenda-skip-entry-if)
  351. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  352. (repeat :inline t :tag "Conditions for skipping"
  353. (choice
  354. :tag "Condition type"
  355. (list :tag "Regexp matches" :inline t
  356. (const :format "" 'regexp)
  357. (regexp))
  358. (list :tag "Regexp does not match" :inline t
  359. (const :format "" 'notregexp)
  360. (regexp))
  361. (list :tag "TODO state is" :inline t
  362. (const 'todo)
  363. (choice
  364. (const :tag "Any not-done state" 'todo)
  365. (const :tag "Any done state" 'done)
  366. (const :tag "Any state" 'any)
  367. (list :tag "Keyword list"
  368. (const :format "" quote)
  369. (repeat (string :tag "Keyword")))))
  370. (list :tag "TODO state is not" :inline t
  371. (const 'nottodo)
  372. (choice
  373. (const :tag "Any not-done state" 'todo)
  374. (const :tag "Any done state" 'done)
  375. (const :tag "Any state" 'any)
  376. (list :tag "Keyword list"
  377. (const :format "" quote)
  378. (repeat (string :tag "Keyword")))))
  379. (const :tag "scheduled" 'scheduled)
  380. (const :tag "not scheduled" 'notscheduled)
  381. (const :tag "deadline" 'deadline)
  382. (const :tag "no deadline" 'notdeadline)
  383. (const :tag "timestamp" 'timestamp)
  384. (const :tag "no timestamp" 'nottimestamp))))))
  385. (list :tag "Non-standard skipping condition"
  386. :value (org-agenda-skip-function)
  387. (const org-agenda-skip-function)
  388. (sexp :tag "Function or form (quoted!)"))
  389. (list :tag "Any variable"
  390. (variable :tag "Variable")
  391. (sexp :tag "Value (sexp)"))))
  392. "Selection of examples for agenda command settings.
  393. This will be spliced into the custom type of
  394. `org-agenda-custom-commands'.")
  395. (defcustom org-agenda-custom-commands
  396. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  397. "Custom commands for the agenda.
  398. These commands will be offered on the splash screen displayed by the
  399. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  400. (key desc type match settings files)
  401. key The key (one or more characters as a string) to be associated
  402. with the command.
  403. desc A description of the command, when omitted or nil, a default
  404. description is built using MATCH.
  405. type The command type, any of the following symbols:
  406. agenda The daily/weekly agenda.
  407. todo Entries with a specific TODO keyword, in all agenda files.
  408. search Entries containing search words entry or headline.
  409. tags Tags/Property/TODO match in all agenda files.
  410. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  411. todo-tree Sparse tree of specific TODO keyword in *current* file.
  412. tags-tree Sparse tree with all tags matches in *current* file.
  413. occur-tree Occur sparse tree for *current* file.
  414. ... A user-defined function.
  415. match What to search for:
  416. - a single keyword for TODO keyword searches
  417. - a tags match expression for tags searches
  418. - a word search expression for text searches.
  419. - a regular expression for occur searches
  420. For all other commands, this should be the empty string.
  421. settings A list of option settings, similar to that in a let form, so like
  422. this: ((opt1 val1) (opt2 val2) ...). The values will be
  423. evaluated at the moment of execution, so quote them when needed.
  424. files A list of files file to write the produced agenda buffer to
  425. with the command `org-store-agenda-views'.
  426. If a file name ends in \".html\", an HTML version of the buffer
  427. is written out. If it ends in \".ps\", a postscript version is
  428. produced. Otherwise, only the plain text is written to the file.
  429. You can also define a set of commands, to create a composite agenda buffer.
  430. In this case, an entry looks like this:
  431. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  432. where
  433. desc A description string to be displayed in the dispatcher menu.
  434. cmd An agenda command, similar to the above. However, tree commands
  435. are not allowed, but instead you can get agenda and global todo list.
  436. So valid commands for a set are:
  437. (agenda \"\" settings)
  438. (alltodo \"\" settings)
  439. (stuck \"\" settings)
  440. (todo \"match\" settings files)
  441. (search \"match\" settings files)
  442. (tags \"match\" settings files)
  443. (tags-todo \"match\" settings files)
  444. Each command can carry a list of options, and another set of options can be
  445. given for the whole set of commands. Individual command options take
  446. precedence over the general options.
  447. When using several characters as key to a command, the first characters
  448. are prefix commands. For the dispatcher to display useful information, you
  449. should provide a description for the prefix, like
  450. (setq org-agenda-custom-commands
  451. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  452. (\"hl\" tags \"+HOME+Lisa\")
  453. (\"hp\" tags \"+HOME+Peter\")
  454. (\"hk\" tags \"+HOME+Kim\")))"
  455. :group 'org-agenda-custom-commands
  456. :type `(repeat
  457. (choice :value ("x" "Describe command here" tags "" nil)
  458. (list :tag "Single command"
  459. (string :tag "Access Key(s) ")
  460. (option (string :tag "Description"))
  461. (choice
  462. (const :tag "Agenda" agenda)
  463. (const :tag "TODO list" alltodo)
  464. (const :tag "Search words" search)
  465. (const :tag "Stuck projects" stuck)
  466. (const :tag "Tags/Property match (all agenda files)" tags)
  467. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  468. (const :tag "TODO keyword search (all agenda files)" todo)
  469. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  470. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  471. (const :tag "Occur tree (current buffer)" occur-tree)
  472. (sexp :tag "Other, user-defined function"))
  473. (string :tag "Match (only for some commands)")
  474. ,org-agenda-custom-commands-local-options
  475. (option (repeat :tag "Export" (file :tag "Export to"))))
  476. (list :tag "Command series, all agenda files"
  477. (string :tag "Access Key(s)")
  478. (string :tag "Description ")
  479. (repeat :tag "Component"
  480. (choice
  481. (list :tag "Agenda"
  482. (const :format "" agenda)
  483. (const :tag "" :format "" "")
  484. ,org-agenda-custom-commands-local-options)
  485. (list :tag "TODO list (all keywords)"
  486. (const :format "" alltodo)
  487. (const :tag "" :format "" "")
  488. ,org-agenda-custom-commands-local-options)
  489. (list :tag "Search words"
  490. (const :format "" search)
  491. (string :tag "Match")
  492. ,org-agenda-custom-commands-local-options)
  493. (list :tag "Stuck projects"
  494. (const :format "" stuck)
  495. (const :tag "" :format "" "")
  496. ,org-agenda-custom-commands-local-options)
  497. (list :tag "Tags search"
  498. (const :format "" tags)
  499. (string :tag "Match")
  500. ,org-agenda-custom-commands-local-options)
  501. (list :tag "Tags search, TODO entries only"
  502. (const :format "" tags-todo)
  503. (string :tag "Match")
  504. ,org-agenda-custom-commands-local-options)
  505. (list :tag "TODO keyword search"
  506. (const :format "" todo)
  507. (string :tag "Match")
  508. ,org-agenda-custom-commands-local-options)
  509. (list :tag "Other, user-defined function"
  510. (symbol :tag "function")
  511. (string :tag "Match")
  512. ,org-agenda-custom-commands-local-options)))
  513. (repeat :tag "Settings for entire command set"
  514. (list (variable :tag "Any variable")
  515. (sexp :tag "Value")))
  516. (option (repeat :tag "Export" (file :tag "Export to"))))
  517. (cons :tag "Prefix key documentation"
  518. (string :tag "Access Key(s)")
  519. (string :tag "Description ")))))
  520. (defcustom org-agenda-query-register ?o
  521. "The register holding the current query string.
  522. The purpose of this is that if you construct a query string interactively,
  523. you can then use it to define a custom command."
  524. :group 'org-agenda-custom-commands
  525. :type 'character)
  526. (defcustom org-stuck-projects
  527. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  528. "How to identify stuck projects.
  529. This is a list of four items:
  530. 1. A tags/todo/property matcher string that is used to identify a project.
  531. See the manual for a description of tag and property searches.
  532. The entire tree below a headline matched by this is considered one project.
  533. 2. A list of TODO keywords identifying non-stuck projects.
  534. If the project subtree contains any headline with one of these todo
  535. keywords, the project is considered to be not stuck. If you specify
  536. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  537. 3. A list of tags identifying non-stuck projects.
  538. If the project subtree contains any headline with one of these tags,
  539. the project is considered to be not stuck. If you specify \"*\" as
  540. a tag, any tag will mark the project unstuck. Note that this is about
  541. the explicit presence of a tag somewhere in the subtree, inherited
  542. tags do not count here. If inherited tags make a project not stuck,
  543. use \"-TAG\" in the tags part of the matcher under (1.) above.
  544. 4. An arbitrary regular expression matching non-stuck projects.
  545. If the project turns out to be not stuck, search continues also in the
  546. subtree to see if any of the subtasks have project status.
  547. See also the variable `org-tags-match-list-sublevels' which applies
  548. to projects matched by this search as well.
  549. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  550. or `C-c a #' to produce the list."
  551. :group 'org-agenda-custom-commands
  552. :type '(list
  553. (string :tag "Tags/TODO match to identify a project")
  554. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  555. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  556. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  557. (defgroup org-agenda-skip nil
  558. "Options concerning skipping parts of agenda files."
  559. :tag "Org Agenda Skip"
  560. :group 'org-agenda)
  561. (defcustom org-agenda-skip-function-global nil
  562. "Function to be called at each match during agenda construction.
  563. If this function returns nil, the current match should not be skipped.
  564. If the function decided to skip an agenda match, is must return the
  565. buffer position from which the search should be continued.
  566. This may also be a Lisp form, which will be evaluated.
  567. This variable will be applied to every agenda match, including
  568. tags/property searches and TODO lists. So try to make the test function
  569. do its checking as efficiently as possible. To implement a skipping
  570. condition just for specific agenda commands, use the variable
  571. `org-agenda-skip-function' which can be set in the options section
  572. of custom agenda commands."
  573. :group 'org-agenda-skip
  574. :type 'sexp)
  575. (defgroup org-agenda-daily/weekly nil
  576. "Options concerning the daily/weekly agenda."
  577. :tag "Org Agenda Daily/Weekly"
  578. :group 'org-agenda)
  579. (defgroup org-agenda-todo-list nil
  580. "Options concerning the global todo list agenda view."
  581. :tag "Org Agenda Todo List"
  582. :group 'org-agenda)
  583. (defgroup org-agenda-match-view nil
  584. "Options concerning the general tags/property/todo match agenda view."
  585. :tag "Org Agenda Match View"
  586. :group 'org-agenda)
  587. (defgroup org-agenda-search-view nil
  588. "Options concerning the search agenda view."
  589. :tag "Org Agenda Search View"
  590. :group 'org-agenda)
  591. (defvar org-agenda-archives-mode nil
  592. "Non-nil means the agenda will include archived items.
  593. If this is the symbol `trees', trees in the selected agenda scope
  594. that are marked with the ARCHIVE tag will be included anyway. When this is
  595. t, also all archive files associated with the current selection of agenda
  596. files will be included.")
  597. (defcustom org-agenda-restriction-lock-highlight-subtree t
  598. "Non-nil means highlight the whole subtree when restriction is active.
  599. Otherwise only highlight the headline. Highlighting the whole subtree is
  600. useful to ensure no edits happen beyond the restricted region."
  601. :group 'org-agenda
  602. :type 'boolean)
  603. (defcustom org-agenda-skip-comment-trees t
  604. "Non-nil means skip trees that start with the COMMENT keyword.
  605. When nil, these trees are also scanned by agenda commands."
  606. :group 'org-agenda-skip
  607. :type 'boolean)
  608. (defcustom org-agenda-todo-list-sublevels t
  609. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  610. When nil, the sublevels of a TODO entry are not checked, resulting in
  611. potentially much shorter TODO lists."
  612. :group 'org-agenda-skip
  613. :group 'org-agenda-todo-list
  614. :type 'boolean)
  615. (defcustom org-agenda-todo-ignore-with-date nil
  616. "Non-nil means don't show entries with a date in the global todo list.
  617. You can use this if you prefer to mark mere appointments with a TODO keyword,
  618. but don't want them to show up in the TODO list.
  619. When this is set, it also covers deadlines and scheduled items, the settings
  620. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  621. will be ignored.
  622. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  623. :group 'org-agenda-skip
  624. :group 'org-agenda-todo-list
  625. :type 'boolean)
  626. (defcustom org-agenda-todo-ignore-timestamp nil
  627. "Non-nil means don't show entries with a timestamp.
  628. This applies when creating the global todo list.
  629. Valid values are:
  630. past Don't show entries for today or in the past.
  631. future Don't show entries with a timestamp in the future.
  632. The idea behind this is that if it has a future
  633. timestamp, you don't want to think about it until the
  634. date.
  635. all Don't show any entries with a timestamp in the global todo list.
  636. The idea behind this is that by setting a timestamp, you
  637. have already \"taken care\" of this item.
  638. This variable can also have an integer as a value. If positive (N),
  639. todos with a timestamp N or more days in the future will be ignored. If
  640. negative (-N), todos with a timestamp N or more days in the past will be
  641. ignored. If 0, todos with a timestamp either today or in the future will
  642. be ignored. For example, a value of -1 will exclude todos with a
  643. timestamp in the past (yesterday or earlier), while a value of 7 will
  644. exclude todos with a timestamp a week or more in the future.
  645. See also `org-agenda-todo-ignore-with-date'.
  646. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  647. to make his option also apply to the tags-todo list."
  648. :group 'org-agenda-skip
  649. :group 'org-agenda-todo-list
  650. :version "24.1"
  651. :type '(choice
  652. (const :tag "Ignore future timestamp todos" future)
  653. (const :tag "Ignore past or present timestamp todos" past)
  654. (const :tag "Ignore all timestamp todos" all)
  655. (const :tag "Show timestamp todos" nil)
  656. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  657. (defcustom org-agenda-todo-ignore-scheduled nil
  658. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  659. This applies when creating the global todo list.
  660. Valid values are:
  661. past Don't show entries scheduled today or in the past.
  662. future Don't show entries scheduled in the future.
  663. The idea behind this is that by scheduling it, you don't want to
  664. think about it until the scheduled date.
  665. all Don't show any scheduled entries in the global todo list.
  666. The idea behind this is that by scheduling it, you have already
  667. \"taken care\" of this item.
  668. t Same as `all', for backward compatibility.
  669. This variable can also have an integer as a value. See
  670. `org-agenda-todo-ignore-timestamp' for more details.
  671. See also `org-agenda-todo-ignore-with-date'.
  672. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  673. to make his option also apply to the tags-todo list."
  674. :group 'org-agenda-skip
  675. :group 'org-agenda-todo-list
  676. :type '(choice
  677. (const :tag "Ignore future-scheduled todos" future)
  678. (const :tag "Ignore past- or present-scheduled todos" past)
  679. (const :tag "Ignore all scheduled todos" all)
  680. (const :tag "Ignore all scheduled todos (compatibility)" t)
  681. (const :tag "Show scheduled todos" nil)
  682. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  683. (defcustom org-agenda-todo-ignore-deadlines nil
  684. "Non-nil means ignore some deadline TODO items when making TODO list.
  685. There are different motivations for using different values, please think
  686. carefully when configuring this variable.
  687. This applies when creating the global todo list.
  688. Valid values are:
  689. near Don't show near deadline entries. A deadline is near when it is
  690. closer than `org-deadline-warning-days' days. The idea behind this
  691. is that such items will appear in the agenda anyway.
  692. far Don't show TODO entries where a deadline has been defined, but
  693. the deadline is not near. This is useful if you don't want to
  694. use the todo list to figure out what to do now.
  695. past Don't show entries with a deadline timestamp for today or in the past.
  696. future Don't show entries with a deadline timestamp in the future, not even
  697. when they become `near' ones. Use it with caution.
  698. all Ignore all TODO entries that do have a deadline.
  699. t Same as `near', for backward compatibility.
  700. This variable can also have an integer as a value. See
  701. `org-agenda-todo-ignore-timestamp' for more details.
  702. See also `org-agenda-todo-ignore-with-date'.
  703. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  704. to make his option also apply to the tags-todo list."
  705. :group 'org-agenda-skip
  706. :group 'org-agenda-todo-list
  707. :type '(choice
  708. (const :tag "Ignore near deadlines" near)
  709. (const :tag "Ignore near deadlines (compatibility)" t)
  710. (const :tag "Ignore far deadlines" far)
  711. (const :tag "Ignore all TODOs with a deadlines" all)
  712. (const :tag "Show all TODOs, even if they have a deadline" nil)
  713. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  714. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  715. "Time unit to use when possibly ignoring an agenda item.
  716. See the docstring of various `org-agenda-todo-ignore-*' options.
  717. The default is to compare time stamps using days. An item is thus
  718. considered to be in the future if it is at least one day after today.
  719. Non-nil means to compare time stamps using seconds. An item is then
  720. considered future if it has a time value later than current time."
  721. :group 'org-agenda-skip
  722. :group 'org-agenda-todo-list
  723. :version "24.4"
  724. :package-version '(Org . "8.0")
  725. :type '(choice
  726. (const :tag "Compare time with days" nil)
  727. (const :tag "Compare time with seconds" t)))
  728. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  729. "Non-nil means honor todo-list ignores options also in tags-todo search.
  730. The variables
  731. `org-agenda-todo-ignore-with-date',
  732. `org-agenda-todo-ignore-timestamp',
  733. `org-agenda-todo-ignore-scheduled',
  734. `org-agenda-todo-ignore-deadlines'
  735. make the global TODO list skip entries that have time stamps of certain
  736. kinds. If this option is set, the same options will also apply for the
  737. tags-todo search, which is the general tags/property matcher
  738. restricted to unfinished TODO entries only."
  739. :group 'org-agenda-skip
  740. :group 'org-agenda-todo-list
  741. :group 'org-agenda-match-view
  742. :type 'boolean)
  743. (defcustom org-agenda-skip-scheduled-if-done nil
  744. "Non-nil means don't show scheduled items in agenda when they are done.
  745. This is relevant for the daily/weekly agenda, not for the TODO list. And
  746. it applies only to the actual date of the scheduling. Warnings about
  747. an item with a past scheduling dates are always turned off when the item
  748. is DONE."
  749. :group 'org-agenda-skip
  750. :group 'org-agenda-daily/weekly
  751. :type 'boolean)
  752. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  753. "Non-nil means skip scheduling line if same entry shows because of deadline.
  754. In the agenda of today, an entry can show up multiple times
  755. because it is both scheduled and has a nearby deadline, and maybe
  756. a plain time stamp as well.
  757. When this variable is nil, the entry will be shown several times.
  758. When set to t, then only the deadline is shown and the fact that
  759. the entry is scheduled today or was scheduled previously is not
  760. shown.
  761. When set to the symbol `not-today', skip scheduled previously,
  762. but not scheduled today.
  763. When set to the symbol `repeated-after-deadline', skip scheduled
  764. items if they are repeated beyond the current deadline."
  765. :group 'org-agenda-skip
  766. :group 'org-agenda-daily/weekly
  767. :type '(choice
  768. (const :tag "Never" nil)
  769. (const :tag "Always" t)
  770. (const :tag "Not when scheduled today" not-today)
  771. (const :tag "When repeated past deadline" repeated-after-deadline)))
  772. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  773. "Non-nil means skip timestamp line if same entry shows because of deadline.
  774. In the agenda of today, an entry can show up multiple times
  775. because it has both a plain timestamp and has a nearby deadline.
  776. When this variable is t, then only the deadline is shown and the
  777. fact that the entry has a timestamp for or including today is not
  778. shown. When this variable is nil, the entry will be shown
  779. several times."
  780. :group 'org-agenda-skip
  781. :group 'org-agenda-daily/weekly
  782. :version "24.1"
  783. :type '(choice
  784. (const :tag "Never" nil)
  785. (const :tag "Always" t)))
  786. (defcustom org-agenda-skip-deadline-if-done nil
  787. "Non-nil means don't show deadlines when the corresponding item is done.
  788. When nil, the deadline is still shown and should give you a happy feeling.
  789. This is relevant for the daily/weekly agenda. And it applied only to the
  790. actually date of the deadline. Warnings about approaching and past-due
  791. deadlines are always turned off when the item is DONE."
  792. :group 'org-agenda-skip
  793. :group 'org-agenda-daily/weekly
  794. :type 'boolean)
  795. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  796. "Non-nil means skip deadline prewarning when entry is also scheduled.
  797. This will apply on all days where a prewarning for the deadline would
  798. be shown, but not at the day when the entry is actually due. On that day,
  799. the deadline will be shown anyway.
  800. This variable may be set to nil, t, the symbol `pre-scheduled',
  801. or a number which will then give the number of days before the actual
  802. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  803. eliminates the deadline prewarning only prior to the scheduled date.
  804. This can be used in a workflow where the first showing of the deadline will
  805. trigger you to schedule it, and then you don't want to be reminded of it
  806. because you will take care of it on the day when scheduled."
  807. :group 'org-agenda-skip
  808. :group 'org-agenda-daily/weekly
  809. :version "24.1"
  810. :type '(choice
  811. (const :tag "Always show prewarning" nil)
  812. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  813. (const :tag "Remove prewarning if entry is scheduled" t)
  814. (integer :tag "Restart prewarning N days before deadline")))
  815. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  816. "Non-nil means skip scheduled delay when entry also has a deadline.
  817. This variable may be set to nil, t, the symbol `post-deadline',
  818. or a number which will then give the number of days after the actual
  819. scheduled date when the delay should expire. The symbol `post-deadline'
  820. eliminates the schedule delay when the date is posterior to the deadline."
  821. :group 'org-agenda-skip
  822. :group 'org-agenda-daily/weekly
  823. :version "24.4"
  824. :package-version '(Org . "8.0")
  825. :type '(choice
  826. (const :tag "Always honor delay" nil)
  827. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  828. (const :tag "Ignore delay if entry has a deadline" t)
  829. (integer :tag "Honor delay up until N days after the scheduled date")))
  830. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  831. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  832. When non-nil, after the search for timestamps has matched once in an
  833. entry, the rest of the entry will not be searched."
  834. :group 'org-agenda-skip
  835. :type 'boolean)
  836. (defcustom org-agenda-skip-timestamp-if-done nil
  837. "Non-nil means don't select item by timestamp or -range if it is DONE."
  838. :group 'org-agenda-skip
  839. :group 'org-agenda-daily/weekly
  840. :type 'boolean)
  841. (defcustom org-agenda-dim-blocked-tasks t
  842. "Non-nil means dim blocked tasks in the agenda display.
  843. This causes some overhead during agenda construction, but if you
  844. have turned on `org-enforce-todo-dependencies',
  845. `org-enforce-todo-checkbox-dependencies', or any other blocking
  846. mechanism, this will create useful feedback in the agenda.
  847. Instead of t, this variable can also have the value `invisible'.
  848. Then blocked tasks will be invisible and only become visible when
  849. they become unblocked. An exemption to this behavior is when a task is
  850. blocked because of unchecked checkboxes below it. Since checkboxes do
  851. not show up in the agenda views, making this task invisible you remove any
  852. trace from agenda views that there is something to do. Therefore, a task
  853. that is blocked because of checkboxes will never be made invisible, it
  854. will only be dimmed."
  855. :group 'org-agenda-daily/weekly
  856. :group 'org-agenda-todo-list
  857. :version "24.3"
  858. :type '(choice
  859. (const :tag "Do not dim" nil)
  860. (const :tag "Dim to a gray face" t)
  861. (const :tag "Make invisible" invisible)))
  862. (defcustom org-timeline-show-empty-dates 3
  863. "Non-nil means `org-timeline' also shows dates without an entry.
  864. When nil, only the days which actually have entries are shown.
  865. When t, all days between the first and the last date are shown.
  866. When an integer, show also empty dates, but if there is a gap of more than
  867. N days, just insert a special line indicating the size of the gap."
  868. :group 'org-agenda-skip
  869. :type '(choice
  870. (const :tag "None" nil)
  871. (const :tag "All" t)
  872. (integer :tag "at most")))
  873. (defgroup org-agenda-startup nil
  874. "Options concerning initial settings in the Agenda in Org Mode."
  875. :tag "Org Agenda Startup"
  876. :group 'org-agenda)
  877. (defcustom org-agenda-menu-show-matcher t
  878. "Non-nil means show the match string in the agenda dispatcher menu.
  879. When nil, the matcher string is not shown, but is put into the help-echo
  880. property so than moving the mouse over the command shows it.
  881. Setting it to nil is good if matcher strings are very long and/or if
  882. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  883. :group 'org-agenda
  884. :version "24.1"
  885. :type 'boolean)
  886. (defcustom org-agenda-menu-two-columns nil
  887. "Non-nil means, use two columns to show custom commands in the dispatcher.
  888. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  889. to nil."
  890. :group 'org-agenda
  891. :version "24.1"
  892. :type 'boolean)
  893. (defcustom org-agenda-finalize-hook nil
  894. "Hook run just before displaying an agenda buffer.
  895. The buffer is still writable when the hook is called.
  896. You can modify some of the buffer substrings but you should be
  897. extra careful not to modify the text properties of the agenda
  898. headlines as the agenda display heavily relies on them."
  899. :group 'org-agenda-startup
  900. :type 'hook)
  901. (defcustom org-agenda-mouse-1-follows-link nil
  902. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  903. A longer mouse click will still set point. Needs to be set
  904. before org.el is loaded."
  905. :group 'org-agenda-startup
  906. :type 'boolean)
  907. (defcustom org-agenda-start-with-follow-mode nil
  908. "The initial value of follow mode in a newly created agenda window."
  909. :group 'org-agenda-startup
  910. :type 'boolean)
  911. (defcustom org-agenda-follow-indirect nil
  912. "Non-nil means `org-agenda-follow-mode' displays only the
  913. current item's tree, in an indirect buffer."
  914. :group 'org-agenda
  915. :version "24.1"
  916. :type 'boolean)
  917. (defcustom org-agenda-show-outline-path t
  918. "Non-nil means show outline path in echo area after line motion."
  919. :group 'org-agenda-startup
  920. :type 'boolean)
  921. (defcustom org-agenda-start-with-entry-text-mode nil
  922. "The initial value of entry-text-mode in a newly created agenda window."
  923. :group 'org-agenda-startup
  924. :type 'boolean)
  925. (defcustom org-agenda-entry-text-maxlines 5
  926. "Number of text lines to be added when `E' is pressed in the agenda.
  927. Note that this variable only used during agenda display. Add add entry text
  928. when exporting the agenda, configure the variable
  929. `org-agenda-add-entry-ext-maxlines'."
  930. :group 'org-agenda
  931. :type 'integer)
  932. (defcustom org-agenda-entry-text-exclude-regexps nil
  933. "List of regular expressions to clean up entry text.
  934. The complete matches of all regular expressions in this list will be
  935. removed from entry text before it is shown in the agenda."
  936. :group 'org-agenda
  937. :type '(repeat (regexp)))
  938. (defcustom org-agenda-entry-text-leaders " > "
  939. "Text prepended to the entry text in agenda buffers."
  940. :version "24.4"
  941. :package-version '(Org . "8.0")
  942. :group 'org-agenda
  943. :type 'string)
  944. (defvar org-agenda-entry-text-cleanup-hook nil
  945. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  946. This cleanup is done in a temporary buffer, so the function may inspect and
  947. change the entire buffer.
  948. Some default stuff like drawers and scheduling/deadline dates will already
  949. have been removed when this is called, as will any matches for regular
  950. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  951. (defvar org-agenda-include-inactive-timestamps nil
  952. "Non-nil means include inactive time stamps in agenda and timeline.
  953. Dynamically scoped.")
  954. (defgroup org-agenda-windows nil
  955. "Options concerning the windows used by the Agenda in Org Mode."
  956. :tag "Org Agenda Windows"
  957. :group 'org-agenda)
  958. (defcustom org-agenda-window-setup 'reorganize-frame
  959. "How the agenda buffer should be displayed.
  960. Possible values for this option are:
  961. current-window Show agenda in the current window, keeping all other windows.
  962. other-window Use `switch-to-buffer-other-window' to display agenda.
  963. only-window Show agenda, deleting all other windows.
  964. reorganize-frame Show only two windows on the current frame, the current
  965. window and the agenda.
  966. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  967. Also, when exiting the agenda, kill that frame.
  968. See also the variable `org-agenda-restore-windows-after-quit'."
  969. :group 'org-agenda-windows
  970. :type '(choice
  971. (const current-window)
  972. (const other-frame)
  973. (const other-window)
  974. (const only-window)
  975. (const reorganize-frame)))
  976. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  977. "The min and max height of the agenda window as a fraction of frame height.
  978. The value of the variable is a cons cell with two numbers between 0 and 1.
  979. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  980. :group 'org-agenda-windows
  981. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  982. (defcustom org-agenda-restore-windows-after-quit nil
  983. "Non-nil means restore window configuration upon exiting agenda.
  984. Before the window configuration is changed for displaying the agenda,
  985. the current status is recorded. When the agenda is exited with
  986. `q' or `x' and this option is set, the old state is restored. If
  987. `org-agenda-window-setup' is `other-frame', the value of this
  988. option will be ignored."
  989. :group 'org-agenda-windows
  990. :type 'boolean)
  991. (defcustom org-agenda-span 'week
  992. "Number of days to include in overview display.
  993. Can be day, week, month, year, or any number of days.
  994. Custom commands can set this variable in the options section."
  995. :group 'org-agenda-daily/weekly
  996. :type '(choice (const :tag "Day" day)
  997. (const :tag "Week" week)
  998. (const :tag "Fortnight" fortnight)
  999. (const :tag "Month" month)
  1000. (const :tag "Year" year)
  1001. (integer :tag "Custom")))
  1002. (defcustom org-agenda-start-on-weekday 1
  1003. "Non-nil means start the overview always on the specified weekday.
  1004. 0 denotes Sunday, 1 denotes Monday, etc.
  1005. When nil, always start on the current day.
  1006. Custom commands can set this variable in the options section."
  1007. :group 'org-agenda-daily/weekly
  1008. :type '(choice (const :tag "Today" nil)
  1009. (integer :tag "Weekday No.")))
  1010. (defcustom org-agenda-show-all-dates t
  1011. "Non-nil means `org-agenda' shows every day in the selected range.
  1012. When nil, only the days which actually have entries are shown."
  1013. :group 'org-agenda-daily/weekly
  1014. :type 'boolean)
  1015. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1016. "Format string for displaying dates in the agenda.
  1017. Used by the daily/weekly agenda and by the timeline. This should be
  1018. a format string understood by `format-time-string', or a function returning
  1019. the formatted date as a string. The function must take a single argument,
  1020. a calendar-style date list like (month day year)."
  1021. :group 'org-agenda-daily/weekly
  1022. :type '(choice
  1023. (string :tag "Format string")
  1024. (function :tag "Function")))
  1025. (defun org-agenda-format-date-aligned (date)
  1026. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1027. This function makes sure that dates are aligned for easy reading."
  1028. (require 'cal-iso)
  1029. (let* ((dayname (calendar-day-name date))
  1030. (day (cadr date))
  1031. (day-of-week (calendar-day-of-week date))
  1032. (month (car date))
  1033. (monthname (calendar-month-name month))
  1034. (year (nth 2 date))
  1035. (iso-week (org-days-to-iso-week
  1036. (calendar-absolute-from-gregorian date)))
  1037. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1038. (1- year))
  1039. ((and (= month 12) (<= iso-week 1))
  1040. (1+ year))
  1041. (t year)))
  1042. (weekstring (if (= day-of-week 1)
  1043. (format " W%02d" iso-week)
  1044. "")))
  1045. (format "%-10s %2d %s %4d%s"
  1046. dayname day monthname year weekstring)))
  1047. (defcustom org-agenda-time-leading-zero nil
  1048. "Non-nil means use leading zero for military times in agenda.
  1049. For example, 9:30am would become 09:30 rather than 9:30."
  1050. :group 'org-agenda-daily/weekly
  1051. :version "24.1"
  1052. :type 'boolean)
  1053. (defcustom org-agenda-timegrid-use-ampm nil
  1054. "When set, show AM/PM style timestamps on the timegrid."
  1055. :group 'org-agenda
  1056. :version "24.1"
  1057. :type 'boolean)
  1058. (defun org-agenda-time-of-day-to-ampm (time)
  1059. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1060. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1061. (minute (substring time -2))
  1062. (ampm "am"))
  1063. (cond
  1064. ((equal hour-number 12)
  1065. (setq ampm "pm"))
  1066. ((> hour-number 12)
  1067. (setq ampm "pm")
  1068. (setq hour-number (- hour-number 12))))
  1069. (concat
  1070. (if org-agenda-time-leading-zero
  1071. (format "%02d" hour-number)
  1072. (format "%02s" (number-to-string hour-number)))
  1073. ":" minute ampm)))
  1074. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1075. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1076. (if org-agenda-timegrid-use-ampm
  1077. (org-agenda-time-of-day-to-ampm time)
  1078. time))
  1079. (defcustom org-agenda-weekend-days '(6 0)
  1080. "Which days are weekend?
  1081. These days get the special face `org-agenda-date-weekend' in the agenda
  1082. and timeline buffers."
  1083. :group 'org-agenda-daily/weekly
  1084. :type '(set :greedy t
  1085. (const :tag "Monday" 1)
  1086. (const :tag "Tuesday" 2)
  1087. (const :tag "Wednesday" 3)
  1088. (const :tag "Thursday" 4)
  1089. (const :tag "Friday" 5)
  1090. (const :tag "Saturday" 6)
  1091. (const :tag "Sunday" 0)))
  1092. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1093. "Non-nil means jump to today when moving a past date forward in time.
  1094. When using S-right in the agenda to move a a date forward, and the date
  1095. stamp currently points to the past, the first key press will move it
  1096. to today. WHen nil, just move one day forward even if the date stays
  1097. in the past."
  1098. :group 'org-agenda-daily/weekly
  1099. :version "24.1"
  1100. :type 'boolean)
  1101. (defcustom org-agenda-include-diary nil
  1102. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1103. Custom commands can set this variable in the options section."
  1104. :group 'org-agenda-daily/weekly
  1105. :type 'boolean)
  1106. (defcustom org-agenda-include-deadlines t
  1107. "If non-nil, include entries within their deadline warning period.
  1108. Custom commands can set this variable in the options section."
  1109. :group 'org-agenda-daily/weekly
  1110. :version "24.1"
  1111. :type 'boolean)
  1112. (defcustom org-agenda-repeating-timestamp-show-all t
  1113. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1114. When set to a list of strings, only show occurrences of repeating
  1115. stamps for these TODO keywords. When nil, only one occurrence is
  1116. shown, either today or the nearest into the future."
  1117. :group 'org-agenda-daily/weekly
  1118. :type '(choice
  1119. (const :tag "Show repeating stamps" t)
  1120. (repeat :tag "Show repeating stamps for these TODO keywords"
  1121. (string :tag "TODO Keyword"))
  1122. (const :tag "Don't show repeating stamps" nil)))
  1123. (defcustom org-scheduled-past-days 10000
  1124. "Number of days to continue listing scheduled items not marked DONE.
  1125. When an item is scheduled on a date, it shows up in the agenda on
  1126. this day and will be listed until it is marked done or for the
  1127. number of days given here."
  1128. :group 'org-agenda-daily/weekly
  1129. :type 'integer)
  1130. (defcustom org-agenda-log-mode-items '(closed clock)
  1131. "List of items that should be shown in agenda log mode.
  1132. \\<org-agenda-mode-map>\
  1133. This list may contain the following symbols:
  1134. closed Show entries that have been closed on that day.
  1135. clock Show entries that have received clocked time on that day.
  1136. state Show all logged state changes.
  1137. Note that instead of changing this variable, you can also press \
  1138. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1139. the agenda to display all available LOG items temporarily."
  1140. :group 'org-agenda-daily/weekly
  1141. :type '(set :greedy t (const closed) (const clock) (const state)))
  1142. (defcustom org-agenda-clock-consistency-checks
  1143. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1144. :gap-ok-around ("4:00")
  1145. :default-face ((:background "DarkRed") (:foreground "white"))
  1146. :overlap-face nil :gap-face nil :no-end-time-face nil
  1147. :long-face nil :short-face nil)
  1148. "This is a property list, with the following keys:
  1149. :max-duration Mark clocking chunks that are longer than this time.
  1150. This is a time string like \"HH:MM\", or the number
  1151. of minutes as an integer.
  1152. :min-duration Mark clocking chunks that are shorter that this.
  1153. This is a time string like \"HH:MM\", or the number
  1154. of minutes as an integer.
  1155. :max-gap Mark gaps between clocking chunks that are longer than
  1156. this duration. A number of minutes, or a string
  1157. like \"HH:MM\".
  1158. :gap-ok-around List of times during the day which are usually not working
  1159. times. When a gap is detected, but the gap contains any
  1160. of these times, the gap is *not* reported. For example,
  1161. if this is (\"4:00\" \"13:00\") then gaps that contain
  1162. 4:00 in the morning (i.e. the night) and 13:00
  1163. (i.e. a typical lunch time) do not cause a warning.
  1164. You should have at least one time during the night in this
  1165. list, or otherwise the first task each morning will trigger
  1166. a warning because it follows a long gap.
  1167. Furthermore, the following properties can be used to define faces for
  1168. issue display.
  1169. :default-face the default face, if the specific face is undefined
  1170. :overlap-face face for overlapping clocks
  1171. :gap-face face for gaps between clocks
  1172. :no-end-time-face face for incomplete clocks
  1173. :long-face face for clock intervals that are too long
  1174. :short-face face for clock intervals that are too short"
  1175. :group 'org-agenda-daily/weekly
  1176. :group 'org-clock
  1177. :version "24.1"
  1178. :type 'plist)
  1179. (defcustom org-agenda-log-mode-add-notes t
  1180. "Non-nil means add first line of notes to log entries in agenda views.
  1181. If a log item like a state change or a clock entry is associated with
  1182. notes, the first line of these notes will be added to the entry in the
  1183. agenda display."
  1184. :group 'org-agenda-daily/weekly
  1185. :type 'boolean)
  1186. (defcustom org-agenda-start-with-log-mode nil
  1187. "The initial value of log-mode in a newly created agenda window.
  1188. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1189. explanations on the possible values."
  1190. :group 'org-agenda-startup
  1191. :group 'org-agenda-daily/weekly
  1192. :type '(choice (const :tag "Don't show log items" nil)
  1193. (const :tag "Show only log items" only)
  1194. (const :tag "Show all possible log items" clockcheck)
  1195. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1196. (choice (const :tag "Show closed log items" closed)
  1197. (const :tag "Show clocked log items" clock)
  1198. (const :tag "Show all logged state changes" state)))))
  1199. (defcustom org-agenda-start-with-clockreport-mode nil
  1200. "The initial value of clockreport-mode in a newly created agenda window."
  1201. :group 'org-agenda-startup
  1202. :group 'org-agenda-daily/weekly
  1203. :type 'boolean)
  1204. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1205. "Property list with parameters for the clocktable in clockreport mode.
  1206. This is the display mode that shows a clock table in the daily/weekly
  1207. agenda, the properties for this dynamic block can be set here.
  1208. The usual clocktable parameters are allowed here, but you cannot set
  1209. the properties :name, :tstart, :tend, :block, and :scope - these will
  1210. be overwritten to make sure the content accurately reflects the
  1211. current display in the agenda."
  1212. :group 'org-agenda-daily/weekly
  1213. :type 'plist)
  1214. (defcustom org-agenda-search-view-always-boolean nil
  1215. "Non-nil means the search string is interpreted as individual parts.
  1216. The search string for search view can either be interpreted as a phrase,
  1217. or as a list of snippets that define a boolean search for a number of
  1218. strings.
  1219. When this is non-nil, the string will be split on whitespace, and each
  1220. snippet will be searched individually, and all must match in order to
  1221. select an entry. A snippet is then a single string of non-white
  1222. characters, or a string in double quotes, or a regexp in {} braces.
  1223. If a snippet is preceded by \"-\", the snippet must *not* match.
  1224. \"+\" is syntactic sugar for positive selection. Each snippet may
  1225. be found as a full word or a partial word, but see the variable
  1226. `org-agenda-search-view-force-full-words'.
  1227. When this is nil, search will look for the entire search phrase as one,
  1228. with each space character matching any amount of whitespace, including
  1229. line breaks.
  1230. Even when this is nil, you can still switch to Boolean search dynamically
  1231. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1232. is a regexp marked with braces like \"{abc}\", this will also switch to
  1233. boolean search."
  1234. :group 'org-agenda-search-view
  1235. :version "24.1"
  1236. :type 'boolean)
  1237. (defvaralias 'org-agenda-search-view-search-words-only
  1238. 'org-agenda-search-view-always-boolean)
  1239. (defcustom org-agenda-search-view-force-full-words nil
  1240. "Non-nil means, search words must be matches as complete words.
  1241. When nil, they may also match part of a word."
  1242. :group 'org-agenda-search-view
  1243. :version "24.1"
  1244. :type 'boolean)
  1245. (defcustom org-agenda-search-view-max-outline-level 0
  1246. "Maximum outline level to display in search view.
  1247. E.g. when this is set to 1, the search view will only
  1248. show headlines of level 1. When set to 0, the default
  1249. value, don't limit agenda view by outline level."
  1250. :group 'org-agenda-search-view
  1251. :version "24.4"
  1252. :package-version '(Org . "8.3")
  1253. :type 'integer)
  1254. (defgroup org-agenda-time-grid nil
  1255. "Options concerning the time grid in the Org-mode Agenda."
  1256. :tag "Org Agenda Time Grid"
  1257. :group 'org-agenda)
  1258. (defcustom org-agenda-search-headline-for-time t
  1259. "Non-nil means search headline for a time-of-day.
  1260. If the headline contains a time-of-day in one format or another, it will
  1261. be used to sort the entry into the time sequence of items for a day.
  1262. Some people have time stamps in the headline that refer to the creation
  1263. time or so, and then this produces an unwanted side effect. If this is
  1264. the case for your, use this variable to turn off searching the headline
  1265. for a time."
  1266. :group 'org-agenda-time-grid
  1267. :type 'boolean)
  1268. (defcustom org-agenda-use-time-grid t
  1269. "Non-nil means show a time grid in the agenda schedule.
  1270. A time grid is a set of lines for specific times (like every two hours between
  1271. 8:00 and 20:00). The items scheduled for a day at specific times are
  1272. sorted in between these lines.
  1273. For details about when the grid will be shown, and what it will look like, see
  1274. the variable `org-agenda-time-grid'."
  1275. :group 'org-agenda-time-grid
  1276. :type 'boolean)
  1277. (defcustom org-agenda-time-grid
  1278. '((daily today require-timed)
  1279. "----------------"
  1280. (800 1000 1200 1400 1600 1800 2000))
  1281. "The settings for time grid for agenda display.
  1282. This is a list of three items. The first item is again a list. It contains
  1283. symbols specifying conditions when the grid should be displayed:
  1284. daily if the agenda shows a single day
  1285. weekly if the agenda shows an entire week
  1286. today show grid on current date, independent of daily/weekly display
  1287. require-timed show grid only if at least one item has a time specification
  1288. remove-match skip grid times already present in an entry
  1289. The second item is a string which will be placed behind the grid time.
  1290. The third item is a list of integers, indicating the times that should have
  1291. a grid line."
  1292. :group 'org-agenda-time-grid
  1293. :type
  1294. '(list
  1295. (set :greedy t :tag "Grid Display Options"
  1296. (const :tag "Show grid in single day agenda display" daily)
  1297. (const :tag "Show grid in weekly agenda display" weekly)
  1298. (const :tag "Always show grid for today" today)
  1299. (const :tag "Show grid only if any timed entries are present"
  1300. require-timed)
  1301. (const :tag "Skip grid times already present in an entry"
  1302. remove-match))
  1303. (string :tag "Grid String")
  1304. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1305. (defcustom org-agenda-show-current-time-in-grid t
  1306. "Non-nil means show the current time in the time grid."
  1307. :group 'org-agenda-time-grid
  1308. :version "24.1"
  1309. :type 'boolean)
  1310. (defcustom org-agenda-current-time-string
  1311. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1312. "The string for the current time marker in the agenda."
  1313. :group 'org-agenda-time-grid
  1314. :version "24.1"
  1315. :type 'string)
  1316. (defgroup org-agenda-sorting nil
  1317. "Options concerning sorting in the Org-mode Agenda."
  1318. :tag "Org Agenda Sorting"
  1319. :group 'org-agenda)
  1320. (defcustom org-agenda-sorting-strategy
  1321. '((agenda habit-down time-up priority-down category-keep)
  1322. (todo priority-down category-keep)
  1323. (tags priority-down category-keep)
  1324. (search category-keep))
  1325. "Sorting structure for the agenda items of a single day.
  1326. This is a list of symbols which will be used in sequence to determine
  1327. if an entry should be listed before another entry. The following
  1328. symbols are recognized:
  1329. time-up Put entries with time-of-day indications first, early first
  1330. time-down Put entries with time-of-day indications first, late first
  1331. timestamp-up Sort by any timestamp, early first
  1332. timestamp-down Sort by any timestamp, late first
  1333. scheduled-up Sort by scheduled timestamp, early first
  1334. scheduled-down Sort by scheduled timestamp, late first
  1335. deadline-up Sort by deadline timestamp, early first
  1336. deadline-down Sort by deadline timestamp, late first
  1337. ts-up Sort by active timestamp, early first
  1338. ts-down Sort by active timestamp, late first
  1339. tsia-up Sort by inactive timestamp, early first
  1340. tsia-down Sort by inactive timestamp, late first
  1341. category-keep Keep the default order of categories, corresponding to the
  1342. sequence in `org-agenda-files'.
  1343. category-up Sort alphabetically by category, A-Z.
  1344. category-down Sort alphabetically by category, Z-A.
  1345. tag-up Sort alphabetically by last tag, A-Z.
  1346. tag-down Sort alphabetically by last tag, Z-A.
  1347. priority-up Sort numerically by priority, high priority last.
  1348. priority-down Sort numerically by priority, high priority first.
  1349. todo-state-up Sort by todo state, tasks that are done last.
  1350. todo-state-down Sort by todo state, tasks that are done first.
  1351. effort-up Sort numerically by estimated effort, high effort last.
  1352. effort-down Sort numerically by estimated effort, high effort first.
  1353. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1354. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1355. habit-up Put entries that are habits first
  1356. habit-down Put entries that are habits last
  1357. alpha-up Sort headlines alphabetically
  1358. alpha-down Sort headlines alphabetically, reversed
  1359. The different possibilities will be tried in sequence, and testing stops
  1360. if one comparison returns a \"not-equal\". For example, the default
  1361. '(time-up category-keep priority-down)
  1362. means: Pull out all entries having a specified time of day and sort them,
  1363. in order to make a time schedule for the current day the first thing in the
  1364. agenda listing for the day. Of the entries without a time indication, keep
  1365. the grouped in categories, don't sort the categories, but keep them in
  1366. the sequence given in `org-agenda-files'. Within each category sort by
  1367. priority.
  1368. Leaving out `category-keep' would mean that items will be sorted across
  1369. categories by priority.
  1370. Instead of a single list, this can also be a set of list for specific
  1371. contents, with a context symbol in the car of the list, any of
  1372. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1373. Custom commands can bind this variable in the options section."
  1374. :group 'org-agenda-sorting
  1375. :type `(choice
  1376. (repeat :tag "General" ,org-sorting-choice)
  1377. (list :tag "Individually"
  1378. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1379. (repeat ,org-sorting-choice))
  1380. (cons (const :tag "Strategy for TODO lists" todo)
  1381. (repeat ,org-sorting-choice))
  1382. (cons (const :tag "Strategy for Tags matches" tags)
  1383. (repeat ,org-sorting-choice))
  1384. (cons (const :tag "Strategy for search matches" search)
  1385. (repeat ,org-sorting-choice)))))
  1386. (defcustom org-agenda-cmp-user-defined nil
  1387. "A function to define the comparison `user-defined'.
  1388. This function must receive two arguments, agenda entry a and b.
  1389. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1390. the user comparison, return nil.
  1391. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1392. part of an agenda sorting strategy."
  1393. :group 'org-agenda-sorting
  1394. :type 'symbol)
  1395. (defcustom org-sort-agenda-notime-is-late t
  1396. "Non-nil means items without time are considered late.
  1397. This is only relevant for sorting. When t, items which have no explicit
  1398. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1399. do have a time. When nil, the default time is before 0:00. You can use this
  1400. option to decide if the schedule for today should come before or after timeless
  1401. agenda entries."
  1402. :group 'org-agenda-sorting
  1403. :type 'boolean)
  1404. (defcustom org-sort-agenda-noeffort-is-high t
  1405. "Non-nil means items without effort estimate are sorted as high effort.
  1406. This also applies when filtering an agenda view with respect to the
  1407. < or > effort operator. Then, tasks with no effort defined will be treated
  1408. as tasks with high effort.
  1409. When nil, such items are sorted as 0 minutes effort."
  1410. :group 'org-agenda-sorting
  1411. :type 'boolean)
  1412. (defgroup org-agenda-line-format nil
  1413. "Options concerning the entry prefix in the Org-mode agenda display."
  1414. :tag "Org Agenda Line Format"
  1415. :group 'org-agenda)
  1416. (defcustom org-agenda-prefix-format
  1417. '((agenda . " %i %-12:c%?-12t% s")
  1418. (timeline . " % s")
  1419. (todo . " %i %-12:c")
  1420. (tags . " %i %-12:c")
  1421. (search . " %i %-12:c"))
  1422. "Format specifications for the prefix of items in the agenda views.
  1423. An alist with five entries, each for the different agenda types. The
  1424. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1425. The values are format strings.
  1426. This format works similar to a printf format, with the following meaning:
  1427. %c the category of the item, \"Diary\" for entries from the diary,
  1428. or as given by the CATEGORY keyword or derived from the file name
  1429. %e the effort required by the item
  1430. %l the level of the item (insert X space(s) if item is of level X)
  1431. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1432. %T the last tag of the item (ignore inherited tags, which come first)
  1433. %t the HH:MM time-of-day specification if one applies to the entry
  1434. %s Scheduling/Deadline information, a short string
  1435. %b show breadcrumbs, i.e., the names of the higher levels
  1436. %(expression) Eval EXPRESSION and replace the control string
  1437. by the result
  1438. All specifiers work basically like the standard `%s' of printf, but may
  1439. contain two additional characters: a question mark just after the `%'
  1440. and a whitespace/punctuation character just before the final letter.
  1441. If the first character after `%' is a question mark, the entire field
  1442. will only be included if the corresponding value applies to the current
  1443. entry. This is useful for fields which should have fixed width when
  1444. present, but zero width when absent. For example, \"%?-12t\" will
  1445. result in a 12 character time field if a time of the day is specified,
  1446. but will completely disappear in entries which do not contain a time.
  1447. If there is punctuation or whitespace character just before the
  1448. final format letter, this character will be appended to the field
  1449. value if the value is not empty. For example, the format
  1450. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1451. the category is empty, no additional colon is inserted.
  1452. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1453. which means:
  1454. - Indent the line with two space characters
  1455. - Give the category a 12 chars wide field, padded with whitespace on
  1456. the right (because of `-'). Append a colon if there is a category
  1457. (because of `:').
  1458. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1459. time, don't put in an empty field, just skip it (because of '?').
  1460. - Finally, put the scheduling information.
  1461. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1462. `org-agenda-remove-tags'.
  1463. Custom commands can set this variable in the options section."
  1464. :type '(choice
  1465. (string :tag "General format")
  1466. (list :greedy t :tag "View dependent"
  1467. (cons (const agenda) (string :tag "Format"))
  1468. (cons (const timeline) (string :tag "Format"))
  1469. (cons (const todo) (string :tag "Format"))
  1470. (cons (const tags) (string :tag "Format"))
  1471. (cons (const search) (string :tag "Format"))))
  1472. :group 'org-agenda-line-format)
  1473. (defvar org-prefix-format-compiled nil
  1474. "The compiled prefix format and associated variables.
  1475. This is a list where first element is a list of variable bindings, and second
  1476. element is the compiled format expression. See the variable
  1477. `org-agenda-prefix-format'.")
  1478. (defcustom org-agenda-todo-keyword-format "%-1s"
  1479. "Format for the TODO keyword in agenda lines.
  1480. Set this to something like \"%-12s\" if you want all TODO keywords
  1481. to occupy a fixed space in the agenda display."
  1482. :group 'org-agenda-line-format
  1483. :type 'string)
  1484. (defcustom org-agenda-diary-sexp-prefix nil
  1485. "A regexp that matches part of a diary sexp entry
  1486. which should be treated as scheduling/deadline information in
  1487. `org-agenda'.
  1488. For example, you can use this to extract the `diary-remind-message' from
  1489. `diary-remind' entries."
  1490. :group 'org-agenda-line-format
  1491. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1492. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1493. "Text preceding timerange entries in the agenda view.
  1494. This is a list with two strings. The first applies when the range
  1495. is entirely on one day. The second applies if the range spans several days.
  1496. The strings may have two \"%d\" format specifiers which will be filled
  1497. with the sequence number of the days, and the total number of days in the
  1498. range, respectively."
  1499. :group 'org-agenda-line-format
  1500. :type '(list
  1501. (string :tag "Deadline today ")
  1502. (choice :tag "Deadline relative"
  1503. (string :tag "Format string")
  1504. (function))))
  1505. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1506. "Text preceding scheduled items in the agenda view.
  1507. This is a list with two strings. The first applies when the item is
  1508. scheduled on the current day. The second applies when it has been scheduled
  1509. previously, it may contain a %d indicating that this is the nth time that
  1510. this item is scheduled, due to automatic rescheduling of unfinished items
  1511. for the following day. So this number is one larger than the number of days
  1512. that passed since this item was scheduled first."
  1513. :group 'org-agenda-line-format
  1514. :version "24.4"
  1515. :package-version '(Org . "8.0")
  1516. :type '(list
  1517. (string :tag "Scheduled today ")
  1518. (string :tag "Scheduled previously")))
  1519. (defcustom org-agenda-inactive-leader "["
  1520. "Text preceding item pulled into the agenda by inactive time stamps.
  1521. These entries are added to the agenda when pressing \"[\"."
  1522. :group 'org-agenda-line-format
  1523. :version "24.1"
  1524. :type 'string)
  1525. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1526. "Text preceding deadline items in the agenda view.
  1527. This is a list with three strings. The first applies when the item has its
  1528. deadline on the current day. The second applies when the deadline is in the
  1529. future, the third one when it is in the past. The strings may contain %d
  1530. to capture the number of days."
  1531. :group 'org-agenda-line-format
  1532. :version "24.4"
  1533. :package-version '(Org . "8.0")
  1534. :type '(list
  1535. (string :tag "Deadline today ")
  1536. (string :tag "Deadline in the future ")
  1537. (string :tag "Deadline in the past ")))
  1538. (defcustom org-agenda-remove-times-when-in-prefix t
  1539. "Non-nil means remove duplicate time specifications in agenda items.
  1540. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1541. time-of-day specification in a headline or diary entry is extracted and
  1542. placed into the prefix. If this option is non-nil, the original specification
  1543. \(a timestamp or -range, or just a plain time(range) specification like
  1544. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1545. cluttered.
  1546. The option can be t or nil. It may also be the symbol `beg', indicating
  1547. that the time should only be removed when it is located at the beginning of
  1548. the headline/diary entry."
  1549. :group 'org-agenda-line-format
  1550. :type '(choice
  1551. (const :tag "Always" t)
  1552. (const :tag "Never" nil)
  1553. (const :tag "When at beginning of entry" beg)))
  1554. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1555. "Non-nil means remove time ranges specifications in agenda
  1556. items that span on several days."
  1557. :group 'org-agenda-line-format
  1558. :version "24.1"
  1559. :type 'boolean)
  1560. (defcustom org-agenda-default-appointment-duration nil
  1561. "Default duration for appointments that only have a starting time.
  1562. When nil, no duration is specified in such cases.
  1563. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1564. :group 'org-agenda-line-format
  1565. :type '(choice
  1566. (integer :tag "Minutes")
  1567. (const :tag "No default duration")))
  1568. (defcustom org-agenda-show-inherited-tags t
  1569. "Non-nil means show inherited tags in each agenda line.
  1570. When this option is set to `always', it take precedences over
  1571. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1572. in every agenda.
  1573. When this option is set to t (the default), inherited tags are
  1574. shown when they are available, i.e. when the value of
  1575. `org-agenda-use-tag-inheritance' has been taken into account.
  1576. This can be set to a list of agenda types in which the agenda
  1577. must display the inherited tags. Available types are `todo',
  1578. `agenda', `search' and `timeline'.
  1579. When set to nil, never show inherited tags in agenda lines."
  1580. :group 'org-agenda-line-format
  1581. :group 'org-agenda
  1582. :version "24.3"
  1583. :type '(choice
  1584. (const :tag "Show inherited tags when available" t)
  1585. (const :tag "Always show inherited tags" always)
  1586. (repeat :tag "Show inherited tags only in selected agenda types"
  1587. (symbol :tag "Agenda type"))))
  1588. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1589. "List of agenda view types where to use tag inheritance.
  1590. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1591. controlled by `org-use-tag-inheritance'. In other agenda types,
  1592. `org-use-tag-inheritance' is not used for the selection of the
  1593. agenda entries. Still, you may want the agenda to be aware of
  1594. the inherited tags anyway, e.g. for later tag filtering.
  1595. Allowed value are `todo', `search', `timeline' and `agenda'.
  1596. This variable has no effect if `org-agenda-show-inherited-tags'
  1597. is set to `always'. In that case, the agenda is aware of those
  1598. tags.
  1599. The default value sets tags in every agenda type. Setting this
  1600. option to nil will speed up non-tags agenda view a lot."
  1601. :group 'org-agenda
  1602. :version "24.3"
  1603. :type '(choice
  1604. (const :tag "Use tag inheritance in all agenda types" t)
  1605. (repeat :tag "Use tag inheritance in selected agenda types"
  1606. (symbol :tag "Agenda type"))))
  1607. (defcustom org-agenda-hide-tags-regexp nil
  1608. "Regular expression used to filter away specific tags in agenda views.
  1609. This means that these tags will be present, but not be shown in the agenda
  1610. line. Secondary filtering will still work on the hidden tags.
  1611. Nil means don't hide any tags."
  1612. :group 'org-agenda-line-format
  1613. :type '(choice
  1614. (const :tag "Hide none" nil)
  1615. (string :tag "Regexp ")))
  1616. (defcustom org-agenda-remove-tags nil
  1617. "Non-nil means remove the tags from the headline copy in the agenda.
  1618. When this is the symbol `prefix', only remove tags when
  1619. `org-agenda-prefix-format' contains a `%T' specifier."
  1620. :group 'org-agenda-line-format
  1621. :type '(choice
  1622. (const :tag "Always" t)
  1623. (const :tag "Never" nil)
  1624. (const :tag "When prefix format contains %T" prefix)))
  1625. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1626. 'org-agenda-remove-tags)
  1627. (defcustom org-agenda-tags-column -80
  1628. "Shift tags in agenda items to this column.
  1629. If this number is positive, it specifies the column. If it is negative,
  1630. it means that the tags should be flushright to that column. For example,
  1631. -80 works well for a normal 80 character screen."
  1632. :group 'org-agenda-line-format
  1633. :type 'integer)
  1634. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1635. (defcustom org-agenda-fontify-priorities 'cookies
  1636. "Non-nil means highlight low and high priorities in agenda.
  1637. When t, the highest priority entries are bold, lowest priority italic.
  1638. However, settings in `org-priority-faces' will overrule these faces.
  1639. When this variable is the symbol `cookies', only fontify the
  1640. cookies, not the entire task.
  1641. This may also be an association list of priority faces, whose
  1642. keys are the character values of `org-highest-priority',
  1643. `org-default-priority', and `org-lowest-priority' (the default values
  1644. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1645. color as a string, or a list like `(:background \"Red\")'.
  1646. If it is a color, the variable `org-faces-easy-properties'
  1647. determines if it is a foreground or a background color."
  1648. :group 'org-agenda-line-format
  1649. :type '(choice
  1650. (const :tag "Never" nil)
  1651. (const :tag "Defaults" t)
  1652. (const :tag "Cookies only" cookies)
  1653. (repeat :tag "Specify"
  1654. (list (character :tag "Priority" :value ?A)
  1655. (choice :tag "Face "
  1656. (string :tag "Color")
  1657. (sexp :tag "Face"))))))
  1658. (defcustom org-agenda-day-face-function nil
  1659. "Function called to determine what face should be used to display a day.
  1660. The only argument passed to that function is the day. It should
  1661. returns a face, or nil if does not want to specify a face and let
  1662. the normal rules apply."
  1663. :group 'org-agenda-line-format
  1664. :version "24.1"
  1665. :type '(choice (const nil) (function)))
  1666. (defcustom org-agenda-category-icon-alist nil
  1667. "Alist of category icon to be displayed in agenda views.
  1668. Each entry should have the following format:
  1669. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1670. Where CATEGORY-REGEXP is a regexp matching the categories where
  1671. the icon should be displayed.
  1672. FILE-OR-DATA either a file path or a string containing image data.
  1673. The other fields can be omitted safely if not needed:
  1674. TYPE indicates the image type.
  1675. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1676. image data.
  1677. PROPS are additional image attributes to assign to the image,
  1678. like, e.g. `:ascent center'.
  1679. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1680. If you want to set the display properties yourself, just put a
  1681. list as second element:
  1682. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1683. For example, to display a 16px horizontal space for Emacs
  1684. category, you can use:
  1685. (\"Emacs\" \\='(space . (:width (16))))"
  1686. :group 'org-agenda-line-format
  1687. :version "24.1"
  1688. :type '(alist :key-type (string :tag "Regexp matching category")
  1689. :value-type (choice (list :tag "Icon"
  1690. (string :tag "File or data")
  1691. (symbol :tag "Type")
  1692. (boolean :tag "Data?")
  1693. (repeat :tag "Extra image properties" :inline t symbol))
  1694. (list :tag "Display properties" sexp))))
  1695. (defgroup org-agenda-column-view nil
  1696. "Options concerning column view in the agenda."
  1697. :tag "Org Agenda Column View"
  1698. :group 'org-agenda)
  1699. (defcustom org-agenda-view-columns-initially nil
  1700. "When non-nil, switch to columns view right after creating the agenda."
  1701. :group 'org-agenda-column-view
  1702. :type 'boolean
  1703. :version "25.1"
  1704. :package-version '(Org . "9.0")
  1705. :safe #'booleanp)
  1706. (defcustom org-agenda-columns-show-summaries t
  1707. "Non-nil means show summaries for columns displayed in the agenda view."
  1708. :group 'org-agenda-column-view
  1709. :type 'boolean)
  1710. (defcustom org-agenda-columns-compute-summary-properties t
  1711. "Non-nil means recompute all summary properties before column view.
  1712. When column view in the agenda is listing properties that have a summary
  1713. operator, it can go to all relevant buffers and recompute the summaries
  1714. there. This can mean overhead for the agenda column view, but is necessary
  1715. to have thing up to date.
  1716. As a special case, a CLOCKSUM property also makes sure that the clock
  1717. computations are current."
  1718. :group 'org-agenda-column-view
  1719. :type 'boolean)
  1720. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1721. "Non-nil means the duration of an appointment will add to day effort.
  1722. The property to which appointment durations will be added is the one given
  1723. in the option `org-effort-property'. If an appointment does not have
  1724. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1725. is not set, an appointment without end time will not contribute to the time
  1726. estimate."
  1727. :group 'org-agenda-column-view
  1728. :type 'boolean)
  1729. (defcustom org-agenda-auto-exclude-function nil
  1730. "A function called with a tag to decide if it is filtered on \
  1731. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1732. The sole argument to the function, which is called once for each
  1733. possible tag, is a string giving the name of the tag. The
  1734. function should return either nil if the tag should be included
  1735. as normal, or \"-<TAG>\" to exclude the tag.
  1736. Note that for the purpose of tag filtering, only the lower-case version of
  1737. all tags will be considered, so that this function will only ever see
  1738. the lower-case version of all tags."
  1739. :group 'org-agenda
  1740. :type '(choice (const nil) (function)))
  1741. (defcustom org-agenda-bulk-custom-functions nil
  1742. "Alist of characters and custom functions for bulk actions.
  1743. For example, this value makes those two functions available:
  1744. \\='((?R set-category)
  1745. (?C bulk-cut))
  1746. With selected entries in an agenda buffer, `B R' will call
  1747. the custom function `set-category' on the selected entries.
  1748. Note that functions in this alist don't need to be quoted."
  1749. :type '(alist :key-type character :value-type (group function))
  1750. :version "24.1"
  1751. :group 'org-agenda)
  1752. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1753. "Execute BODY with point at location given by `org-hd-marker' property.
  1754. If STRING is non-nil, the text property will be fetched from position 0
  1755. in that string. If STRING is nil, it will be fetched from the beginning
  1756. of the current line."
  1757. (org-with-gensyms (marker)
  1758. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1759. 'org-hd-marker ,string)))
  1760. (with-current-buffer (marker-buffer ,marker)
  1761. (save-excursion
  1762. (goto-char ,marker)
  1763. ,@body)))))
  1764. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1765. (defun org-add-agenda-custom-command (entry)
  1766. "Replace or add a command in `org-agenda-custom-commands'.
  1767. This is mostly for hacking and trying a new command - once the command
  1768. works you probably want to add it to `org-agenda-custom-commands' for good."
  1769. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1770. (if ass
  1771. (setcdr ass (cdr entry))
  1772. (push entry org-agenda-custom-commands))))
  1773. ;;; Define the org-agenda-mode
  1774. (defvar org-agenda-mode-map (make-sparse-keymap)
  1775. "Keymap for `org-agenda-mode'.")
  1776. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1777. (defvar org-agenda-menu) ; defined later in this file.
  1778. (defvar org-agenda-restrict nil) ; defined later in this file.
  1779. (defvar org-agenda-follow-mode nil)
  1780. (defvar org-agenda-entry-text-mode nil)
  1781. (defvar org-agenda-clockreport-mode nil)
  1782. (defvar org-agenda-show-log nil)
  1783. (defvar org-agenda-redo-command nil)
  1784. (defvar org-agenda-query-string nil)
  1785. (defvar org-agenda-mode-hook nil
  1786. "Hook run after `org-agenda-mode' is turned on.
  1787. The buffer is still writable when this hook is called.")
  1788. (defvar org-agenda-type nil)
  1789. (defvar org-agenda-force-single-file nil)
  1790. (defvar org-agenda-bulk-marked-entries nil
  1791. "List of markers that refer to marked entries in the agenda.")
  1792. (defvar org-agenda-current-date nil
  1793. "Active date when building the agenda.")
  1794. ;;; Multiple agenda buffers support
  1795. (defcustom org-agenda-sticky nil
  1796. "Non-nil means agenda q key will bury agenda buffers.
  1797. Agenda commands will then show existing buffer instead of generating new ones.
  1798. When nil, `q' will kill the single agenda buffer."
  1799. :group 'org-agenda
  1800. :version "24.3"
  1801. :type 'boolean)
  1802. ;;;###autoload
  1803. (defun org-toggle-sticky-agenda (&optional arg)
  1804. "Toggle `org-agenda-sticky'."
  1805. (interactive "P")
  1806. (let ((new-value (if arg
  1807. (> (prefix-numeric-value arg) 0)
  1808. (not org-agenda-sticky))))
  1809. (if (equal new-value org-agenda-sticky)
  1810. (and (called-interactively-p 'interactive)
  1811. (message "Sticky agenda was already %s"
  1812. (if org-agenda-sticky "enabled" "disabled")))
  1813. (setq org-agenda-sticky new-value)
  1814. (org-agenda-kill-all-agenda-buffers)
  1815. (and (called-interactively-p 'interactive)
  1816. (message "Sticky agenda %s"
  1817. (if org-agenda-sticky "enabled" "disabled"))))))
  1818. (defvar org-agenda-buffer nil
  1819. "Agenda buffer currently being generated.")
  1820. (defvar org-agenda-last-prefix-arg nil)
  1821. (defvar org-agenda-this-buffer-name nil)
  1822. (defvar org-agenda-doing-sticky-redo nil)
  1823. (defvar org-agenda-this-buffer-is-sticky nil)
  1824. (defvar org-agenda-last-indirect-buffer nil
  1825. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1826. (defconst org-agenda-local-vars
  1827. '(org-agenda-this-buffer-name
  1828. org-agenda-undo-list
  1829. org-agenda-pending-undo-list
  1830. org-agenda-follow-mode
  1831. org-agenda-entry-text-mode
  1832. org-agenda-clockreport-mode
  1833. org-agenda-show-log
  1834. org-agenda-redo-command
  1835. org-agenda-query-string
  1836. org-agenda-type
  1837. org-agenda-bulk-marked-entries
  1838. org-agenda-undo-has-started-in
  1839. org-agenda-info
  1840. org-agenda-pre-window-conf
  1841. org-agenda-columns-active
  1842. org-agenda-tag-filter
  1843. org-agenda-category-filter
  1844. org-agenda-top-headline-filter
  1845. org-agenda-regexp-filter
  1846. org-agenda-effort-filter
  1847. org-agenda-markers
  1848. org-agenda-last-search-view-search-was-boolean
  1849. org-agenda-last-indirect-buffer
  1850. org-agenda-filtered-by-category
  1851. org-agenda-filter-form
  1852. org-agenda-cycle-counter
  1853. org-agenda-last-prefix-arg)
  1854. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1855. (defun org-agenda-mode ()
  1856. "Mode for time-sorted view on action items in Org-mode files.
  1857. The following commands are available:
  1858. \\{org-agenda-mode-map}"
  1859. (interactive)
  1860. (cond (org-agenda-doing-sticky-redo
  1861. ;; Refreshing sticky agenda-buffer
  1862. ;;
  1863. ;; Preserve the value of `org-agenda-local-vars' variables,
  1864. ;; while letting `kill-all-local-variables' kill the rest
  1865. (let ((save (buffer-local-variables)))
  1866. (kill-all-local-variables)
  1867. (mapc 'make-local-variable org-agenda-local-vars)
  1868. (dolist (elem save)
  1869. (let ((var (car elem))
  1870. (val (cdr elem)))
  1871. (when (and val
  1872. (member var org-agenda-local-vars))
  1873. (set var val)))))
  1874. (setq-local org-agenda-this-buffer-is-sticky t))
  1875. (org-agenda-sticky
  1876. ;; Creating a sticky Agenda buffer for the first time
  1877. (kill-all-local-variables)
  1878. (mapc 'make-local-variable org-agenda-local-vars)
  1879. (setq-local org-agenda-this-buffer-is-sticky t))
  1880. (t
  1881. ;; Creating a non-sticky agenda buffer
  1882. (kill-all-local-variables)
  1883. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1884. (setq org-agenda-undo-list nil
  1885. org-agenda-pending-undo-list nil
  1886. org-agenda-bulk-marked-entries nil)
  1887. (setq major-mode 'org-agenda-mode)
  1888. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1889. (setq-local font-lock-global-modes (list 'not major-mode))
  1890. (setq mode-name "Org-Agenda")
  1891. (setq indent-tabs-mode nil)
  1892. (use-local-map org-agenda-mode-map)
  1893. (easy-menu-add org-agenda-menu)
  1894. (if org-startup-truncated (setq truncate-lines t))
  1895. (setq-local line-move-visual nil)
  1896. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1897. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1898. ;; Make sure properties are removed when copying text
  1899. (add-hook 'filter-buffer-substring-functions
  1900. (lambda (fun start end delete)
  1901. (substring-no-properties (funcall fun start end delete)))
  1902. nil t)
  1903. (unless org-agenda-keep-modes
  1904. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1905. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
  1906. (setq org-agenda-show-log org-agenda-start-with-log-mode)
  1907. (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
  1908. (add-to-invisibility-spec '(org-filtered))
  1909. (add-to-invisibility-spec '(org-link))
  1910. (easy-menu-change
  1911. '("Agenda") "Agenda Files"
  1912. (append
  1913. (list
  1914. (vector
  1915. (if (get 'org-agenda-files 'org-restrict)
  1916. "Restricted to single file"
  1917. "Edit File List")
  1918. '(org-edit-agenda-file-list)
  1919. (not (get 'org-agenda-files 'org-restrict)))
  1920. "--")
  1921. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1922. (org-agenda-set-mode-name)
  1923. (apply
  1924. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1925. (list 'org-agenda-mode-hook)))
  1926. (substitute-key-definition 'undo 'org-agenda-undo
  1927. org-agenda-mode-map global-map)
  1928. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1929. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1930. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1931. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1932. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1933. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1934. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1935. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1936. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1937. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1938. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1939. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1940. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1941. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1942. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1943. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1944. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1945. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1946. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1947. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1948. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1949. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1950. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1951. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1952. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1954. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1955. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1956. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1957. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1958. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1959. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1960. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1961. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1962. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1963. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1964. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1965. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1966. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1967. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1968. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1969. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1970. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1971. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1972. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1973. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1974. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1975. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1976. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1977. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1978. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1979. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1980. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1981. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1982. (while l (org-defkey org-agenda-mode-map
  1983. (int-to-string (pop l)) 'digit-argument)))
  1984. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1985. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1986. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1987. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1988. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1989. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1990. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1991. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1992. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1993. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1994. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1995. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1996. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1997. 'org-clock-modify-effort-estimate)
  1998. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1999. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2000. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2001. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2002. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2003. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2004. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2005. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2006. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2007. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2008. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2009. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2010. (substitute-key-definition 'next-line 'org-agenda-next-line
  2011. org-agenda-mode-map global-map)
  2012. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2013. org-agenda-mode-map global-map)
  2014. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2015. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2016. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2017. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2018. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2019. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2020. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2021. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2022. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2023. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2024. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2025. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2026. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2027. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2028. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2029. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2030. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2031. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2033. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2034. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2035. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2036. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2037. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2038. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2039. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2040. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2041. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2042. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2043. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2044. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2045. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2046. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2047. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2048. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2049. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2050. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2051. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2052. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2053. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2054. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2055. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2056. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2057. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2059. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2060. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2061. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2062. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2063. (when org-agenda-mouse-1-follows-link
  2064. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2065. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2066. '("Agenda"
  2067. ("Agenda Files")
  2068. "--"
  2069. ("Agenda Dates"
  2070. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2071. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2072. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2073. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2074. "--"
  2075. ("View"
  2076. ["Day View" org-agenda-day-view
  2077. :active (org-agenda-check-type nil 'agenda)
  2078. :style radio :selected (eq org-agenda-current-span 'day)
  2079. :keys "v d (or just d)"]
  2080. ["Week View" org-agenda-week-view
  2081. :active (org-agenda-check-type nil 'agenda)
  2082. :style radio :selected (eq org-agenda-current-span 'week)
  2083. :keys "v w"]
  2084. ["Fortnight View" org-agenda-fortnight-view
  2085. :active (org-agenda-check-type nil 'agenda)
  2086. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2087. :keys "v f"]
  2088. ["Month View" org-agenda-month-view
  2089. :active (org-agenda-check-type nil 'agenda)
  2090. :style radio :selected (eq org-agenda-current-span 'month)
  2091. :keys "v m"]
  2092. ["Year View" org-agenda-year-view
  2093. :active (org-agenda-check-type nil 'agenda)
  2094. :style radio :selected (eq org-agenda-current-span 'year)
  2095. :keys "v y"]
  2096. "--"
  2097. ["Include Diary" org-agenda-toggle-diary
  2098. :style toggle :selected org-agenda-include-diary
  2099. :active (org-agenda-check-type nil 'agenda)]
  2100. ["Include Deadlines" org-agenda-toggle-deadlines
  2101. :style toggle :selected org-agenda-include-deadlines
  2102. :active (org-agenda-check-type nil 'agenda)]
  2103. ["Use Time Grid" org-agenda-toggle-time-grid
  2104. :style toggle :selected org-agenda-use-time-grid
  2105. :active (org-agenda-check-type nil 'agenda)]
  2106. "--"
  2107. ["Show clock report" org-agenda-clockreport-mode
  2108. :style toggle :selected org-agenda-clockreport-mode
  2109. :active (org-agenda-check-type nil 'agenda)]
  2110. ["Show some entry text" org-agenda-entry-text-mode
  2111. :style toggle :selected org-agenda-entry-text-mode
  2112. :active t]
  2113. "--"
  2114. ["Show Logbook entries" org-agenda-log-mode
  2115. :style toggle :selected org-agenda-show-log
  2116. :active (org-agenda-check-type nil 'agenda 'timeline)
  2117. :keys "v l (or just l)"]
  2118. ["Include archived trees" org-agenda-archives-mode
  2119. :style toggle :selected org-agenda-archives-mode :active t
  2120. :keys "v a"]
  2121. ["Include archive files" (org-agenda-archives-mode t)
  2122. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2123. :keys "v A"]
  2124. "--"
  2125. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2126. ["Write view to file" org-agenda-write t]
  2127. ["Rebuild buffer" org-agenda-redo t]
  2128. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2129. "--"
  2130. ["Show original entry" org-agenda-show t]
  2131. ["Go To (other window)" org-agenda-goto t]
  2132. ["Go To (this window)" org-agenda-switch-to t]
  2133. ["Capture with cursor date" org-agenda-capture t]
  2134. ["Follow Mode" org-agenda-follow-mode
  2135. :style toggle :selected org-agenda-follow-mode :active t]
  2136. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2137. "--"
  2138. ("TODO"
  2139. ["Cycle TODO" org-agenda-todo t]
  2140. ["Next TODO set" org-agenda-todo-nextset t]
  2141. ["Previous TODO set" org-agenda-todo-previousset t]
  2142. ["Add note" org-agenda-add-note t])
  2143. ("Archive/Refile/Delete"
  2144. ["Archive default" org-agenda-archive-default t]
  2145. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2146. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2147. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2148. ["Archive subtree" org-agenda-archive t]
  2149. "--"
  2150. ["Refile" org-agenda-refile t]
  2151. "--"
  2152. ["Delete subtree" org-agenda-kill t])
  2153. ("Bulk action"
  2154. ["Mark entry" org-agenda-bulk-mark t]
  2155. ["Mark all" org-agenda-bulk-mark-all t]
  2156. ["Unmark entry" org-agenda-bulk-unmark t]
  2157. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2158. ["Toggle mark" org-agenda-bulk-toggle t]
  2159. ["Toggle all" org-agenda-bulk-toggle-all t]
  2160. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2161. ["Act on all marked" org-agenda-bulk-action t]
  2162. "--"
  2163. ("Tags and Properties"
  2164. ["Show all Tags" org-agenda-show-tags t]
  2165. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2166. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2167. "--"
  2168. ["Column View" org-columns t])
  2169. ("Deadline/Schedule"
  2170. ["Schedule" org-agenda-schedule t]
  2171. ["Set Deadline" org-agenda-deadline t]
  2172. "--"
  2173. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2174. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2175. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2176. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2177. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2178. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2179. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2180. ("Clock and Effort"
  2181. ["Clock in" org-agenda-clock-in t]
  2182. ["Clock out" org-agenda-clock-out t]
  2183. ["Clock cancel" org-agenda-clock-cancel t]
  2184. ["Goto running clock" org-clock-goto t]
  2185. "--"
  2186. ["Set Effort" org-agenda-set-effort t]
  2187. ["Change clocked effort" org-clock-modify-effort-estimate
  2188. (org-clock-is-active)])
  2189. ("Priority"
  2190. ["Set Priority" org-agenda-priority t]
  2191. ["Increase Priority" org-agenda-priority-up t]
  2192. ["Decrease Priority" org-agenda-priority-down t]
  2193. ["Show Priority" org-show-priority t])
  2194. ("Calendar/Diary"
  2195. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2196. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2197. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2198. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2199. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2200. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2201. "--"
  2202. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2203. "--"
  2204. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2205. "--"
  2206. ("MobileOrg"
  2207. ["Push Files and Views" org-mobile-push t]
  2208. ["Get Captured and Flagged" org-mobile-pull t]
  2209. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2210. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2211. "--"
  2212. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2213. "--"
  2214. ["Quit" org-agenda-quit t]
  2215. ["Exit and Release Buffers" org-agenda-exit t]
  2216. ))
  2217. ;;; Agenda undo
  2218. (defvar org-agenda-allow-remote-undo t
  2219. "Non-nil means allow remote undo from the agenda buffer.")
  2220. (defvar org-agenda-undo-has-started-in nil
  2221. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2222. (defun org-agenda-undo ()
  2223. "Undo a remote editing step in the agenda.
  2224. This undoes changes both in the agenda buffer and in the remote buffer
  2225. that have been changed along."
  2226. (interactive)
  2227. (or org-agenda-allow-remote-undo
  2228. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2229. (if (not (eq this-command last-command))
  2230. (setq org-agenda-undo-has-started-in nil
  2231. org-agenda-pending-undo-list org-agenda-undo-list))
  2232. (if (not org-agenda-pending-undo-list)
  2233. (user-error "No further undo information"))
  2234. (let* ((entry (pop org-agenda-pending-undo-list))
  2235. buf line cmd rembuf)
  2236. (setq cmd (pop entry) line (pop entry))
  2237. (setq rembuf (nth 2 entry))
  2238. (org-with-remote-undo rembuf
  2239. (while (bufferp (setq buf (pop entry)))
  2240. (if (pop entry)
  2241. (with-current-buffer buf
  2242. (let ((last-undo-buffer buf)
  2243. (inhibit-read-only t))
  2244. (unless (memq buf org-agenda-undo-has-started-in)
  2245. (push buf org-agenda-undo-has-started-in)
  2246. (make-local-variable 'pending-undo-list)
  2247. (undo-start))
  2248. (while (and pending-undo-list
  2249. (listp pending-undo-list)
  2250. (not (car pending-undo-list)))
  2251. (pop pending-undo-list))
  2252. (undo-more 1))))))
  2253. (org-goto-line line)
  2254. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2255. (defun org-verify-change-for-undo (l1 l2)
  2256. "Verify that a real change occurred between the undo lists L1 and L2."
  2257. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2258. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2259. (not (eq l1 l2)))
  2260. ;;; Agenda dispatch
  2261. (defvar org-agenda-restrict-begin (make-marker))
  2262. (defvar org-agenda-restrict-end (make-marker))
  2263. (defvar org-agenda-last-dispatch-buffer nil)
  2264. (defvar org-agenda-overriding-restriction nil)
  2265. (defcustom org-agenda-custom-commands-contexts nil
  2266. "Alist of custom agenda keys and contextual rules.
  2267. For example, if you have a custom agenda command \"p\" and you
  2268. want this command to be accessible only from plain text files,
  2269. use this:
  2270. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2271. Here are the available contexts definitions:
  2272. in-file: command displayed only in matching files
  2273. in-mode: command displayed only in matching modes
  2274. not-in-file: command not displayed in matching files
  2275. not-in-mode: command not displayed in matching modes
  2276. in-buffer: command displayed only in matching buffers
  2277. not-in-buffer: command not displayed in matching buffers
  2278. [function]: a custom function taking no argument
  2279. If you define several checks, the agenda command will be
  2280. accessible if there is at least one valid check.
  2281. You can also bind a key to another agenda custom command
  2282. depending on contextual rules.
  2283. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2284. Here it means: in .txt files, use \"p\" as the key for the
  2285. agenda command otherwise associated with \"q\". (The command
  2286. originally associated with \"q\" is not displayed to avoid
  2287. duplicates.)"
  2288. :version "24.3"
  2289. :group 'org-agenda-custom-commands
  2290. :type '(repeat (list :tag "Rule"
  2291. (string :tag " Agenda key")
  2292. (string :tag "Replace by command")
  2293. (repeat :tag "Available when"
  2294. (choice
  2295. (cons :tag "Condition"
  2296. (choice
  2297. (const :tag "In file" in-file)
  2298. (const :tag "Not in file" not-in-file)
  2299. (const :tag "In buffer" in-buffer)
  2300. (const :tag "Not in buffer" not-in-buffer)
  2301. (const :tag "In mode" in-mode)
  2302. (const :tag "Not in mode" not-in-mode))
  2303. (regexp))
  2304. (function :tag "Custom function"))))))
  2305. (defcustom org-agenda-max-entries nil
  2306. "Maximum number of entries to display in an agenda.
  2307. This can be nil (no limit) or an integer or an alist of agenda
  2308. types with an associated number of entries to display in this
  2309. type."
  2310. :version "24.4"
  2311. :package-version '(Org . "8.0")
  2312. :group 'org-agenda-custom-commands
  2313. :type '(choice (symbol :tag "No limit" nil)
  2314. (integer :tag "Max number of entries")
  2315. (repeat
  2316. (cons (choice :tag "Agenda type"
  2317. (const agenda)
  2318. (const todo)
  2319. (const tags)
  2320. (const search)
  2321. (const timeline))
  2322. (integer :tag "Max number of entries")))))
  2323. (defcustom org-agenda-max-todos nil
  2324. "Maximum number of TODOs to display in an agenda.
  2325. This can be nil (no limit) or an integer or an alist of agenda
  2326. types with an associated number of entries to display in this
  2327. type."
  2328. :version "24.4"
  2329. :package-version '(Org . "8.0")
  2330. :group 'org-agenda-custom-commands
  2331. :type '(choice (symbol :tag "No limit" nil)
  2332. (integer :tag "Max number of TODOs")
  2333. (repeat
  2334. (cons (choice :tag "Agenda type"
  2335. (const agenda)
  2336. (const todo)
  2337. (const tags)
  2338. (const search)
  2339. (const timeline))
  2340. (integer :tag "Max number of TODOs")))))
  2341. (defcustom org-agenda-max-tags nil
  2342. "Maximum number of tagged entries to display in an agenda.
  2343. This can be nil (no limit) or an integer or an alist of agenda
  2344. types with an associated number of entries to display in this
  2345. type."
  2346. :version "24.4"
  2347. :package-version '(Org . "8.0")
  2348. :group 'org-agenda-custom-commands
  2349. :type '(choice (symbol :tag "No limit" nil)
  2350. (integer :tag "Max number of tagged entries")
  2351. (repeat
  2352. (cons (choice :tag "Agenda type"
  2353. (const agenda)
  2354. (const todo)
  2355. (const tags)
  2356. (const search)
  2357. (const timeline))
  2358. (integer :tag "Max number of tagged entries")))))
  2359. (defcustom org-agenda-max-effort nil
  2360. "Maximum cumulated effort duration for the agenda.
  2361. This can be nil (no limit) or a number of minutes (as an integer)
  2362. or an alist of agenda types with an associated number of minutes
  2363. to limit entries to in this type."
  2364. :version "24.4"
  2365. :package-version '(Org . "8.0")
  2366. :group 'org-agenda-custom-commands
  2367. :type '(choice (symbol :tag "No limit" nil)
  2368. (integer :tag "Max number of minutes")
  2369. (repeat
  2370. (cons (choice :tag "Agenda type"
  2371. (const agenda)
  2372. (const todo)
  2373. (const tags)
  2374. (const search)
  2375. (const timeline))
  2376. (integer :tag "Max number of minutes")))))
  2377. (defvar org-agenda-keep-restricted-file-list nil)
  2378. (defvar org-keys nil)
  2379. (defvar org-match nil)
  2380. ;;;###autoload
  2381. (defun org-agenda (&optional arg org-keys restriction)
  2382. "Dispatch agenda commands to collect entries to the agenda buffer.
  2383. Prompts for a command to execute. Any prefix arg will be passed
  2384. on to the selected command. The default selections are:
  2385. a Call `org-agenda-list' to display the agenda for current day or week.
  2386. t Call `org-todo-list' to display the global todo list.
  2387. T Call `org-todo-list' to display the global todo list, select only
  2388. entries with a specific TODO keyword (the user gets a prompt).
  2389. m Call `org-tags-view' to display headlines with tags matching
  2390. a condition (the user is prompted for the condition).
  2391. M Like `m', but select only TODO entries, no ordinary headlines.
  2392. L Create a timeline for the current buffer.
  2393. e Export views to associated files.
  2394. s Search entries for keywords.
  2395. S Search entries for keywords, only with TODO keywords.
  2396. / Multi occur across all agenda files and also files listed
  2397. in `org-agenda-text-search-extra-files'.
  2398. < Restrict agenda commands to buffer, subtree, or region.
  2399. Press several times to get the desired effect.
  2400. > Remove a previous restriction.
  2401. # List \"stuck\" projects.
  2402. ! Configure what \"stuck\" means.
  2403. C Configure custom agenda commands.
  2404. More commands can be added by configuring the variable
  2405. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2406. searches can be pre-defined in this way.
  2407. If the current buffer is in Org-mode and visiting a file, you can also
  2408. first press `<' once to indicate that the agenda should be temporarily
  2409. \(until the next use of \\[org-agenda]) restricted to the current file.
  2410. Pressing `<' twice means to restrict to the current subtree or region
  2411. \(if active)."
  2412. (interactive "P")
  2413. (catch 'exit
  2414. (let* ((prefix-descriptions nil)
  2415. (org-agenda-buffer-name org-agenda-buffer-name)
  2416. (org-agenda-window-setup (if (equal (buffer-name)
  2417. org-agenda-buffer-name)
  2418. 'current-window
  2419. org-agenda-window-setup))
  2420. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2421. (org-agenda-custom-commands
  2422. ;; normalize different versions
  2423. (delq nil
  2424. (mapcar
  2425. (lambda (x)
  2426. (cond ((stringp (cdr x))
  2427. (push x prefix-descriptions)
  2428. nil)
  2429. ((stringp (nth 1 x)) x)
  2430. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2431. (t (cons (car x) (cons "" (cdr x))))))
  2432. org-agenda-custom-commands)))
  2433. (org-agenda-custom-commands
  2434. (org-contextualize-keys
  2435. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2436. (buf (current-buffer))
  2437. (bfn (buffer-file-name (buffer-base-buffer)))
  2438. entry key type org-match lprops ans)
  2439. ;; Turn off restriction unless there is an overriding one,
  2440. (unless org-agenda-overriding-restriction
  2441. (unless org-agenda-keep-restricted-file-list
  2442. ;; There is a request to keep the file list in place
  2443. (put 'org-agenda-files 'org-restrict nil))
  2444. (setq org-agenda-restrict nil)
  2445. (move-marker org-agenda-restrict-begin nil)
  2446. (move-marker org-agenda-restrict-end nil))
  2447. ;; Delete old local properties
  2448. (put 'org-agenda-redo-command 'org-lprops nil)
  2449. ;; Delete previously set last-arguments
  2450. (put 'org-agenda-redo-command 'last-args nil)
  2451. ;; Remember where this call originated
  2452. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2453. (unless org-keys
  2454. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2455. org-keys (car ans)
  2456. restriction (cdr ans)))
  2457. ;; If we have sticky agenda buffers, set a name for the buffer,
  2458. ;; depending on the invoking keys. The user may still set this
  2459. ;; as a command option, which will overwrite what we do here.
  2460. (if org-agenda-sticky
  2461. (setq org-agenda-buffer-name
  2462. (format "*Org Agenda(%s)*" org-keys)))
  2463. ;; Establish the restriction, if any
  2464. (when (and (not org-agenda-overriding-restriction) restriction)
  2465. (put 'org-agenda-files 'org-restrict (list bfn))
  2466. (cond
  2467. ((eq restriction 'region)
  2468. (setq org-agenda-restrict (current-buffer))
  2469. (move-marker org-agenda-restrict-begin (region-beginning))
  2470. (move-marker org-agenda-restrict-end (region-end)))
  2471. ((eq restriction 'subtree)
  2472. (save-excursion
  2473. (setq org-agenda-restrict (current-buffer))
  2474. (org-back-to-heading t)
  2475. (move-marker org-agenda-restrict-begin (point))
  2476. (move-marker org-agenda-restrict-end
  2477. (progn (org-end-of-subtree t)))))))
  2478. ;; For example the todo list should not need it (but does...)
  2479. (cond
  2480. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2481. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2482. (progn
  2483. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2484. lprops (nth 4 entry))
  2485. (if org-agenda-sticky
  2486. (setq org-agenda-buffer-name
  2487. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2488. (format "*Org Agenda(%s)*" org-keys))))
  2489. (put 'org-agenda-redo-command 'org-lprops lprops)
  2490. (cond
  2491. ((eq type 'agenda)
  2492. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2493. ((eq type 'agenda*)
  2494. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2495. ((eq type 'alltodo)
  2496. (org-let lprops '(org-todo-list current-prefix-arg)))
  2497. ((eq type 'search)
  2498. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2499. ((eq type 'stuck)
  2500. (org-let lprops '(org-agenda-list-stuck-projects
  2501. current-prefix-arg)))
  2502. ((eq type 'tags)
  2503. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2504. ((eq type 'tags-todo)
  2505. (org-let lprops '(org-tags-view '(4) org-match)))
  2506. ((eq type 'todo)
  2507. (org-let lprops '(org-todo-list org-match)))
  2508. ((eq type 'tags-tree)
  2509. (org-check-for-org-mode)
  2510. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2511. ((eq type 'todo-tree)
  2512. (org-check-for-org-mode)
  2513. (org-let lprops
  2514. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2515. (regexp-quote org-match) "\\>"))))
  2516. ((eq type 'occur-tree)
  2517. (org-check-for-org-mode)
  2518. (org-let lprops '(org-occur org-match)))
  2519. ((functionp type)
  2520. (org-let lprops '(funcall type org-match)))
  2521. ((fboundp type)
  2522. (org-let lprops '(funcall type org-match)))
  2523. (t (user-error "Invalid custom agenda command type %s" type))))
  2524. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2525. ((equal org-keys "C")
  2526. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2527. (customize-variable 'org-agenda-custom-commands))
  2528. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2529. ((equal org-keys "s") (call-interactively 'org-search-view))
  2530. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2531. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2532. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2533. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2534. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2535. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2536. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2537. (add-hook
  2538. 'post-command-hook
  2539. (lambda ()
  2540. (unless (current-message)
  2541. (let* ((m (org-agenda-get-any-marker))
  2542. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2543. (when note
  2544. (message (concat
  2545. "FLAGGING-NOTE ([?] for more info): "
  2546. (org-add-props
  2547. (replace-regexp-in-string
  2548. "\\\\n" "//"
  2549. (copy-sequence note))
  2550. nil 'face 'org-warning)))))))
  2551. t t))
  2552. ((equal org-keys "L")
  2553. (unless (derived-mode-p 'org-mode)
  2554. (user-error "This is not an Org-mode file"))
  2555. (unless restriction
  2556. (put 'org-agenda-files 'org-restrict (list bfn))
  2557. (org-call-with-arg 'org-timeline arg)))
  2558. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2559. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2560. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2561. (t (user-error "Invalid agenda key"))))))
  2562. (defvar org-agenda-multi)
  2563. (defun org-agenda-append-agenda ()
  2564. "Append another agenda view to the current one.
  2565. This function allows interactive building of block agendas.
  2566. Agenda views are separated by `org-agenda-block-separator'."
  2567. (interactive)
  2568. (unless (derived-mode-p 'org-agenda-mode)
  2569. (user-error "Can only append from within agenda buffer"))
  2570. (let ((org-agenda-multi t))
  2571. (org-agenda)
  2572. (widen)
  2573. (org-agenda-finalize)
  2574. (setq buffer-read-only t)
  2575. (org-agenda-fit-window-to-buffer)))
  2576. (defun org-agenda-normalize-custom-commands (cmds)
  2577. "Normalize custom commands CMDS."
  2578. (delq nil
  2579. (mapcar
  2580. (lambda (x)
  2581. (cond ((stringp (cdr x)) nil)
  2582. ((stringp (nth 1 x)) x)
  2583. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2584. (t (cons (car x) (cons "" (cdr x))))))
  2585. cmds)))
  2586. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2587. "The user interface for selecting an agenda command."
  2588. (catch 'exit
  2589. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2590. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2591. (region-p (org-region-active-p))
  2592. (custom org-agenda-custom-commands)
  2593. (selstring "")
  2594. restriction second-time
  2595. c entry key type match prefixes rmheader header-end custom1 desc
  2596. line lines left right n n1)
  2597. (save-window-excursion
  2598. (delete-other-windows)
  2599. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2600. (erase-buffer)
  2601. (insert (eval-when-compile
  2602. (let ((header
  2603. "Press key for an agenda command: < Buffer, subtree/region restriction
  2604. -------------------------------- > Remove restriction
  2605. a Agenda for current week or day e Export agenda views
  2606. t List of all TODO entries T Entries with special TODO kwd
  2607. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2608. s Search for keywords S Like s, but only TODO entries
  2609. L Timeline for current buffer # List stuck projects (!=configure)
  2610. / Multi-occur C Configure custom agenda commands
  2611. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2612. ")
  2613. (start 0))
  2614. (while (string-match
  2615. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2616. header start)
  2617. (setq start (match-end 0))
  2618. (add-text-properties (match-beginning 2) (match-end 2)
  2619. '(face bold) header))
  2620. header)))
  2621. (setq header-end (point-marker))
  2622. (while t
  2623. (setq custom1 custom)
  2624. (when (eq rmheader t)
  2625. (org-goto-line 1)
  2626. (re-search-forward ":" nil t)
  2627. (delete-region (match-end 0) (point-at-eol))
  2628. (forward-char 1)
  2629. (looking-at "-+")
  2630. (delete-region (match-end 0) (point-at-eol))
  2631. (move-marker header-end (match-end 0)))
  2632. (goto-char header-end)
  2633. (delete-region (point) (point-max))
  2634. ;; Produce all the lines that describe custom commands and prefixes
  2635. (setq lines nil)
  2636. (while (setq entry (pop custom1))
  2637. (setq key (car entry) desc (nth 1 entry)
  2638. type (nth 2 entry)
  2639. match (nth 3 entry))
  2640. (if (> (length key) 1)
  2641. (add-to-list 'prefixes (string-to-char key))
  2642. (setq line
  2643. (format
  2644. "%-4s%-14s"
  2645. (org-add-props (copy-sequence key)
  2646. '(face bold))
  2647. (cond
  2648. ((string-match "\\S-" desc) desc)
  2649. ((eq type 'agenda) "Agenda for current week or day")
  2650. ((eq type 'agenda*) "Appointments for current week or day")
  2651. ((eq type 'alltodo) "List of all TODO entries")
  2652. ((eq type 'search) "Word search")
  2653. ((eq type 'stuck) "List of stuck projects")
  2654. ((eq type 'todo) "TODO keyword")
  2655. ((eq type 'tags) "Tags query")
  2656. ((eq type 'tags-todo) "Tags (TODO)")
  2657. ((eq type 'tags-tree) "Tags tree")
  2658. ((eq type 'todo-tree) "TODO kwd tree")
  2659. ((eq type 'occur-tree) "Occur tree")
  2660. ((functionp type) (if (symbolp type)
  2661. (symbol-name type)
  2662. "Lambda expression"))
  2663. (t "???"))))
  2664. (if org-agenda-menu-show-matcher
  2665. (setq line
  2666. (concat line ": "
  2667. (cond
  2668. ((stringp match)
  2669. (setq match (copy-sequence match))
  2670. (org-add-props match nil 'face 'org-warning))
  2671. ((listp type)
  2672. (format "set of %d commands" (length type))))))
  2673. (if (org-string-nw-p match)
  2674. (add-text-properties
  2675. 0 (length line) (list 'help-echo
  2676. (concat "Matcher: " match)) line)))
  2677. (push line lines)))
  2678. (setq lines (nreverse lines))
  2679. (when prefixes
  2680. (mapc (lambda (x)
  2681. (push
  2682. (format "%s %s"
  2683. (org-add-props (char-to-string x)
  2684. nil 'face 'bold)
  2685. (or (cdr (assoc (concat selstring
  2686. (char-to-string x))
  2687. prefix-descriptions))
  2688. "Prefix key"))
  2689. lines))
  2690. prefixes))
  2691. ;; Check if we should display in two columns
  2692. (if org-agenda-menu-two-columns
  2693. (progn
  2694. (setq n (length lines)
  2695. n1 (+ (/ n 2) (mod n 2))
  2696. right (nthcdr n1 lines)
  2697. left (copy-sequence lines))
  2698. (setcdr (nthcdr (1- n1) left) nil))
  2699. (setq left lines right nil))
  2700. (while left
  2701. (insert "\n" (pop left))
  2702. (when right
  2703. (if (< (current-column) 40)
  2704. (move-to-column 40 t)
  2705. (insert " "))
  2706. (insert (pop right))))
  2707. ;; Make the window the right size
  2708. (goto-char (point-min))
  2709. (if second-time
  2710. (if (not (pos-visible-in-window-p (point-max)))
  2711. (org-fit-window-to-buffer))
  2712. (setq second-time t)
  2713. (org-fit-window-to-buffer))
  2714. ;; Ask for selection
  2715. (message "Press key for agenda command%s:"
  2716. (if (or restrict-ok org-agenda-overriding-restriction)
  2717. (if org-agenda-overriding-restriction
  2718. " (restriction lock active)"
  2719. (if restriction
  2720. (format " (restricted to %s)" restriction)
  2721. " (unrestricted)"))
  2722. ""))
  2723. (setq c (read-char-exclusive))
  2724. (message "")
  2725. (cond
  2726. ((assoc (char-to-string c) custom)
  2727. (setq selstring (concat selstring (char-to-string c)))
  2728. (throw 'exit (cons selstring restriction)))
  2729. ((memq c prefixes)
  2730. (setq selstring (concat selstring (char-to-string c))
  2731. prefixes nil
  2732. rmheader (or rmheader t)
  2733. custom (delq nil (mapcar
  2734. (lambda (x)
  2735. (if (or (= (length (car x)) 1)
  2736. (/= (string-to-char (car x)) c))
  2737. nil
  2738. (cons (substring (car x) 1) (cdr x))))
  2739. custom))))
  2740. ((eq c ?*)
  2741. (call-interactively 'org-toggle-sticky-agenda)
  2742. (sit-for 2))
  2743. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2744. (message "Restriction is only possible in Org-mode buffers")
  2745. (ding) (sit-for 1))
  2746. ((eq c ?1)
  2747. (org-agenda-remove-restriction-lock 'noupdate)
  2748. (setq restriction 'buffer))
  2749. ((eq c ?0)
  2750. (org-agenda-remove-restriction-lock 'noupdate)
  2751. (setq restriction (if region-p 'region 'subtree)))
  2752. ((eq c ?<)
  2753. (org-agenda-remove-restriction-lock 'noupdate)
  2754. (setq restriction
  2755. (cond
  2756. ((eq restriction 'buffer)
  2757. (if region-p 'region 'subtree))
  2758. ((memq restriction '(subtree region))
  2759. nil)
  2760. (t 'buffer))))
  2761. ((eq c ?>)
  2762. (org-agenda-remove-restriction-lock 'noupdate)
  2763. (setq restriction nil))
  2764. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2765. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2766. ((and (> (length selstring) 0) (eq c ?\d))
  2767. (delete-window)
  2768. (org-agenda-get-restriction-and-command prefix-descriptions))
  2769. ((equal c ?q) (error "Abort"))
  2770. (t (user-error "Invalid key %c" c))))))))
  2771. (defun org-agenda-fit-window-to-buffer ()
  2772. "Fit the window to the buffer size."
  2773. (and (memq org-agenda-window-setup '(reorganize-frame))
  2774. (fboundp 'fit-window-to-buffer)
  2775. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2776. (= (car org-agenda-window-frame-fractions) 1.0))
  2777. (delete-other-windows)
  2778. (org-fit-window-to-buffer
  2779. nil
  2780. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2781. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2782. (defvar org-cmd nil)
  2783. (defvar org-agenda-overriding-cmd nil)
  2784. (defvar org-agenda-overriding-arguments nil)
  2785. (defvar org-agenda-overriding-cmd-arguments nil)
  2786. (defun org-agenda-run-series (name series)
  2787. "Run agenda NAME as a SERIES of agenda commands."
  2788. (org-let (nth 1 series) '(org-agenda-prepare name))
  2789. ;; We need to reset agenda markers here, because when constructing a
  2790. ;; block agenda, the individual blocks do not do that.
  2791. (org-agenda-reset-markers)
  2792. (let* ((org-agenda-multi t)
  2793. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2794. (cmds (car series))
  2795. (gprops (nth 1 series))
  2796. match ;; The byte compiler incorrectly complains about this. Keep it!
  2797. org-cmd type lprops)
  2798. (while (setq org-cmd (pop cmds))
  2799. (setq type (car org-cmd))
  2800. (setq match (eval (nth 1 org-cmd)))
  2801. (setq lprops (nth 2 org-cmd))
  2802. (let ((org-agenda-overriding-arguments
  2803. (if (eq org-agenda-overriding-cmd org-cmd)
  2804. (or org-agenda-overriding-arguments
  2805. org-agenda-overriding-cmd-arguments))))
  2806. (cond
  2807. ((eq type 'agenda)
  2808. (org-let2 gprops lprops
  2809. '(call-interactively 'org-agenda-list)))
  2810. ((eq type 'agenda*)
  2811. (org-let2 gprops lprops
  2812. '(funcall 'org-agenda-list nil nil t)))
  2813. ((eq type 'alltodo)
  2814. (org-let2 gprops lprops
  2815. '(call-interactively 'org-todo-list)))
  2816. ((eq type 'search)
  2817. (org-let2 gprops lprops
  2818. '(org-search-view current-prefix-arg match nil)))
  2819. ((eq type 'stuck)
  2820. (org-let2 gprops lprops
  2821. '(call-interactively 'org-agenda-list-stuck-projects)))
  2822. ((eq type 'tags)
  2823. (org-let2 gprops lprops
  2824. '(org-tags-view current-prefix-arg match)))
  2825. ((eq type 'tags-todo)
  2826. (org-let2 gprops lprops
  2827. '(org-tags-view '(4) match)))
  2828. ((eq type 'todo)
  2829. (org-let2 gprops lprops
  2830. '(org-todo-list match)))
  2831. ((fboundp type)
  2832. (org-let2 gprops lprops
  2833. '(funcall type match)))
  2834. (t (error "Invalid type in command series")))))
  2835. (widen)
  2836. (let ((inhibit-read-only t))
  2837. (add-text-properties (point-min) (point-max)
  2838. `(org-series t org-series-redo-cmd ,redo)))
  2839. (setq org-agenda-redo-command redo)
  2840. (goto-char (point-min)))
  2841. (org-agenda-fit-window-to-buffer)
  2842. (org-let (nth 1 series) '(org-agenda-finalize)))
  2843. ;;;###autoload
  2844. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2845. "Run an agenda command in batch mode and send the result to STDOUT.
  2846. If CMD-KEY is a string of length 1, it is used as a key in
  2847. `org-agenda-custom-commands' and triggers this command. If it is a
  2848. longer string it is used as a tags/todo match string.
  2849. Parameters are alternating variable names and values that will be bound
  2850. before running the agenda command."
  2851. (org-eval-in-environment (org-make-parameter-alist parameters)
  2852. (let (org-agenda-sticky)
  2853. (if (> (length cmd-key) 1)
  2854. (org-tags-view nil cmd-key)
  2855. (org-agenda nil cmd-key))))
  2856. (set-buffer org-agenda-buffer-name)
  2857. (princ (buffer-string)))
  2858. (defvar org-agenda-info nil)
  2859. ;;;###autoload
  2860. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2861. "Run an agenda command in batch mode and send the result to STDOUT.
  2862. If CMD-KEY is a string of length 1, it is used as a key in
  2863. `org-agenda-custom-commands' and triggers this command. If it is a
  2864. longer string it is used as a tags/todo match string.
  2865. Parameters are alternating variable names and values that will be bound
  2866. before running the agenda command.
  2867. The output gives a line for each selected agenda item. Each
  2868. item is a list of comma-separated values, like this:
  2869. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2870. category The category of the item
  2871. head The headline, without TODO kwd, TAGS and PRIORITY
  2872. type The type of the agenda entry, can be
  2873. todo selected in TODO match
  2874. tagsmatch selected in tags match
  2875. diary imported from diary
  2876. deadline a deadline on given date
  2877. scheduled scheduled on given date
  2878. timestamp entry has timestamp on given date
  2879. closed entry was closed on given date
  2880. upcoming-deadline warning about deadline
  2881. past-scheduled forwarded scheduled item
  2882. block entry has date block including g. date
  2883. todo The todo keyword, if any
  2884. tags All tags including inherited ones, separated by colons
  2885. date The relevant date, like 2007-2-14
  2886. time The time, like 15:00-16:50
  2887. extra Sting with extra planning info
  2888. priority-l The priority letter if any was given
  2889. priority-n The computed numerical priority
  2890. agenda-day The day in the agenda where this is listed"
  2891. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2892. (org-make-parameter-alist parameters))
  2893. (if (> (length cmd-key) 2)
  2894. (org-tags-view nil cmd-key)
  2895. (org-agenda nil cmd-key)))
  2896. (set-buffer org-agenda-buffer-name)
  2897. (let* ((lines (org-split-string (buffer-string) "\n"))
  2898. line)
  2899. (while (setq line (pop lines))
  2900. (catch 'next
  2901. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2902. (setq org-agenda-info
  2903. (org-fix-agenda-info (text-properties-at 0 line)))
  2904. (princ
  2905. (mapconcat 'org-agenda-export-csv-mapper
  2906. '(org-category txt type todo tags date time extra
  2907. priority-letter priority agenda-day)
  2908. ","))
  2909. (princ "\n")))))
  2910. (defun org-fix-agenda-info (props)
  2911. "Make sure all properties on an agenda item have a canonical form.
  2912. This ensures the export commands can easily use it."
  2913. (let (tmp re)
  2914. (when (setq tmp (plist-get props 'tags))
  2915. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2916. (when (setq tmp (plist-get props 'date))
  2917. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2918. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2919. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2920. (setq tmp (calendar-date-string tmp)))
  2921. (setq props (plist-put props 'date tmp)))
  2922. (when (setq tmp (plist-get props 'day))
  2923. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2924. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2925. (setq tmp (calendar-date-string tmp)))
  2926. (setq props (plist-put props 'day tmp))
  2927. (setq props (plist-put props 'agenda-day tmp)))
  2928. (when (setq tmp (plist-get props 'txt))
  2929. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2930. (plist-put props 'priority-letter (match-string 1 tmp))
  2931. (setq tmp (replace-match "" t t tmp)))
  2932. (when (and (setq re (plist-get props 'org-todo-regexp))
  2933. (setq re (concat "\\`\\.*" re " ?"))
  2934. (string-match re tmp))
  2935. (plist-put props 'todo (match-string 1 tmp))
  2936. (setq tmp (replace-match "" t t tmp)))
  2937. (plist-put props 'txt tmp)))
  2938. props)
  2939. (defun org-agenda-export-csv-mapper (prop)
  2940. (let ((res (plist-get org-agenda-info prop)))
  2941. (setq res
  2942. (cond
  2943. ((not res) "")
  2944. ((stringp res) res)
  2945. (t (prin1-to-string res))))
  2946. (while (string-match "," res)
  2947. (setq res (replace-match ";" t t res)))
  2948. (org-trim res)))
  2949. ;;;###autoload
  2950. (defun org-store-agenda-views (&rest parameters)
  2951. "Store agenda views."
  2952. (interactive)
  2953. (eval (list 'org-batch-store-agenda-views)))
  2954. ;;;###autoload
  2955. (defmacro org-batch-store-agenda-views (&rest parameters)
  2956. "Run all custom agenda commands that have a file argument."
  2957. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2958. (pop-up-frames nil)
  2959. (dir default-directory)
  2960. (pars (org-make-parameter-alist parameters))
  2961. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2962. (save-window-excursion
  2963. (while cmds
  2964. (setq cmd (pop cmds)
  2965. thiscmdkey (car cmd)
  2966. thiscmdcmd (cdr cmd)
  2967. match (nth 2 thiscmdcmd)
  2968. bufname (if org-agenda-sticky
  2969. (or (and (stringp match)
  2970. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2971. (format "*Org Agenda(%s)*" thiscmdkey))
  2972. org-agenda-buffer-name)
  2973. cmd-or-set (nth 2 cmd)
  2974. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2975. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2976. (if (stringp files) (setq files (list files)))
  2977. (when files
  2978. (org-eval-in-environment (append org-agenda-exporter-settings
  2979. opts pars)
  2980. (org-agenda nil thiscmdkey))
  2981. (set-buffer bufname)
  2982. (while files
  2983. (org-eval-in-environment (append org-agenda-exporter-settings
  2984. opts pars)
  2985. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2986. (and (get-buffer bufname)
  2987. (kill-buffer bufname)))))))
  2988. (defvar org-agenda-current-span nil
  2989. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2990. (defun org-agenda-mark-header-line (pos)
  2991. "Mark the line at POS as an agenda structure header."
  2992. (save-excursion
  2993. (goto-char pos)
  2994. (put-text-property (point-at-bol) (point-at-eol)
  2995. 'org-agenda-structural-header t)
  2996. (when org-agenda-title-append
  2997. (put-text-property (point-at-bol) (point-at-eol)
  2998. 'org-agenda-title-append org-agenda-title-append))))
  2999. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3000. (defvar org-agenda-write-buffer-name "Agenda View")
  3001. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3002. "Write the current buffer (an agenda view) as a file.
  3003. Depending on the extension of the file name, plain text (.txt),
  3004. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3005. If the extension is .ics, translate visible agenda into iCalendar
  3006. format. If the extension is .org, collect all subtrees
  3007. corresponding to the agenda entries and add them in an .org file.
  3008. With prefix argument OPEN, open the new file immediately. If
  3009. NOSETTINGS is given, do not scope the settings of
  3010. `org-agenda-exporter-settings' into the export commands. This is
  3011. used when the settings have already been scoped and we do not
  3012. wish to overrule other, higher priority settings. If
  3013. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3014. the agenda to write."
  3015. (interactive "FWrite agenda to file: \nP")
  3016. (if (or (not (file-writable-p file))
  3017. (and (file-exists-p file)
  3018. (if (called-interactively-p 'any)
  3019. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3020. (user-error "Cannot write agenda to file %s" file))
  3021. (org-let (if nosettings nil org-agenda-exporter-settings)
  3022. '(save-excursion
  3023. (save-window-excursion
  3024. (let ((bs (copy-sequence (buffer-string))) beg content)
  3025. (with-temp-buffer
  3026. (rename-buffer org-agenda-write-buffer-name t)
  3027. (set-buffer-modified-p nil)
  3028. (insert bs)
  3029. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3030. (run-hooks 'org-agenda-before-write-hook)
  3031. (cond
  3032. ((bound-and-true-p org-mobile-creating-agendas)
  3033. (org-mobile-write-agenda-for-mobile file))
  3034. ((string-match "\\.org\\'" file)
  3035. (let (content p m message-log-max)
  3036. (goto-char (point-min))
  3037. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3038. (goto-char p)
  3039. (setq m (get-text-property (point) 'org-hd-marker))
  3040. (when m
  3041. (push (save-excursion
  3042. (set-buffer (marker-buffer m))
  3043. (goto-char m)
  3044. (org-copy-subtree 1 nil t t)
  3045. org-subtree-clip)
  3046. content)))
  3047. (find-file file)
  3048. (erase-buffer)
  3049. (dolist (s content) (org-paste-subtree 1 s))
  3050. (write-file file)
  3051. (kill-buffer (current-buffer))
  3052. (message "Org file written to %s" file)))
  3053. ((string-match "\\.html?\\'" file)
  3054. (require 'htmlize)
  3055. (set-buffer (htmlize-buffer (current-buffer)))
  3056. (when org-agenda-export-html-style
  3057. ;; replace <style> section with org-agenda-export-html-style
  3058. (goto-char (point-min))
  3059. (kill-region (- (search-forward "<style") 6)
  3060. (search-forward "</style>"))
  3061. (insert org-agenda-export-html-style))
  3062. (write-file file)
  3063. (kill-buffer (current-buffer))
  3064. (message "HTML written to %s" file))
  3065. ((string-match "\\.ps\\'" file)
  3066. (require 'ps-print)
  3067. (ps-print-buffer-with-faces file)
  3068. (message "Postscript written to %s" file))
  3069. ((string-match "\\.pdf\\'" file)
  3070. (require 'ps-print)
  3071. (ps-print-buffer-with-faces
  3072. (concat (file-name-sans-extension file) ".ps"))
  3073. (call-process "ps2pdf" nil nil nil
  3074. (expand-file-name
  3075. (concat (file-name-sans-extension file) ".ps"))
  3076. (expand-file-name file))
  3077. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3078. (message "PDF written to %s" file))
  3079. ((string-match "\\.ics\\'" file)
  3080. (require 'ox-icalendar)
  3081. (org-icalendar-export-current-agenda (expand-file-name file)))
  3082. (t
  3083. (let ((bs (buffer-string)))
  3084. (find-file file)
  3085. (erase-buffer)
  3086. (insert bs)
  3087. (save-buffer 0)
  3088. (kill-buffer (current-buffer))
  3089. (message "Plain text written to %s" file))))))))
  3090. (set-buffer (or agenda-bufname
  3091. (and (called-interactively-p 'any) (buffer-name))
  3092. org-agenda-buffer-name)))
  3093. (when open (org-open-file file)))
  3094. (defun org-agenda-remove-marked-text (property &optional value)
  3095. "Delete all text marked with VALUE of PROPERTY.
  3096. VALUE defaults to t."
  3097. (let (beg)
  3098. (setq value (or value t))
  3099. (while (setq beg (text-property-any (point-min) (point-max)
  3100. property value))
  3101. (delete-region
  3102. beg (or (next-single-property-change beg property)
  3103. (point-max))))))
  3104. (defun org-agenda-add-entry-text ()
  3105. "Add entry text to agenda lines.
  3106. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3107. entry text following headings shown in the agenda.
  3108. Drawers will be excluded, also the line with scheduling/deadline info."
  3109. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3110. (not (bound-and-true-p org-mobile-creating-agendas)))
  3111. (let (m txt)
  3112. (goto-char (point-min))
  3113. (while (not (eobp))
  3114. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3115. (beginning-of-line 2)
  3116. (setq txt (org-agenda-get-some-entry-text
  3117. m org-agenda-add-entry-text-maxlines " > "))
  3118. (end-of-line 1)
  3119. (if (string-match "\\S-" txt)
  3120. (insert "\n" txt)
  3121. (or (eobp) (forward-char 1))))))))
  3122. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3123. &rest keep)
  3124. "Extract entry text from MARKER, at most N-LINES lines.
  3125. This will ignore drawers etc, just get the text.
  3126. If INDENT is given, prefix every line with this string. If KEEP is
  3127. given, it is a list of symbols, defining stuff that should not be
  3128. removed from the entry content. Currently only `planning' is allowed here."
  3129. (let (txt drawer-re kwd-time-re ind)
  3130. (save-excursion
  3131. (with-current-buffer (marker-buffer marker)
  3132. (if (not (derived-mode-p 'org-mode))
  3133. (setq txt "")
  3134. (save-excursion
  3135. (save-restriction
  3136. (widen)
  3137. (goto-char marker)
  3138. (end-of-line 1)
  3139. (setq txt (buffer-substring
  3140. (min (1+ (point)) (point-max))
  3141. (progn (outline-next-heading) (point)))
  3142. drawer-re org-drawer-regexp
  3143. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3144. ".*\n?"))
  3145. (with-temp-buffer
  3146. (insert txt)
  3147. (when org-agenda-add-entry-text-descriptive-links
  3148. (goto-char (point-min))
  3149. (while (org-activate-bracket-links (point-max))
  3150. (add-text-properties (match-beginning 0) (match-end 0)
  3151. '(face org-link))))
  3152. (goto-char (point-min))
  3153. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3154. (set-text-properties (match-beginning 0) (match-end 0)
  3155. nil))
  3156. (goto-char (point-min))
  3157. (while (re-search-forward drawer-re nil t)
  3158. (delete-region
  3159. (match-beginning 0)
  3160. (progn (re-search-forward
  3161. "^[ \t]*:END:.*\n?" nil 'move)
  3162. (point))))
  3163. (unless (member 'planning keep)
  3164. (goto-char (point-min))
  3165. (while (re-search-forward kwd-time-re nil t)
  3166. (replace-match "")))
  3167. (goto-char (point-min))
  3168. (when org-agenda-entry-text-exclude-regexps
  3169. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3170. (while (setq re (pop re-list))
  3171. (goto-char (point-min))
  3172. (while (re-search-forward re nil t)
  3173. (replace-match "")))))
  3174. (goto-char (point-max))
  3175. (skip-chars-backward " \t\n")
  3176. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3177. ;; find and remove min common indentation
  3178. (goto-char (point-min))
  3179. (untabify (point-min) (point-max))
  3180. (setq ind (org-get-indentation))
  3181. (while (not (eobp))
  3182. (unless (looking-at "[ \t]*$")
  3183. (setq ind (min ind (org-get-indentation))))
  3184. (beginning-of-line 2))
  3185. (goto-char (point-min))
  3186. (while (not (eobp))
  3187. (unless (looking-at "[ \t]*$")
  3188. (move-to-column ind)
  3189. (delete-region (point-at-bol) (point)))
  3190. (beginning-of-line 2))
  3191. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3192. (goto-char (point-min))
  3193. (when indent
  3194. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3195. (replace-match indent t t)))
  3196. (goto-char (point-min))
  3197. (while (looking-at "[ \t]*\n") (replace-match ""))
  3198. (goto-char (point-max))
  3199. (when (> (org-current-line)
  3200. n-lines)
  3201. (org-goto-line (1+ n-lines))
  3202. (backward-char 1))
  3203. (setq txt (buffer-substring (point-min) (point)))))))))
  3204. txt))
  3205. (defun org-check-for-org-mode ()
  3206. "Make sure current buffer is in org-mode. Error if not."
  3207. (or (derived-mode-p 'org-mode)
  3208. (error "Cannot execute org-mode agenda command on buffer in %s"
  3209. major-mode)))
  3210. ;;; Agenda prepare and finalize
  3211. (defvar org-agenda-multi nil) ; dynamically scoped
  3212. (defvar org-agenda-pre-window-conf nil)
  3213. (defvar org-agenda-columns-active nil)
  3214. (defvar org-agenda-name nil)
  3215. (defvar org-agenda-tag-filter nil)
  3216. (defvar org-agenda-category-filter nil)
  3217. (defvar org-agenda-regexp-filter nil)
  3218. (defvar org-agenda-effort-filter nil)
  3219. (defvar org-agenda-top-headline-filter nil)
  3220. (defvar org-agenda-tag-filter-preset nil
  3221. "A preset of the tags filter used for secondary agenda filtering.
  3222. This must be a list of strings, each string must be a single tag preceded
  3223. by \"+\" or \"-\".
  3224. This variable should not be set directly, but agenda custom commands can
  3225. bind it in the options section. The preset filter is a global property of
  3226. the entire agenda view. In a block agenda, it will not work reliably to
  3227. define a filter for one of the individual blocks. You need to set it in
  3228. the global options and expect it to be applied to the entire view.")
  3229. (defvar org-agenda-category-filter-preset nil
  3230. "A preset of the category filter used for secondary agenda filtering.
  3231. This must be a list of strings, each string must be a single category
  3232. preceded by \"+\" or \"-\".
  3233. This variable should not be set directly, but agenda custom commands can
  3234. bind it in the options section. The preset filter is a global property of
  3235. the entire agenda view. In a block agenda, it will not work reliably to
  3236. define a filter for one of the individual blocks. You need to set it in
  3237. the global options and expect it to be applied to the entire view.")
  3238. (defvar org-agenda-regexp-filter-preset nil
  3239. "A preset of the regexp filter used for secondary agenda filtering.
  3240. This must be a list of strings, each string must be a single regexp
  3241. preceded by \"+\" or \"-\".
  3242. This variable should not be set directly, but agenda custom commands can
  3243. bind it in the options section. The preset filter is a global property of
  3244. the entire agenda view. In a block agenda, it will not work reliably to
  3245. define a filter for one of the individual blocks. You need to set it in
  3246. the global options and expect it to be applied to the entire view.")
  3247. (defvar org-agenda-effort-filter-preset nil
  3248. "A preset of the effort condition used for secondary agenda filtering.
  3249. This must be a list of strings, each string must be a single regexp
  3250. preceded by \"+\" or \"-\".
  3251. This variable should not be set directly, but agenda custom commands can
  3252. bind it in the options section. The preset filter is a global property of
  3253. the entire agenda view. In a block agenda, it will not work reliably to
  3254. define a filter for one of the individual blocks. You need to set it in
  3255. the global options and expect it to be applied to the entire view.")
  3256. (defun org-agenda-use-sticky-p ()
  3257. "Return non-nil if an agenda buffer named
  3258. `org-agenda-buffer-name' exists and should be shown instead of
  3259. generating a new one."
  3260. (and
  3261. ;; turned off by user
  3262. org-agenda-sticky
  3263. ;; For multi-agenda buffer already exists
  3264. (not org-agenda-multi)
  3265. ;; buffer found
  3266. (get-buffer org-agenda-buffer-name)
  3267. ;; C-u parameter is same as last call
  3268. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3269. (and
  3270. (equal current-prefix-arg
  3271. org-agenda-last-prefix-arg)
  3272. ;; In case user turned stickiness on, while having existing
  3273. ;; Agenda buffer active, don't reuse that buffer, because it
  3274. ;; does not have org variables local
  3275. org-agenda-this-buffer-is-sticky))))
  3276. (defun org-agenda-prepare-window (abuf filter-alist)
  3277. "Setup agenda buffer in the window.
  3278. ABUF is the buffer for the agenda window.
  3279. FILTER-ALIST is an alist of filters we need to apply when
  3280. `org-agenda-persistent-filter' is non-nil."
  3281. (let* ((awin (get-buffer-window abuf)) wconf)
  3282. (cond
  3283. ((equal (current-buffer) abuf) nil)
  3284. (awin (select-window awin))
  3285. ((not (setq wconf (current-window-configuration))))
  3286. ((equal org-agenda-window-setup 'current-window)
  3287. (pop-to-buffer-same-window abuf))
  3288. ((equal org-agenda-window-setup 'other-window)
  3289. (org-switch-to-buffer-other-window abuf))
  3290. ((equal org-agenda-window-setup 'other-frame)
  3291. (switch-to-buffer-other-frame abuf))
  3292. ((eq org-agenda-window-setup 'only-window)
  3293. (delete-other-windows)
  3294. (pop-to-buffer-same-window abuf))
  3295. ((equal org-agenda-window-setup 'reorganize-frame)
  3296. (delete-other-windows)
  3297. (org-switch-to-buffer-other-window abuf)))
  3298. (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
  3299. (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
  3300. (setq org-agenda-effort-filter (cdr (assoc 'effort filter-alist)))
  3301. (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
  3302. ;; Additional test in case agenda is invoked from within agenda
  3303. ;; buffer via elisp link.
  3304. (unless (equal (current-buffer) abuf)
  3305. (pop-to-buffer-same-window abuf))
  3306. (setq org-agenda-pre-window-conf
  3307. (or wconf org-agenda-pre-window-conf))))
  3308. (defun org-agenda-prepare (&optional name)
  3309. (let ((filter-alist (if org-agenda-persistent-filter
  3310. (with-current-buffer
  3311. (get-buffer-create org-agenda-buffer-name)
  3312. (list `(tag . ,org-agenda-tag-filter)
  3313. `(re . ,org-agenda-regexp-filter)
  3314. `(effort . ,org-agenda-effort-filter)
  3315. `(cat . ,org-agenda-category-filter))))))
  3316. (if (org-agenda-use-sticky-p)
  3317. (progn
  3318. (put 'org-agenda-tag-filter :preset-filter nil)
  3319. (put 'org-agenda-category-filter :preset-filter nil)
  3320. (put 'org-agenda-regexp-filter :preset-filter nil)
  3321. ;; Popup existing buffer
  3322. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3323. filter-alist)
  3324. (message "Sticky Agenda buffer, use `r' to refresh")
  3325. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3326. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3327. (setq org-todo-keywords-for-agenda nil)
  3328. (put 'org-agenda-tag-filter :preset-filter
  3329. org-agenda-tag-filter-preset)
  3330. (put 'org-agenda-category-filter :preset-filter
  3331. org-agenda-category-filter-preset)
  3332. (put 'org-agenda-regexp-filter :preset-filter
  3333. org-agenda-regexp-filter-preset)
  3334. (put 'org-agenda-effort-filter :preset-filter
  3335. org-agenda-effort-filter-preset)
  3336. (if org-agenda-multi
  3337. (progn
  3338. (setq buffer-read-only nil)
  3339. (goto-char (point-max))
  3340. (unless (or (bobp) org-agenda-compact-blocks
  3341. (not org-agenda-block-separator))
  3342. (insert "\n"
  3343. (if (stringp org-agenda-block-separator)
  3344. org-agenda-block-separator
  3345. (make-string (window-width) org-agenda-block-separator))
  3346. "\n"))
  3347. (narrow-to-region (point) (point-max)))
  3348. (setq org-done-keywords-for-agenda nil)
  3349. ;; Setting any org variables that are in org-agenda-local-vars
  3350. ;; list need to be done after the prepare call
  3351. (org-agenda-prepare-window
  3352. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3353. (setq buffer-read-only nil)
  3354. (org-agenda-reset-markers)
  3355. (let ((inhibit-read-only t)) (erase-buffer))
  3356. (org-agenda-mode)
  3357. (setq org-agenda-buffer (current-buffer))
  3358. (setq org-agenda-contributing-files nil)
  3359. (setq org-agenda-columns-active nil)
  3360. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3361. (setq org-todo-keywords-for-agenda
  3362. (org-uniquify org-todo-keywords-for-agenda))
  3363. (setq org-done-keywords-for-agenda
  3364. (org-uniquify org-done-keywords-for-agenda))
  3365. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3366. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3367. (and name (not org-agenda-name)
  3368. (setq-local org-agenda-name name)))
  3369. (setq buffer-read-only nil))))
  3370. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3371. (defun org-agenda-finalize ()
  3372. "Finishing touch for the agenda buffer, called just before displaying it."
  3373. (unless org-agenda-multi
  3374. (save-excursion
  3375. (let ((inhibit-read-only t))
  3376. (goto-char (point-min))
  3377. (save-excursion
  3378. (while (org-activate-bracket-links (point-max))
  3379. (add-text-properties (match-beginning 0) (match-end 0)
  3380. '(face org-link))))
  3381. (save-excursion
  3382. (while (org-activate-plain-links (point-max))
  3383. (add-text-properties (match-beginning 0) (match-end 0)
  3384. '(face org-link))))
  3385. (unless (eq org-agenda-remove-tags t)
  3386. (org-agenda-align-tags))
  3387. (unless org-agenda-with-colors
  3388. (remove-text-properties (point-min) (point-max) '(face nil)))
  3389. (if (and (boundp 'org-agenda-overriding-columns-format)
  3390. org-agenda-overriding-columns-format)
  3391. (setq-local org-agenda-overriding-columns-format
  3392. org-agenda-overriding-columns-format))
  3393. (if (and (boundp 'org-agenda-view-columns-initially)
  3394. org-agenda-view-columns-initially)
  3395. (org-agenda-columns))
  3396. (when org-agenda-fontify-priorities
  3397. (org-agenda-fontify-priorities))
  3398. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3399. (org-agenda-dim-blocked-tasks))
  3400. (org-agenda-mark-clocking-task)
  3401. (when org-agenda-entry-text-mode
  3402. (org-agenda-entry-text-hide)
  3403. (org-agenda-entry-text-show))
  3404. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3405. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3406. (org-habit-insert-consistency-graphs))
  3407. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3408. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3409. (and (listp org-agenda-show-inherited-tags)
  3410. (memq org-agenda-type org-agenda-show-inherited-tags))
  3411. (and (eq org-agenda-show-inherited-tags t)
  3412. (or (eq org-agenda-use-tag-inheritance t)
  3413. (and (listp org-agenda-use-tag-inheritance)
  3414. (not (memq org-agenda-type
  3415. org-agenda-use-tag-inheritance))))))
  3416. (let (mrk)
  3417. (save-excursion
  3418. (goto-char (point-min))
  3419. (while (equal (forward-line) 0)
  3420. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3421. (put-text-property (point-at-bol) (point-at-eol)
  3422. 'tags (org-with-point-at mrk
  3423. (delete-dups
  3424. (mapcar 'downcase (org-get-tags-at))))))))))
  3425. (run-hooks 'org-agenda-finalize-hook)
  3426. (when org-agenda-top-headline-filter
  3427. (org-agenda-filter-top-headline-apply
  3428. org-agenda-top-headline-filter))
  3429. (when org-agenda-tag-filter
  3430. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3431. (when (get 'org-agenda-tag-filter :preset-filter)
  3432. (org-agenda-filter-apply
  3433. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3434. (when org-agenda-category-filter
  3435. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3436. (when (get 'org-agenda-category-filter :preset-filter)
  3437. (org-agenda-filter-apply
  3438. (get 'org-agenda-category-filter :preset-filter) 'category))
  3439. (when org-agenda-regexp-filter
  3440. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3441. (when (get 'org-agenda-regexp-filter :preset-filter)
  3442. (org-agenda-filter-apply
  3443. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3444. (when org-agenda-effort-filter
  3445. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3446. (when (get 'org-agenda-effort-filter :preset-filter)
  3447. (org-agenda-filter-apply
  3448. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3449. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3450. (defun org-agenda-mark-clocking-task ()
  3451. "Mark the current clock entry in the agenda if it is present."
  3452. ;; We need to widen when `org-agenda-finalize' is called from
  3453. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3454. (when (bound-and-true-p org-clock-current-task)
  3455. (save-restriction
  3456. (widen)
  3457. (org-agenda-unmark-clocking-task)
  3458. (when (marker-buffer org-clock-hd-marker)
  3459. (save-excursion
  3460. (goto-char (point-min))
  3461. (let (s ov)
  3462. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3463. (goto-char s)
  3464. (when (equal (org-get-at-bol 'org-hd-marker)
  3465. org-clock-hd-marker)
  3466. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3467. (overlay-put ov 'type 'org-agenda-clocking)
  3468. (overlay-put ov 'face 'org-agenda-clocking)
  3469. (overlay-put ov 'help-echo
  3470. "The clock is running in this item")))))))))
  3471. (defun org-agenda-unmark-clocking-task ()
  3472. "Unmark the current clocking task."
  3473. (mapc (lambda (o)
  3474. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3475. (delete-overlay o)))
  3476. (overlays-in (point-min) (point-max))))
  3477. (defun org-agenda-fontify-priorities ()
  3478. "Make highest priority lines bold, and lowest italic."
  3479. (interactive)
  3480. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3481. (delete-overlay o)))
  3482. (overlays-in (point-min) (point-max)))
  3483. (save-excursion
  3484. (let (b e p ov h l)
  3485. (goto-char (point-min))
  3486. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3487. (setq h (or (get-char-property (point) 'org-highest-priority)
  3488. org-highest-priority)
  3489. l (or (get-char-property (point) 'org-lowest-priority)
  3490. org-lowest-priority)
  3491. p (string-to-char (match-string 1))
  3492. b (match-beginning 0)
  3493. e (if (eq org-agenda-fontify-priorities 'cookies)
  3494. (match-end 0)
  3495. (point-at-eol))
  3496. ov (make-overlay b e))
  3497. (overlay-put
  3498. ov 'face
  3499. (let ((special-face
  3500. (cond ((org-face-from-face-or-color
  3501. 'priority nil
  3502. (cdr (assoc p org-priority-faces))))
  3503. ((and (listp org-agenda-fontify-priorities)
  3504. (org-face-from-face-or-color
  3505. 'priority nil
  3506. (cdr (assoc p org-agenda-fontify-priorities)))))
  3507. ((equal p l) 'italic)
  3508. ((equal p h) 'bold))))
  3509. (if special-face (list special-face 'org-priority) 'org-priority)))
  3510. (overlay-put ov 'org-type 'org-priority)))))
  3511. (defvar org-depend-tag-blocked)
  3512. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3513. "Dim currently blocked TODOs in the agenda display.
  3514. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3515. dimming them."
  3516. (interactive "P")
  3517. (when (called-interactively-p 'interactive)
  3518. (message "Dim or hide blocked tasks..."))
  3519. (dolist (o (overlays-in (point-min) (point-max)))
  3520. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3521. (delete-overlay o)))
  3522. (save-excursion
  3523. (let ((inhibit-read-only t)
  3524. (org-depend-tag-blocked nil)
  3525. org-blocked-by-checkboxes)
  3526. (goto-char (point-min))
  3527. (while (let ((pos (text-property-not-all
  3528. (point) (point-max) 'todo-state nil)))
  3529. (when pos (goto-char pos)))
  3530. (setq org-blocked-by-checkboxes nil)
  3531. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3532. (when (and (markerp marker)
  3533. (with-current-buffer (marker-buffer marker)
  3534. (save-excursion (goto-char marker)
  3535. (org-entry-blocked-p))))
  3536. ;; Entries blocked by checkboxes cannot be made invisible.
  3537. ;; See `org-agenda-dim-blocked-tasks' for details.
  3538. (let* ((really-invisible
  3539. (and (not org-blocked-by-checkboxes)
  3540. (or invisible (eq org-agenda-dim-blocked-tasks
  3541. 'invisible))))
  3542. (ov (make-overlay (if really-invisible (line-end-position 0)
  3543. (line-beginning-position))
  3544. (line-end-position))))
  3545. (if really-invisible (overlay-put ov 'invisible t)
  3546. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3547. (overlay-put ov 'org-type 'org-blocked-todo))))
  3548. (forward-line))))
  3549. (when (called-interactively-p 'interactive)
  3550. (message "Dim or hide blocked tasks...done")))
  3551. (defvar org-agenda-skip-function nil
  3552. "Function to be called at each match during agenda construction.
  3553. If this function returns nil, the current match should not be skipped.
  3554. Otherwise, the function must return a position from where the search
  3555. should be continued.
  3556. This may also be a Lisp form, it will be evaluated.
  3557. Never set this variable using `setq' or so, because then it will apply
  3558. to all future agenda commands. If you do want a global skipping condition,
  3559. use the option `org-agenda-skip-function-global' instead.
  3560. The correct usage for `org-agenda-skip-function' is to bind it with
  3561. `let' to scope it dynamically into the agenda-constructing command.
  3562. A good way to set it is through options in `org-agenda-custom-commands'.")
  3563. (defun org-agenda-skip ()
  3564. "Throw to `:skip' in places that should be skipped.
  3565. Also moves point to the end of the skipped region, so that search can
  3566. continue from there."
  3567. (let ((p (point-at-bol)) to)
  3568. (when (or
  3569. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3570. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3571. (get-text-property p :org-archived)
  3572. (org-end-of-subtree t))
  3573. (and org-agenda-skip-comment-trees
  3574. (get-text-property p :org-comment)
  3575. (org-end-of-subtree t))
  3576. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3577. (org-agenda-skip-eval org-agenda-skip-function)))
  3578. (goto-char to))
  3579. (org-in-src-block-p t))
  3580. (throw :skip t))))
  3581. (defun org-agenda-skip-eval (form)
  3582. "If FORM is a function or a list, call (or eval) it and return the result.
  3583. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3584. and match data are returned to the previous state no matter what these
  3585. functions do."
  3586. (let (fp)
  3587. (and form
  3588. (or (setq fp (functionp form))
  3589. (consp form))
  3590. (save-excursion
  3591. (save-match-data
  3592. (if fp
  3593. (funcall form)
  3594. (eval form)))))))
  3595. (defvar org-agenda-markers nil
  3596. "List of all currently active markers created by `org-agenda'.")
  3597. (defvar org-agenda-last-marker-time (float-time)
  3598. "Creation time of the last agenda marker.")
  3599. (defun org-agenda-new-marker (&optional pos)
  3600. "Return a new agenda marker.
  3601. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3602. these markers and resets them when they are no longer in use."
  3603. (let ((m (copy-marker (or pos (point)) t)))
  3604. (setq org-agenda-last-marker-time (float-time))
  3605. (if org-agenda-buffer
  3606. (with-current-buffer org-agenda-buffer
  3607. (push m org-agenda-markers))
  3608. (push m org-agenda-markers))
  3609. m))
  3610. (defun org-agenda-reset-markers ()
  3611. "Reset markers created by `org-agenda'."
  3612. (while org-agenda-markers
  3613. (move-marker (pop org-agenda-markers) nil)))
  3614. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3615. "Save relative positions of markers in region.
  3616. This check for agenda markers in all agenda buffers currently active."
  3617. (dolist (buf (buffer-list))
  3618. (with-current-buffer buf
  3619. (when (eq major-mode 'org-agenda-mode)
  3620. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3621. org-agenda-markers)))))
  3622. ;;; Entry text mode
  3623. (defun org-agenda-entry-text-show-here ()
  3624. "Add some text from the entry as context to the current line."
  3625. (let (m txt o)
  3626. (setq m (org-get-at-bol 'org-hd-marker))
  3627. (unless (marker-buffer m)
  3628. (error "No marker points to an entry here"))
  3629. (setq txt (concat "\n" (org-no-properties
  3630. (org-agenda-get-some-entry-text
  3631. m org-agenda-entry-text-maxlines
  3632. org-agenda-entry-text-leaders))))
  3633. (when (string-match "\\S-" txt)
  3634. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3635. (overlay-put o 'evaporate t)
  3636. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3637. (overlay-put o 'after-string txt))))
  3638. (defun org-agenda-entry-text-show ()
  3639. "Add entry context for all agenda lines."
  3640. (interactive)
  3641. (save-excursion
  3642. (goto-char (point-max))
  3643. (beginning-of-line 1)
  3644. (while (not (bobp))
  3645. (when (org-get-at-bol 'org-hd-marker)
  3646. (org-agenda-entry-text-show-here))
  3647. (beginning-of-line 0))))
  3648. (defun org-agenda-entry-text-hide ()
  3649. "Remove any shown entry context."
  3650. (delq nil
  3651. (mapcar (lambda (o)
  3652. (if (eq (overlay-get o 'org-overlay-type)
  3653. 'agenda-entry-content)
  3654. (progn (delete-overlay o) t)))
  3655. (overlays-in (point-min) (point-max)))))
  3656. (defun org-agenda-get-day-face (date)
  3657. "Return the face DATE should be displayed with."
  3658. (cond ((and (functionp org-agenda-day-face-function)
  3659. (funcall org-agenda-day-face-function date)))
  3660. ((org-agenda-today-p date) 'org-agenda-date-today)
  3661. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3662. 'org-agenda-date-weekend)
  3663. (t 'org-agenda-date)))
  3664. ;;; Agenda timeline
  3665. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3666. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3667. (defun org-timeline (&optional dotodo)
  3668. "Show a time-sorted view of the entries in the current org file.
  3669. Only entries with a time stamp of today or later will be listed. With
  3670. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3671. under the current date.
  3672. If the buffer contains an active region, only check the region for
  3673. dates."
  3674. (interactive "P")
  3675. (let* ((dopast t)
  3676. (org-agenda-show-log-scoped org-agenda-show-log)
  3677. (org-agenda-show-log org-agenda-show-log-scoped)
  3678. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3679. (current-buffer))))
  3680. (date (calendar-current-date))
  3681. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3682. (end (if (org-region-active-p) (region-end) (point-max)))
  3683. (day-numbers (org-get-all-dates
  3684. beg end 'no-ranges
  3685. t org-agenda-show-log-scoped ; always include today
  3686. org-timeline-show-empty-dates))
  3687. (org-deadline-warning-days 0)
  3688. (org-agenda-only-exact-dates t)
  3689. (today (org-today))
  3690. (past t)
  3691. args
  3692. s e rtn d emptyp)
  3693. (setq org-agenda-redo-command
  3694. (list 'let
  3695. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3696. (list 'org-switch-to-buffer-other-window (current-buffer))
  3697. (list 'org-timeline (list 'quote dotodo))))
  3698. (put 'org-agenda-redo-command 'org-lprops nil)
  3699. (if (not dopast)
  3700. ;; Remove past dates from the list of dates.
  3701. (setq day-numbers (delq nil (mapcar (lambda(x)
  3702. (if (>= x today) x nil))
  3703. day-numbers))))
  3704. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3705. (org-compile-prefix-format 'timeline)
  3706. (org-set-sorting-strategy 'timeline)
  3707. (if org-agenda-show-log-scoped (push :closed args))
  3708. (push :timestamp args)
  3709. (push :deadline args)
  3710. (push :scheduled args)
  3711. (push :sexp args)
  3712. (if dotodo (push :todo args))
  3713. (insert "Timeline of file " entry "\n")
  3714. (add-text-properties (point-min) (point)
  3715. (list 'face 'org-agenda-structure))
  3716. (org-agenda-mark-header-line (point-min))
  3717. (while (setq d (pop day-numbers))
  3718. (if (and (listp d) (eq (car d) :omitted))
  3719. (progn
  3720. (setq s (point))
  3721. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3722. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3723. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3724. (if (and (>= d today)
  3725. dopast
  3726. past)
  3727. (progn
  3728. (setq past nil)
  3729. (insert (make-string 79 ?-) "\n")))
  3730. (setq date (calendar-gregorian-from-absolute d))
  3731. (setq s (point))
  3732. (setq rtn (and (not emptyp)
  3733. (apply 'org-agenda-get-day-entries entry
  3734. date args)))
  3735. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3736. (progn
  3737. (insert
  3738. (if (stringp org-agenda-format-date)
  3739. (format-time-string org-agenda-format-date
  3740. (org-time-from-absolute date))
  3741. (funcall org-agenda-format-date date))
  3742. "\n")
  3743. (put-text-property s (1- (point)) 'face
  3744. (org-agenda-get-day-face date))
  3745. (put-text-property s (1- (point)) 'org-date-line t)
  3746. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3747. (if (equal d today)
  3748. (put-text-property s (1- (point)) 'org-today t))
  3749. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3750. (put-text-property s (1- (point)) 'day d)))))
  3751. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3752. (point-min)))
  3753. (add-text-properties
  3754. (point-min) (point-max)
  3755. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3756. (org-agenda-finalize)
  3757. (setq buffer-read-only t)))
  3758. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3759. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3760. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3761. not every single day in the range. If FORCE-TODAY is non-nil, make
  3762. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3763. inactive time stamps (those in square brackets) are included.
  3764. When EMPTY is non-nil, also include days without any entries."
  3765. (let ((re (concat
  3766. (if pre-re pre-re "")
  3767. (if inactive org-ts-regexp-both org-ts-regexp)))
  3768. dates dates1 date day day1 day2 ts1 ts2 pos)
  3769. (if force-today
  3770. (setq dates (list (org-today))))
  3771. (save-excursion
  3772. (goto-char beg)
  3773. (while (re-search-forward re end t)
  3774. (setq day (time-to-days (org-time-string-to-time
  3775. (substring (match-string 1) 0 10)
  3776. (current-buffer) (match-beginning 0))))
  3777. (or (memq day dates) (push day dates)))
  3778. (unless no-ranges
  3779. (goto-char beg)
  3780. (while (re-search-forward org-tr-regexp end t)
  3781. (setq pos (match-beginning 0))
  3782. (setq ts1 (substring (match-string 1) 0 10)
  3783. ts2 (substring (match-string 2) 0 10)
  3784. day1 (time-to-days (org-time-string-to-time
  3785. ts1 (current-buffer) pos))
  3786. day2 (time-to-days (org-time-string-to-time
  3787. ts2 (current-buffer) pos)))
  3788. (while (< (setq day1 (1+ day1)) day2)
  3789. (or (memq day1 dates) (push day1 dates)))))
  3790. (setq dates (sort dates '<))
  3791. (when empty
  3792. (while (setq day (pop dates))
  3793. (setq day2 (car dates))
  3794. (push day dates1)
  3795. (when (and day2 empty)
  3796. (if (or (eq empty t)
  3797. (and (numberp empty) (<= (- day2 day) empty)))
  3798. (while (< (setq day (1+ day)) day2)
  3799. (push (list day) dates1))
  3800. (push (cons :omitted (- day2 day)) dates1))))
  3801. (setq dates (nreverse dates1)))
  3802. dates)))
  3803. ;;; Agenda Daily/Weekly
  3804. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3805. "Start day for the agenda view.
  3806. Custom commands can set this variable in the options section.
  3807. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3808. input allowed when reading a date through the Org calendar.
  3809. See the docstring of `org-read-date' for details.")
  3810. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3811. (defvar org-arg-loc nil) ; local variable
  3812. (defvar org-agenda-buffer-tmp-name nil)
  3813. ;;;###autoload
  3814. (defun org-agenda-list (&optional arg start-day span with-hour)
  3815. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3816. The view will be for the current day or week, but from the overview buffer
  3817. you will be able to go to other days/weeks.
  3818. With a numeric prefix argument in an interactive call, the agenda will
  3819. span ARG days. Lisp programs should instead specify SPAN to change
  3820. the number of days. SPAN defaults to `org-agenda-span'.
  3821. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3822. given in `org-agenda-start-on-weekday'.
  3823. When WITH-HOUR is non-nil, only include scheduled and deadline
  3824. items if they have an hour specification like [h]h:mm."
  3825. (interactive "P")
  3826. (if org-agenda-overriding-arguments
  3827. (setq arg (car org-agenda-overriding-arguments)
  3828. start-day (nth 1 org-agenda-overriding-arguments)
  3829. span (nth 2 org-agenda-overriding-arguments)))
  3830. (if (and (integerp arg) (> arg 0))
  3831. (setq span arg arg nil))
  3832. (catch 'exit
  3833. (setq org-agenda-buffer-name
  3834. (or org-agenda-buffer-tmp-name
  3835. (if org-agenda-sticky
  3836. (cond ((and org-keys (stringp org-match))
  3837. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3838. (org-keys
  3839. (format "*Org Agenda(%s)*" org-keys))
  3840. (t "*Org Agenda(a)*")))
  3841. org-agenda-buffer-name))
  3842. (org-agenda-prepare "Day/Week")
  3843. (setq start-day (or start-day org-agenda-start-day))
  3844. (if (stringp start-day)
  3845. ;; Convert to an absolute day number
  3846. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3847. (org-compile-prefix-format 'agenda)
  3848. (org-set-sorting-strategy 'agenda)
  3849. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3850. (today (org-today))
  3851. (sd (or start-day today))
  3852. (ndays (org-agenda-span-to-ndays span sd))
  3853. (org-agenda-start-on-weekday
  3854. (if (or (eq ndays 7) (eq ndays 14))
  3855. org-agenda-start-on-weekday))
  3856. (thefiles (org-agenda-files nil 'ifmode))
  3857. (files thefiles)
  3858. (start (if (or (null org-agenda-start-on-weekday)
  3859. (< ndays 7))
  3860. sd
  3861. (let* ((nt (calendar-day-of-week
  3862. (calendar-gregorian-from-absolute sd)))
  3863. (n1 org-agenda-start-on-weekday)
  3864. (d (- nt n1)))
  3865. (- sd (+ (if (< d 0) 7 0) d)))))
  3866. (day-numbers (list start))
  3867. (day-cnt 0)
  3868. (inhibit-redisplay (not debug-on-error))
  3869. (org-agenda-show-log-scoped org-agenda-show-log)
  3870. s e rtn rtnall file date d start-pos end-pos todayp
  3871. clocktable-start clocktable-end filter)
  3872. (setq org-agenda-redo-command
  3873. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3874. (dotimes (n (1- ndays))
  3875. (push (1+ (car day-numbers)) day-numbers))
  3876. (setq day-numbers (nreverse day-numbers))
  3877. (setq clocktable-start (car day-numbers)
  3878. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3879. (setq-local org-starting-day (car day-numbers))
  3880. (setq-local org-arg-loc arg)
  3881. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3882. (unless org-agenda-compact-blocks
  3883. (let* ((d1 (car day-numbers))
  3884. (d2 (org-last day-numbers))
  3885. (w1 (org-days-to-iso-week d1))
  3886. (w2 (org-days-to-iso-week d2)))
  3887. (setq s (point))
  3888. (if org-agenda-overriding-header
  3889. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3890. nil 'face 'org-agenda-structure) "\n")
  3891. (insert (org-agenda-span-name span)
  3892. "-agenda"
  3893. (if (< (- d2 d1) 350)
  3894. (if (= w1 w2)
  3895. (format " (W%02d)" w1)
  3896. (format " (W%02d-W%02d)" w1 w2))
  3897. "")
  3898. ":\n")))
  3899. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3900. 'org-date-line t))
  3901. (org-agenda-mark-header-line s))
  3902. (while (setq d (pop day-numbers))
  3903. (setq date (calendar-gregorian-from-absolute d)
  3904. s (point))
  3905. (if (or (setq todayp (= d today))
  3906. (and (not start-pos) (= d sd)))
  3907. (setq start-pos (point))
  3908. (if (and start-pos (not end-pos))
  3909. (setq end-pos (point))))
  3910. (setq files thefiles
  3911. rtnall nil)
  3912. (while (setq file (pop files))
  3913. (catch 'nextfile
  3914. (org-check-agenda-file file)
  3915. (let ((org-agenda-entry-types org-agenda-entry-types))
  3916. ;; Starred types override non-starred equivalents
  3917. (when (member :deadline* org-agenda-entry-types)
  3918. (setq org-agenda-entry-types
  3919. (delq :deadline org-agenda-entry-types)))
  3920. (when (member :scheduled* org-agenda-entry-types)
  3921. (setq org-agenda-entry-types
  3922. (delq :scheduled org-agenda-entry-types)))
  3923. ;; Honor with-hour
  3924. (when with-hour
  3925. (when (member :deadline org-agenda-entry-types)
  3926. (setq org-agenda-entry-types
  3927. (delq :deadline org-agenda-entry-types))
  3928. (push :deadline* org-agenda-entry-types))
  3929. (when (member :scheduled org-agenda-entry-types)
  3930. (setq org-agenda-entry-types
  3931. (delq :scheduled org-agenda-entry-types))
  3932. (push :scheduled* org-agenda-entry-types)))
  3933. (unless org-agenda-include-deadlines
  3934. (setq org-agenda-entry-types
  3935. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3936. (cond
  3937. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3938. (setq rtn (org-agenda-get-day-entries
  3939. file date :closed)))
  3940. (org-agenda-show-log-scoped
  3941. (setq rtn (apply 'org-agenda-get-day-entries
  3942. file date
  3943. (append '(:closed) org-agenda-entry-types))))
  3944. (t
  3945. (setq rtn (apply 'org-agenda-get-day-entries
  3946. file date
  3947. org-agenda-entry-types)))))
  3948. (setq rtnall (append rtnall rtn)))) ;; all entries
  3949. (if org-agenda-include-diary
  3950. (let ((org-agenda-search-headline-for-time t))
  3951. (require 'diary-lib)
  3952. (setq rtn (org-get-entries-from-diary date))
  3953. (setq rtnall (append rtnall rtn))))
  3954. (if (or rtnall org-agenda-show-all-dates)
  3955. (progn
  3956. (setq day-cnt (1+ day-cnt))
  3957. (insert
  3958. (if (stringp org-agenda-format-date)
  3959. (format-time-string org-agenda-format-date
  3960. (org-time-from-absolute date))
  3961. (funcall org-agenda-format-date date))
  3962. "\n")
  3963. (put-text-property s (1- (point)) 'face
  3964. (org-agenda-get-day-face date))
  3965. (put-text-property s (1- (point)) 'org-date-line t)
  3966. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3967. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3968. (when todayp
  3969. (put-text-property s (1- (point)) 'org-today t))
  3970. (setq rtnall
  3971. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3972. (if rtnall (insert ;; all entries
  3973. (org-agenda-finalize-entries rtnall 'agenda)
  3974. "\n"))
  3975. (put-text-property s (1- (point)) 'day d)
  3976. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3977. (when (and org-agenda-clockreport-mode clocktable-start)
  3978. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3979. ;; the above line is to ensure the restricted range!
  3980. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3981. tbl)
  3982. (setq p (org-plist-delete p :block))
  3983. (setq p (plist-put p :tstart clocktable-start))
  3984. (setq p (plist-put p :tend clocktable-end))
  3985. (setq p (plist-put p :scope 'agenda))
  3986. (setq tbl (apply 'org-clock-get-clocktable p))
  3987. (insert tbl)))
  3988. (goto-char (point-min))
  3989. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3990. (unless (and (pos-visible-in-window-p (point-min))
  3991. (pos-visible-in-window-p (point-max)))
  3992. (goto-char (1- (point-max)))
  3993. (recenter -1)
  3994. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3995. (progn
  3996. (goto-char (or start-pos 1))
  3997. (recenter 1))))
  3998. (goto-char (or start-pos 1))
  3999. (add-text-properties (point-min) (point-max)
  4000. `(org-agenda-type agenda
  4001. org-last-args (,arg ,start-day ,span)
  4002. org-redo-cmd ,org-agenda-redo-command
  4003. org-series-cmd ,org-cmd))
  4004. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4005. (org-agenda-show-clocking-issues))
  4006. (org-agenda-finalize)
  4007. (setq buffer-read-only t)
  4008. (message ""))))
  4009. (defun org-agenda-ndays-to-span (n)
  4010. "Return a span symbol for a span of N days, or N if none matches."
  4011. (cond ((symbolp n) n)
  4012. ((= n 1) 'day)
  4013. ((= n 7) 'week)
  4014. ((= n 14) 'fortnight)
  4015. (t n)))
  4016. (defun org-agenda-span-to-ndays (span &optional start-day)
  4017. "Return ndays from SPAN, possibly starting at START-DAY.
  4018. START-DAY is an absolute time value."
  4019. (cond ((numberp span) span)
  4020. ((eq span 'day) 1)
  4021. ((eq span 'week) 7)
  4022. ((eq span 'fortnight) 14)
  4023. ((eq span 'month)
  4024. (let ((date (calendar-gregorian-from-absolute start-day)))
  4025. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4026. ((eq span 'year)
  4027. (let ((date (calendar-gregorian-from-absolute start-day)))
  4028. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4029. (defun org-agenda-span-name (span)
  4030. "Return a SPAN name."
  4031. (if (null span)
  4032. ""
  4033. (if (symbolp span)
  4034. (capitalize (symbol-name span))
  4035. (format "%d days" span))))
  4036. ;;; Agenda word search
  4037. (defvar org-agenda-search-history nil)
  4038. (defvar org-search-syntax-table nil
  4039. "Special syntax table for org-mode search.
  4040. In this table, we have single quotes not as word constituents, to
  4041. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4042. (defvar org-mode-syntax-table) ; From org.el
  4043. (defun org-search-syntax-table ()
  4044. (unless org-search-syntax-table
  4045. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4046. (modify-syntax-entry ?' "." org-search-syntax-table)
  4047. (modify-syntax-entry ?` "." org-search-syntax-table))
  4048. org-search-syntax-table)
  4049. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4050. ;;;###autoload
  4051. (defun org-search-view (&optional todo-only string edit-at)
  4052. "Show all entries that contain a phrase or words or regular expressions.
  4053. With optional prefix argument TODO-ONLY, only consider entries that are
  4054. TODO entries. The argument STRING can be used to pass a default search
  4055. string into this function. If EDIT-AT is non-nil, it means that the
  4056. user should get a chance to edit this string, with cursor at position
  4057. EDIT-AT.
  4058. The search string can be viewed either as a phrase that should be found as
  4059. is, or it can be broken into a number of snippets, each of which must match
  4060. in a Boolean way to select an entry. The default depends on the variable
  4061. `org-agenda-search-view-always-boolean'.
  4062. Even if this is turned off (the default) you can always switch to
  4063. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4064. The default is a direct search of the whole phrase, where each space in
  4065. the search string can expand to an arbitrary amount of whitespace,
  4066. including newlines.
  4067. If using a Boolean search, the search string is split on whitespace and
  4068. each snippet is searched separately, with logical AND to select an entry.
  4069. Words prefixed with a minus must *not* occur in the entry. Words without
  4070. a prefix or prefixed with a plus must occur in the entry. Matching is
  4071. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4072. match whole words, not parts of a word) if
  4073. `org-agenda-search-view-force-full-words' is set (default is nil).
  4074. Boolean search snippets enclosed by curly braces are interpreted as
  4075. regular expressions that must or (when preceded with \"-\") must not
  4076. match in the entry. Snippets enclosed into double quotes will be taken
  4077. as a whole, to include whitespace.
  4078. - If the search string starts with an asterisk, search only in headlines.
  4079. - If (possibly after the leading star) the search string starts with an
  4080. exclamation mark, this also means to look at TODO entries only, an effect
  4081. that can also be achieved with a prefix argument.
  4082. - If (possibly after star and exclamation mark) the search string starts
  4083. with a colon, this will mean that the (non-regexp) snippets of the
  4084. Boolean search must match as full words.
  4085. This command searches the agenda files, and in addition the files listed
  4086. in `org-agenda-text-search-extra-files'."
  4087. (interactive "P")
  4088. (if org-agenda-overriding-arguments
  4089. (setq todo-only (car org-agenda-overriding-arguments)
  4090. string (nth 1 org-agenda-overriding-arguments)
  4091. edit-at (nth 2 org-agenda-overriding-arguments)))
  4092. (let* ((props (list 'face nil
  4093. 'done-face 'org-agenda-done
  4094. 'org-not-done-regexp org-not-done-regexp
  4095. 'org-todo-regexp org-todo-regexp
  4096. 'org-complex-heading-regexp org-complex-heading-regexp
  4097. 'mouse-face 'highlight
  4098. 'help-echo (format "mouse-2 or RET jump to location")))
  4099. (full-words org-agenda-search-view-force-full-words)
  4100. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4101. regexp rtn rtnall files file pos inherited-tags
  4102. marker category level tags c neg re boolean
  4103. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4104. (unless (and (not edit-at)
  4105. (stringp string)
  4106. (string-match "\\S-" string))
  4107. (setq string (read-string
  4108. (if org-agenda-search-view-always-boolean
  4109. "[+-]Word/{Regexp} ...: "
  4110. "Phrase or [+-]Word/{Regexp} ...: ")
  4111. (cond
  4112. ((integerp edit-at) (cons string edit-at))
  4113. (edit-at string))
  4114. 'org-agenda-search-history)))
  4115. (catch 'exit
  4116. (if org-agenda-sticky
  4117. (setq org-agenda-buffer-name
  4118. (if (stringp string)
  4119. (format "*Org Agenda(%s:%s)*"
  4120. (or org-keys (or (and todo-only "S") "s")) string)
  4121. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4122. (org-agenda-prepare "SEARCH")
  4123. (org-compile-prefix-format 'search)
  4124. (org-set-sorting-strategy 'search)
  4125. (setq org-agenda-redo-command
  4126. (list 'org-search-view (if todo-only t nil)
  4127. (list 'if 'current-prefix-arg nil string)))
  4128. (setq org-agenda-query-string string)
  4129. (if (equal (string-to-char string) ?*)
  4130. (setq hdl-only t
  4131. words (substring string 1))
  4132. (setq words string))
  4133. (when (equal (string-to-char words) ?!)
  4134. (setq todo-only t
  4135. words (substring words 1)))
  4136. (when (equal (string-to-char words) ?:)
  4137. (setq full-words t
  4138. words (substring words 1)))
  4139. (if (or org-agenda-search-view-always-boolean
  4140. (member (string-to-char words) '(?- ?+ ?\{)))
  4141. (setq boolean t))
  4142. (setq words (org-split-string words))
  4143. (let (www w)
  4144. (while (setq w (pop words))
  4145. (while (and (string-match "\\\\\\'" w) words)
  4146. (setq w (concat (substring w 0 -1) " " (pop words))))
  4147. (push w www))
  4148. (setq words (nreverse www) www nil)
  4149. (while (setq w (pop words))
  4150. (when (and (string-match "\\`[-+]?{" w)
  4151. (not (string-match "}\\'" w)))
  4152. (while (and words (not (string-match "}\\'" (car words))))
  4153. (setq w (concat w " " (pop words))))
  4154. (setq w (concat w " " (pop words))))
  4155. (push w www))
  4156. (setq words (nreverse www)))
  4157. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4158. (when boolean
  4159. (let (wds w)
  4160. (while (setq w (pop words))
  4161. (if (or (equal (substring w 0 1) "\"")
  4162. (and (> (length w) 1)
  4163. (member (substring w 0 1) '("+" "-"))
  4164. (equal (substring w 1 2) "\"")))
  4165. (while (and words (not (equal (substring w -1) "\"")))
  4166. (setq w (concat w " " (pop words)))))
  4167. (and (string-match "\\`\\([-+]?\\)\"" w)
  4168. (setq w (replace-match "\\1" nil nil w)))
  4169. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4170. (push w wds))
  4171. (setq words (nreverse wds))))
  4172. (if boolean
  4173. (mapc (lambda (w)
  4174. (setq c (string-to-char w))
  4175. (if (equal c ?-)
  4176. (setq neg t w (substring w 1))
  4177. (if (equal c ?+)
  4178. (setq neg nil w (substring w 1))
  4179. (setq neg nil)))
  4180. (if (string-match "\\`{.*}\\'" w)
  4181. (setq re (substring w 1 -1))
  4182. (if full-words
  4183. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4184. (setq re (regexp-quote (downcase w)))))
  4185. (if neg (push re regexps-) (push re regexps+)))
  4186. words)
  4187. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4188. regexps+))
  4189. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4190. (if (not regexps+)
  4191. (setq regexp org-outline-regexp-bol)
  4192. (setq regexp (pop regexps+))
  4193. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4194. regexp))))
  4195. (setq files (org-agenda-files nil 'ifmode))
  4196. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4197. (pop org-agenda-text-search-extra-files)
  4198. (setq files (org-add-archive-files files)))
  4199. (setq files (append files org-agenda-text-search-extra-files)
  4200. rtnall nil)
  4201. (while (setq file (pop files))
  4202. (setq ee nil)
  4203. (catch 'nextfile
  4204. (org-check-agenda-file file)
  4205. (setq buffer (if (file-exists-p file)
  4206. (org-get-agenda-file-buffer file)
  4207. (error "No such file %s" file)))
  4208. (if (not buffer)
  4209. ;; If file does not exist, make sure an error message is sent
  4210. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4211. file))))
  4212. (with-current-buffer buffer
  4213. (with-syntax-table (org-search-syntax-table)
  4214. (unless (derived-mode-p 'org-mode)
  4215. (error "Agenda file %s is not in `org-mode'" file))
  4216. (let ((case-fold-search t))
  4217. (save-excursion
  4218. (save-restriction
  4219. (if (eq buffer org-agenda-restrict)
  4220. (narrow-to-region org-agenda-restrict-begin
  4221. org-agenda-restrict-end)
  4222. (widen))
  4223. (goto-char (point-min))
  4224. (unless (or (org-at-heading-p)
  4225. (outline-next-heading))
  4226. (throw 'nextfile t))
  4227. (goto-char (max (point-min) (1- (point))))
  4228. (while (re-search-forward regexp nil t)
  4229. (org-back-to-heading t)
  4230. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4231. (> (org-reduced-level (org-outline-level))
  4232. org-agenda-search-view-max-outline-level)
  4233. (forward-line -1)
  4234. (org-back-to-heading t)))
  4235. (skip-chars-forward "* ")
  4236. (setq beg (point-at-bol)
  4237. beg1 (point)
  4238. end (progn
  4239. (outline-next-heading)
  4240. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4241. (> (org-reduced-level (org-outline-level))
  4242. org-agenda-search-view-max-outline-level)
  4243. (forward-line 1)
  4244. (outline-next-heading)))
  4245. (point)))
  4246. (catch :skip
  4247. (goto-char beg)
  4248. (org-agenda-skip)
  4249. (setq str (buffer-substring-no-properties
  4250. (point-at-bol)
  4251. (if hdl-only (point-at-eol) end)))
  4252. (mapc (lambda (wr) (when (string-match wr str)
  4253. (goto-char (1- end))
  4254. (throw :skip t)))
  4255. regexps-)
  4256. (mapc (lambda (wr) (unless (string-match wr str)
  4257. (goto-char (1- end))
  4258. (throw :skip t)))
  4259. (if todo-only
  4260. (cons (concat "^\\*+[ \t]+"
  4261. org-not-done-regexp)
  4262. regexps+)
  4263. regexps+))
  4264. (goto-char beg)
  4265. (setq marker (org-agenda-new-marker (point))
  4266. category (org-get-category)
  4267. level (make-string (org-reduced-level (org-outline-level)) ? )
  4268. inherited-tags
  4269. (or (eq org-agenda-show-inherited-tags 'always)
  4270. (and (listp org-agenda-show-inherited-tags)
  4271. (memq 'todo org-agenda-show-inherited-tags))
  4272. (and (eq org-agenda-show-inherited-tags t)
  4273. (or (eq org-agenda-use-tag-inheritance t)
  4274. (memq 'todo org-agenda-use-tag-inheritance))))
  4275. tags (org-get-tags-at nil (not inherited-tags))
  4276. txt (org-agenda-format-item
  4277. ""
  4278. (buffer-substring-no-properties
  4279. beg1 (point-at-eol))
  4280. level category tags t))
  4281. (org-add-props txt props
  4282. 'org-marker marker 'org-hd-marker marker
  4283. 'org-todo-regexp org-todo-regexp
  4284. 'level level
  4285. 'org-complex-heading-regexp org-complex-heading-regexp
  4286. 'priority 1000
  4287. 'type "search")
  4288. (push txt ee)
  4289. (goto-char (1- end))))))))))
  4290. (setq rtn (nreverse ee))
  4291. (setq rtnall (append rtnall rtn)))
  4292. (if org-agenda-overriding-header
  4293. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4294. nil 'face 'org-agenda-structure) "\n")
  4295. (insert "Search words: ")
  4296. (add-text-properties (point-min) (1- (point))
  4297. (list 'face 'org-agenda-structure))
  4298. (setq pos (point))
  4299. (insert string "\n")
  4300. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4301. (setq pos (point))
  4302. (unless org-agenda-multi
  4303. (insert (substitute-command-keys "\
  4304. Press `\\[org-agenda-manipulate-query-add]', \
  4305. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4306. `\\[org-agenda-manipulate-query-add-re]', \
  4307. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4308. `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
  4309. (add-text-properties pos (1- (point))
  4310. (list 'face 'org-agenda-structure))))
  4311. (org-agenda-mark-header-line (point-min))
  4312. (when rtnall
  4313. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4314. (goto-char (point-min))
  4315. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4316. (add-text-properties (point-min) (point-max)
  4317. `(org-agenda-type search
  4318. org-last-args (,todo-only ,string ,edit-at)
  4319. org-redo-cmd ,org-agenda-redo-command
  4320. org-series-cmd ,org-cmd))
  4321. (org-agenda-finalize)
  4322. (setq buffer-read-only t))))
  4323. ;;; Agenda TODO list
  4324. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4325. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4326. (concat
  4327. (if (or (equal keywords "ALL") (not keywords))
  4328. (propertize "ALL" 'face 'warning)
  4329. (mapconcat
  4330. (lambda (kw)
  4331. (propertize kw 'face (org-get-todo-face kw)))
  4332. (org-split-string keywords "|")
  4333. "|"))
  4334. "\n"))
  4335. (defvar org-select-this-todo-keyword nil)
  4336. (defvar org-last-arg nil)
  4337. ;;;###autoload
  4338. (defun org-todo-list (&optional arg)
  4339. "Show all (not done) TODO entries from all agenda file in a single list.
  4340. The prefix arg can be used to select a specific TODO keyword and limit
  4341. the list to these. When using \\[universal-argument], you will be prompted
  4342. for a keyword. A numeric prefix directly selects the Nth keyword in
  4343. `org-todo-keywords-1'."
  4344. (interactive "P")
  4345. (if org-agenda-overriding-arguments
  4346. (setq arg org-agenda-overriding-arguments))
  4347. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4348. (let* ((today (org-today))
  4349. (date (calendar-gregorian-from-absolute today))
  4350. (kwds org-todo-keywords-for-agenda)
  4351. (completion-ignore-case t)
  4352. (org-select-this-todo-keyword
  4353. (if (stringp arg) arg
  4354. (and arg (integerp arg) (> arg 0)
  4355. (nth (1- arg) kwds))))
  4356. rtn rtnall files file pos)
  4357. (when (equal arg '(4))
  4358. (setq org-select-this-todo-keyword
  4359. (completing-read "Keyword (or KWD1|K2D2|...): "
  4360. (mapcar #'list kwds) nil nil)))
  4361. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4362. (catch 'exit
  4363. (if org-agenda-sticky
  4364. (setq org-agenda-buffer-name
  4365. (if (stringp org-select-this-todo-keyword)
  4366. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4367. org-select-this-todo-keyword)
  4368. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4369. (org-agenda-prepare "TODO")
  4370. (org-compile-prefix-format 'todo)
  4371. (org-set-sorting-strategy 'todo)
  4372. (setq org-agenda-redo-command
  4373. `(org-todo-list (or (and (numberp current-prefix-arg)
  4374. current-prefix-arg)
  4375. ,org-select-this-todo-keyword
  4376. current-prefix-arg ,arg)))
  4377. (setq files (org-agenda-files nil 'ifmode)
  4378. rtnall nil)
  4379. (while (setq file (pop files))
  4380. (catch 'nextfile
  4381. (org-check-agenda-file file)
  4382. (setq rtn (org-agenda-get-day-entries file date :todo))
  4383. (setq rtnall (append rtnall rtn))))
  4384. (if org-agenda-overriding-header
  4385. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4386. nil 'face 'org-agenda-structure) "\n")
  4387. (insert "Global list of TODO items of type: ")
  4388. (add-text-properties (point-min) (1- (point))
  4389. (list 'face 'org-agenda-structure
  4390. 'short-heading
  4391. (concat "ToDo: "
  4392. (or org-select-this-todo-keyword "ALL"))))
  4393. (org-agenda-mark-header-line (point-min))
  4394. (insert (org-agenda-propertize-selected-todo-keywords
  4395. org-select-this-todo-keyword))
  4396. (setq pos (point))
  4397. (unless org-agenda-multi
  4398. (insert (substitute-command-keys "Available with \
  4399. `N \\[org-agenda-redo]': (0)[ALL]"))
  4400. (let ((n 0) s)
  4401. (mapc (lambda (x)
  4402. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4403. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4404. (insert "\n "))
  4405. (insert " " s))
  4406. kwds))
  4407. (insert "\n"))
  4408. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4409. (org-agenda-mark-header-line (point-min))
  4410. (when rtnall
  4411. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4412. (goto-char (point-min))
  4413. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4414. (add-text-properties (point-min) (point-max)
  4415. `(org-agenda-type todo
  4416. org-last-args ,arg
  4417. org-redo-cmd ,org-agenda-redo-command
  4418. org-series-cmd ,org-cmd))
  4419. (org-agenda-finalize)
  4420. (setq buffer-read-only t))))
  4421. ;;; Agenda tags match
  4422. ;;;###autoload
  4423. (defun org-tags-view (&optional todo-only match)
  4424. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4425. The prefix arg TODO-ONLY limits the search to TODO entries."
  4426. (interactive "P")
  4427. (if org-agenda-overriding-arguments
  4428. (setq todo-only (car org-agenda-overriding-arguments)
  4429. match (nth 1 org-agenda-overriding-arguments)))
  4430. (let* ((org-tags-match-list-sublevels
  4431. org-tags-match-list-sublevels)
  4432. (completion-ignore-case t)
  4433. rtn rtnall files file pos matcher
  4434. buffer)
  4435. (when (and (stringp match) (not (string-match "\\S-" match)))
  4436. (setq match nil))
  4437. (catch 'exit
  4438. (if org-agenda-sticky
  4439. (setq org-agenda-buffer-name
  4440. (if (stringp match)
  4441. (format "*Org Agenda(%s:%s)*"
  4442. (or org-keys (or (and todo-only "M") "m")) match)
  4443. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4444. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4445. ;; expanding tags within `org-make-tags-matcher'
  4446. (org-agenda-prepare (concat "TAGS " match))
  4447. (setq org--matcher-tags-todo-only todo-only
  4448. matcher (org-make-tags-matcher match)
  4449. match (car matcher)
  4450. matcher (cdr matcher))
  4451. (org-compile-prefix-format 'tags)
  4452. (org-set-sorting-strategy 'tags)
  4453. (setq org-agenda-query-string match)
  4454. (setq org-agenda-redo-command
  4455. (list 'org-tags-view
  4456. `(quote ,org--matcher-tags-todo-only)
  4457. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4458. (setq files (org-agenda-files nil 'ifmode)
  4459. rtnall nil)
  4460. (while (setq file (pop files))
  4461. (catch 'nextfile
  4462. (org-check-agenda-file file)
  4463. (setq buffer (if (file-exists-p file)
  4464. (org-get-agenda-file-buffer file)
  4465. (error "No such file %s" file)))
  4466. (if (not buffer)
  4467. ;; If file does not exist, error message to agenda
  4468. (setq rtn (list
  4469. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4470. rtnall (append rtnall rtn))
  4471. (with-current-buffer buffer
  4472. (unless (derived-mode-p 'org-mode)
  4473. (error "Agenda file %s is not in `org-mode'" file))
  4474. (save-excursion
  4475. (save-restriction
  4476. (if (eq buffer org-agenda-restrict)
  4477. (narrow-to-region org-agenda-restrict-begin
  4478. org-agenda-restrict-end)
  4479. (widen))
  4480. (setq rtn (org-scan-tags 'agenda
  4481. matcher
  4482. org--matcher-tags-todo-only))
  4483. (setq rtnall (append rtnall rtn))))))))
  4484. (if org-agenda-overriding-header
  4485. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4486. nil 'face 'org-agenda-structure) "\n")
  4487. (insert "Headlines with TAGS match: ")
  4488. (add-text-properties (point-min) (1- (point))
  4489. (list 'face 'org-agenda-structure
  4490. 'short-heading
  4491. (concat "Match: " match)))
  4492. (setq pos (point))
  4493. (insert match "\n")
  4494. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4495. (setq pos (point))
  4496. (unless org-agenda-multi
  4497. (insert (substitute-command-keys
  4498. "Press `\\[universal-argument] \\[org-agenda-redo]' \
  4499. to search again with new search string\n")))
  4500. (add-text-properties pos (1- (point))
  4501. (list 'face 'org-agenda-structure)))
  4502. (org-agenda-mark-header-line (point-min))
  4503. (when rtnall
  4504. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4505. (goto-char (point-min))
  4506. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4507. (add-text-properties
  4508. (point-min) (point-max)
  4509. `(org-agenda-type tags
  4510. org-last-args (,org--matcher-tags-todo-only ,match)
  4511. org-redo-cmd ,org-agenda-redo-command
  4512. org-series-cmd ,org-cmd))
  4513. (org-agenda-finalize)
  4514. (setq buffer-read-only t))))
  4515. ;;; Agenda Finding stuck projects
  4516. (defvar org-agenda-skip-regexp nil
  4517. "Regular expression used in skipping subtrees for the agenda.
  4518. This is basically a temporary global variable that can be set and then
  4519. used by user-defined selections using `org-agenda-skip-function'.")
  4520. (defvar org-agenda-overriding-header nil
  4521. "When set during agenda, todo and tags searches it replaces the header.
  4522. This variable should not be set directly, but custom commands can bind it
  4523. in the options section.")
  4524. (defun org-agenda-skip-entry-when-regexp-matches ()
  4525. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4526. If yes, it returns the end position of this entry, causing agenda commands
  4527. to skip the entry but continuing the search in the subtree. This is a
  4528. function that can be put into `org-agenda-skip-function' for the duration
  4529. of a command."
  4530. (let ((end (save-excursion (org-end-of-subtree t)))
  4531. skip)
  4532. (save-excursion
  4533. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4534. (and skip end)))
  4535. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4536. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4537. If yes, it returns the end position of this tree, causing agenda commands
  4538. to skip this subtree. This is a function that can be put into
  4539. `org-agenda-skip-function' for the duration of a command."
  4540. (let ((end (save-excursion (org-end-of-subtree t)))
  4541. skip)
  4542. (save-excursion
  4543. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4544. (and skip end)))
  4545. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4546. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4547. If yes, it returns the end position of the current entry (NOT the tree),
  4548. causing agenda commands to skip the entry but continuing the search in
  4549. the subtree. This is a function that can be put into
  4550. `org-agenda-skip-function' for the duration of a command. An important
  4551. use of this function is for the stuck project list."
  4552. (let ((end (save-excursion (org-end-of-subtree t)))
  4553. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4554. skip)
  4555. (save-excursion
  4556. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4557. (and skip entry-end)))
  4558. (defun org-agenda-skip-entry-if (&rest conditions)
  4559. "Skip entry if any of CONDITIONS is true.
  4560. See `org-agenda-skip-if' for details."
  4561. (org-agenda-skip-if nil conditions))
  4562. (defun org-agenda-skip-subtree-if (&rest conditions)
  4563. "Skip subtree if any of CONDITIONS is true.
  4564. See `org-agenda-skip-if' for details."
  4565. (org-agenda-skip-if t conditions))
  4566. (defun org-agenda-skip-if (subtree conditions)
  4567. "Checks current entity for CONDITIONS.
  4568. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4569. the entry (i.e. the text before the next heading) is checked.
  4570. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4571. from different tests. Valid conditions are:
  4572. scheduled Check if there is a scheduled cookie
  4573. notscheduled Check if there is no scheduled cookie
  4574. deadline Check if there is a deadline
  4575. notdeadline Check if there is no deadline
  4576. timestamp Check if there is a timestamp (also deadline or scheduled)
  4577. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4578. regexp Check if regexp matches
  4579. notregexp Check if regexp does not match.
  4580. todo Check if TODO keyword matches
  4581. nottodo Check if TODO keyword does not match
  4582. The regexp is taken from the conditions list, it must come right after
  4583. the `regexp' or `notregexp' element.
  4584. `todo' and `nottodo' accept as an argument a list of todo
  4585. keywords, which may include \"*\" to match any todo keyword.
  4586. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4587. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4588. Instead of a list, a keyword class may be given. For example:
  4589. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4590. would skip entries that haven't been marked with any of \"DONE\"
  4591. keywords. Possible classes are: `todo', `done', `any'.
  4592. If any of these conditions is met, this function returns the end point of
  4593. the entity, causing the search to continue from there. This is a function
  4594. that can be put into `org-agenda-skip-function' for the duration of a command."
  4595. (let (beg end m)
  4596. (org-back-to-heading t)
  4597. (setq beg (point)
  4598. end (if subtree
  4599. (progn (org-end-of-subtree t) (point))
  4600. (progn (outline-next-heading) (1- (point)))))
  4601. (goto-char beg)
  4602. (and
  4603. (or
  4604. (and (memq 'scheduled conditions)
  4605. (re-search-forward org-scheduled-time-regexp end t))
  4606. (and (memq 'notscheduled conditions)
  4607. (not (re-search-forward org-scheduled-time-regexp end t)))
  4608. (and (memq 'deadline conditions)
  4609. (re-search-forward org-deadline-time-regexp end t))
  4610. (and (memq 'notdeadline conditions)
  4611. (not (re-search-forward org-deadline-time-regexp end t)))
  4612. (and (memq 'timestamp conditions)
  4613. (re-search-forward org-ts-regexp end t))
  4614. (and (memq 'nottimestamp conditions)
  4615. (not (re-search-forward org-ts-regexp end t)))
  4616. (and (setq m (memq 'regexp conditions))
  4617. (stringp (nth 1 m))
  4618. (re-search-forward (nth 1 m) end t))
  4619. (and (setq m (memq 'notregexp conditions))
  4620. (stringp (nth 1 m))
  4621. (not (re-search-forward (nth 1 m) end t)))
  4622. (and (or
  4623. (setq m (memq 'nottodo conditions))
  4624. (setq m (memq 'todo-unblocked conditions))
  4625. (setq m (memq 'nottodo-unblocked conditions))
  4626. (setq m (memq 'todo conditions)))
  4627. (org-agenda-skip-if-todo m end)))
  4628. end)))
  4629. (defun org-agenda-skip-if-todo (args end)
  4630. "Helper function for `org-agenda-skip-if', do not use it directly.
  4631. ARGS is a list with first element either `todo', `nottodo',
  4632. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4633. a list of TODO keywords, or a state symbol `todo' or `done' or
  4634. `any'."
  4635. (let ((kw (car args))
  4636. (arg (cadr args))
  4637. todo-wds todo-re)
  4638. (setq todo-wds
  4639. (org-uniquify
  4640. (cond
  4641. ((listp arg) ;; list of keywords
  4642. (if (member "*" arg)
  4643. (mapcar 'substring-no-properties org-todo-keywords-1)
  4644. arg))
  4645. ((symbolp arg) ;; keyword class name
  4646. (cond
  4647. ((eq arg 'todo)
  4648. (org-delete-all org-done-keywords
  4649. (mapcar 'substring-no-properties
  4650. org-todo-keywords-1)))
  4651. ((eq arg 'done) org-done-keywords)
  4652. ((eq arg 'any)
  4653. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4654. (setq todo-re
  4655. (concat "^\\*+[ \t]+\\<\\("
  4656. (mapconcat 'identity todo-wds "\\|")
  4657. "\\)\\>"))
  4658. (cond
  4659. ((eq kw 'todo) (re-search-forward todo-re end t))
  4660. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4661. ((eq kw 'todo-unblocked)
  4662. (catch 'unblocked
  4663. (while (re-search-forward todo-re end t)
  4664. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4665. nil))
  4666. ((eq kw 'nottodo-unblocked)
  4667. (catch 'unblocked
  4668. (while (re-search-forward todo-re end t)
  4669. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4670. t))
  4671. )))
  4672. ;;;###autoload
  4673. (defun org-agenda-list-stuck-projects (&rest ignore)
  4674. "Create agenda view for projects that are stuck.
  4675. Stuck projects are project that have no next actions. For the definitions
  4676. of what a project is and how to check if it stuck, customize the variable
  4677. `org-stuck-projects'."
  4678. (interactive)
  4679. (let* ((org-agenda-skip-function
  4680. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4681. ;; We could have used org-agenda-skip-if here.
  4682. (org-agenda-overriding-header
  4683. (or org-agenda-overriding-header "List of stuck projects: "))
  4684. (matcher (nth 0 org-stuck-projects))
  4685. (todo (nth 1 org-stuck-projects))
  4686. (todo-wds (if (member "*" todo)
  4687. (progn
  4688. (org-agenda-prepare-buffers (org-agenda-files
  4689. nil 'ifmode))
  4690. (org-delete-all
  4691. org-done-keywords-for-agenda
  4692. (copy-sequence org-todo-keywords-for-agenda)))
  4693. todo))
  4694. (todo-re (concat "^\\*+[ \t]+\\("
  4695. (mapconcat 'identity todo-wds "\\|")
  4696. "\\)\\>"))
  4697. (tags (nth 2 org-stuck-projects))
  4698. (tags-re (if (member "*" tags)
  4699. (concat org-outline-regexp-bol
  4700. ".*:[[:alnum:]_@#%]+:[ \t]*$")
  4701. (if tags
  4702. (concat org-outline-regexp-bol
  4703. ".*:\\("
  4704. (mapconcat #'identity tags "\\|")
  4705. "\\):[[:alnum:]_@#%:]*[ \t]*$"))))
  4706. (gen-re (nth 3 org-stuck-projects))
  4707. (re-list
  4708. (delq nil
  4709. (list
  4710. (if todo todo-re)
  4711. (if tags tags-re)
  4712. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4713. gen-re)))))
  4714. (setq org-agenda-skip-regexp
  4715. (if re-list
  4716. (mapconcat 'identity re-list "\\|")
  4717. (error "No information how to identify unstuck projects")))
  4718. (org-tags-view nil matcher)
  4719. (setq org-agenda-buffer-name (buffer-name))
  4720. (with-current-buffer org-agenda-buffer-name
  4721. (setq org-agenda-redo-command
  4722. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4723. ;;; Diary integration
  4724. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4725. (defvar diary-list-entries-hook)
  4726. (defvar diary-time-regexp)
  4727. (defun org-get-entries-from-diary (date)
  4728. "Get the (Emacs Calendar) diary entries for DATE."
  4729. (require 'diary-lib)
  4730. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4731. (diary-display-function 'diary-fancy-display)
  4732. (pop-up-frames nil)
  4733. (diary-list-entries-hook
  4734. (cons 'org-diary-default-entry diary-list-entries-hook))
  4735. (diary-file-name-prefix nil) ; turn this feature off
  4736. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4737. entries
  4738. (org-disable-agenda-to-diary t))
  4739. (save-excursion
  4740. (save-window-excursion
  4741. (funcall (if (fboundp 'diary-list-entries)
  4742. 'diary-list-entries 'list-diary-entries)
  4743. date 1)))
  4744. (if (not (get-buffer diary-fancy-buffer))
  4745. (setq entries nil)
  4746. (with-current-buffer diary-fancy-buffer
  4747. (setq buffer-read-only nil)
  4748. (if (zerop (buffer-size))
  4749. ;; No entries
  4750. (setq entries nil)
  4751. ;; Omit the date and other unnecessary stuff
  4752. (org-agenda-cleanup-fancy-diary)
  4753. ;; Add prefix to each line and extend the text properties
  4754. (if (zerop (buffer-size))
  4755. (setq entries nil)
  4756. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4757. (setq entries
  4758. (with-temp-buffer
  4759. (insert entries) (goto-char (point-min))
  4760. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4761. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4762. (replace-match (concat "; " (match-string 1)))))
  4763. (buffer-string)))))
  4764. (set-buffer-modified-p nil)
  4765. (kill-buffer diary-fancy-buffer)))
  4766. (when entries
  4767. (setq entries (org-split-string entries "\n"))
  4768. (setq entries
  4769. (mapcar
  4770. (lambda (x)
  4771. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4772. ;; Extend the text properties to the beginning of the line
  4773. (org-add-props x (text-properties-at (1- (length x)) x)
  4774. 'type "diary" 'date date 'face 'org-agenda-diary))
  4775. entries)))))
  4776. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4777. "Hook run when the fancy diary buffer is cleaned up.")
  4778. (defun org-agenda-cleanup-fancy-diary ()
  4779. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4780. This gets rid of the date, the underline under the date, and
  4781. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4782. date. It also removes lines that contain only whitespace."
  4783. (goto-char (point-min))
  4784. (if (looking-at ".*?:[ \t]*")
  4785. (progn
  4786. (replace-match "")
  4787. (re-search-forward "\n=+$" nil t)
  4788. (replace-match "")
  4789. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4790. (re-search-forward "\n=+$" nil t)
  4791. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4792. (goto-char (point-min))
  4793. (while (re-search-forward "^ +\n" nil t)
  4794. (replace-match ""))
  4795. (goto-char (point-min))
  4796. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4797. (replace-match ""))
  4798. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4799. ;; Make sure entries from the diary have the right text properties.
  4800. (eval-after-load "diary-lib"
  4801. '(if (boundp 'diary-modify-entry-list-string-function)
  4802. ;; We can rely on the hook, nothing to do
  4803. nil
  4804. ;; Hook not available, must use advice to make this work
  4805. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4806. "Make the position visible."
  4807. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4808. (stringp string)
  4809. buffer-file-name)
  4810. (setq string (org-modify-diary-entry-string string))))))
  4811. (defun org-modify-diary-entry-string (string)
  4812. "Add text properties to string, allowing org-mode to act on it."
  4813. (org-add-props string nil
  4814. 'mouse-face 'highlight
  4815. 'help-echo (if buffer-file-name
  4816. (format "mouse-2 or RET jump to diary file %s"
  4817. (abbreviate-file-name buffer-file-name))
  4818. "")
  4819. 'org-agenda-diary-link t
  4820. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4821. (defun org-diary-default-entry ()
  4822. "Add a dummy entry to the diary.
  4823. Needed to avoid empty dates which mess up holiday display."
  4824. ;; Catch the error if dealing with the new add-to-diary-alist
  4825. (when org-disable-agenda-to-diary
  4826. (condition-case nil
  4827. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4828. (error
  4829. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4830. (defun org-add-to-diary-list (&rest args)
  4831. (if (fboundp 'diary-add-to-list)
  4832. (apply 'diary-add-to-list args)
  4833. (apply 'add-to-diary-list args)))
  4834. (defvar org-diary-last-run-time nil)
  4835. ;;;###autoload
  4836. (defun org-diary (&rest args)
  4837. "Return diary information from org files.
  4838. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4839. It accesses org files and extracts information from those files to be
  4840. listed in the diary. The function accepts arguments specifying what
  4841. items should be listed. For a list of arguments allowed here, see the
  4842. variable `org-agenda-entry-types'.
  4843. The call in the diary file should look like this:
  4844. &%%(org-diary) ~/path/to/some/orgfile.org
  4845. Use a separate line for each org file to check. Or, if you omit the file name,
  4846. all files listed in `org-agenda-files' will be checked automatically:
  4847. &%%(org-diary)
  4848. If you don't give any arguments (as in the example above), the default value
  4849. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4850. So the example above may also be written as
  4851. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4852. The function expects the lisp variables `entry' and `date' to be provided
  4853. by the caller, because this is how the calendar works. Don't use this
  4854. function from a program - use `org-agenda-get-day-entries' instead."
  4855. (when (> (- (float-time)
  4856. org-agenda-last-marker-time)
  4857. 5)
  4858. ;; I am not sure if this works with sticky agendas, because the marker
  4859. ;; list is then no longer a global variable.
  4860. (org-agenda-reset-markers))
  4861. (org-compile-prefix-format 'agenda)
  4862. (org-set-sorting-strategy 'agenda)
  4863. (setq args (or args org-agenda-entry-types))
  4864. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4865. (list entry)
  4866. (org-agenda-files t)))
  4867. (time (float-time))
  4868. file rtn results)
  4869. (when (or (not org-diary-last-run-time)
  4870. (> (- time
  4871. org-diary-last-run-time)
  4872. 3))
  4873. (org-agenda-prepare-buffers files))
  4874. (setq org-diary-last-run-time time)
  4875. ;; If this is called during org-agenda, don't return any entries to
  4876. ;; the calendar. Org Agenda will list these entries itself.
  4877. (if org-disable-agenda-to-diary (setq files nil))
  4878. (while (setq file (pop files))
  4879. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4880. (setq results (append results rtn)))
  4881. (when results
  4882. (setq results
  4883. (mapcar (lambda (i) (replace-regexp-in-string
  4884. org-bracket-link-regexp "\\3" i)) results))
  4885. (concat (org-agenda-finalize-entries results) "\n"))))
  4886. ;;; Agenda entry finders
  4887. (defun org-agenda--timestamp-to-absolute (&rest args)
  4888. "Call `org-time-string-to-absolute' with ARGS.
  4889. However, throw `:skip' whenever an error is raised."
  4890. (condition-case e
  4891. (apply #'org-time-string-to-absolute args)
  4892. (org-diary-sexp-no-match (throw :skip nil))
  4893. (error
  4894. (message "%s; Skipping entry" (error-message-string e))
  4895. (throw :skip nil))))
  4896. (defun org-agenda-get-day-entries (file date &rest args)
  4897. "Does the work for `org-diary' and `org-agenda'.
  4898. FILE is the path to a file to be checked for entries. DATE is date like
  4899. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4900. which kind of entries should be extracted. For details about these, see
  4901. the documentation of `org-diary'."
  4902. (let* ((org-startup-folded nil)
  4903. (org-startup-align-all-tables nil)
  4904. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4905. (error "No such file %s" file))))
  4906. (if (not buffer)
  4907. ;; If file does not exist, signal it in diary nonetheless.
  4908. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4909. (with-current-buffer buffer
  4910. (unless (derived-mode-p 'org-mode)
  4911. (error "Agenda file %s is not in `org-mode'" file))
  4912. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4913. (setf org-agenda-current-date date)
  4914. (save-excursion
  4915. (save-restriction
  4916. (if (eq buffer org-agenda-restrict)
  4917. (narrow-to-region org-agenda-restrict-begin
  4918. org-agenda-restrict-end)
  4919. (widen))
  4920. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4921. ;; first in order to populate DEADLINES before passing it.
  4922. ;;
  4923. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4924. ;; guarding us from modifying `org-agenda-entry-types'.
  4925. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4926. (when (and (memq :scheduled args) (memq :scheduled* args))
  4927. (setf args (delq :scheduled* args)))
  4928. (cond
  4929. ((memq :deadline args)
  4930. (setf args (cons :deadline
  4931. (delq :deadline (delq :deadline* args)))))
  4932. ((memq :deadline* args)
  4933. (setf args (cons :deadline* (delq :deadline* args)))))
  4934. ;; Collect list of headlines. Return them flattened.
  4935. (let ((case-fold-search nil) results deadlines)
  4936. (dolist (arg args (apply #'nconc (nreverse results)))
  4937. (pcase arg
  4938. ((and :todo (guard (org-agenda-today-p date)))
  4939. (push (org-agenda-get-todos) results))
  4940. (:timestamp
  4941. (push (org-agenda-get-blocks) results)
  4942. (push (org-agenda-get-timestamps deadlines) results))
  4943. (:sexp
  4944. (push (org-agenda-get-sexps) results))
  4945. (:scheduled
  4946. (push (org-agenda-get-scheduled deadlines) results))
  4947. (:scheduled*
  4948. (push (org-agenda-get-scheduled deadlines t) results))
  4949. (:closed
  4950. (push (org-agenda-get-progress) results))
  4951. (:deadline
  4952. (setf deadlines (org-agenda-get-deadlines))
  4953. (push deadlines results))
  4954. (:deadline*
  4955. (setf deadlines (org-agenda-get-deadlines t))
  4956. (push deadlines results)))))))))))
  4957. (defsubst org-em (x y list)
  4958. "Is X or Y a member of LIST?"
  4959. (or (memq x list) (memq y list)))
  4960. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4961. (defvar org-agenda-sorting-strategy-selected nil)
  4962. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4963. "Retrieve timestamp information for sorting agenda views.
  4964. Given a point or marker POM, returns a cons cell of the timestamp
  4965. and the timestamp type relevant for the sorting strategy in
  4966. `org-agenda-sorting-strategy-selected'."
  4967. (let (ts ts-date-type)
  4968. (save-match-data
  4969. (cond ((org-em 'scheduled-up 'scheduled-down
  4970. org-agenda-sorting-strategy-selected)
  4971. (setq ts (org-entry-get pom "SCHEDULED")
  4972. ts-date-type " scheduled"))
  4973. ((org-em 'deadline-up 'deadline-down
  4974. org-agenda-sorting-strategy-selected)
  4975. (setq ts (org-entry-get pom "DEADLINE")
  4976. ts-date-type " deadline"))
  4977. ((org-em 'ts-up 'ts-down
  4978. org-agenda-sorting-strategy-selected)
  4979. (setq ts (org-entry-get pom "TIMESTAMP")
  4980. ts-date-type " timestamp"))
  4981. ((org-em 'tsia-up 'tsia-down
  4982. org-agenda-sorting-strategy-selected)
  4983. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4984. ts-date-type " timestamp_ia"))
  4985. ((org-em 'timestamp-up 'timestamp-down
  4986. org-agenda-sorting-strategy-selected)
  4987. (setq ts (or (org-entry-get pom "SCHEDULED")
  4988. (org-entry-get pom "DEADLINE")
  4989. (org-entry-get pom "TIMESTAMP")
  4990. (org-entry-get pom "TIMESTAMP_IA"))
  4991. ts-date-type ""))
  4992. (t (setq ts-date-type "")))
  4993. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4994. ts-date-type))))
  4995. (defun org-agenda-get-todos ()
  4996. "Return the TODO information for agenda display."
  4997. (let* ((props (list 'face nil
  4998. 'done-face 'org-agenda-done
  4999. 'org-not-done-regexp org-not-done-regexp
  5000. 'org-todo-regexp org-todo-regexp
  5001. 'org-complex-heading-regexp org-complex-heading-regexp
  5002. 'mouse-face 'highlight
  5003. 'help-echo
  5004. (format "mouse-2 or RET jump to org file %s"
  5005. (abbreviate-file-name buffer-file-name))))
  5006. (regexp (format org-heading-keyword-regexp-format
  5007. (cond
  5008. ((and org-select-this-todo-keyword
  5009. (equal org-select-this-todo-keyword "*"))
  5010. org-todo-regexp)
  5011. (org-select-this-todo-keyword
  5012. (concat "\\("
  5013. (mapconcat 'identity
  5014. (org-split-string
  5015. org-select-this-todo-keyword
  5016. "|")
  5017. "\\|") "\\)"))
  5018. (t org-not-done-regexp))))
  5019. marker priority category level tags todo-state
  5020. ts-date ts-date-type ts-date-pair
  5021. ee txt beg end inherited-tags todo-state-end-pos)
  5022. (goto-char (point-min))
  5023. (while (re-search-forward regexp nil t)
  5024. (catch :skip
  5025. (save-match-data
  5026. (beginning-of-line)
  5027. (org-agenda-skip)
  5028. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5029. (unless (and (setq todo-state (org-get-todo-state))
  5030. (setq todo-state-end-pos (match-end 2)))
  5031. (goto-char end)
  5032. (throw :skip nil))
  5033. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5034. (goto-char (1+ beg))
  5035. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5036. (throw :skip nil)))
  5037. (goto-char (match-beginning 2))
  5038. (setq marker (org-agenda-new-marker (match-beginning 0))
  5039. category (org-get-category)
  5040. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5041. ts-date (car ts-date-pair)
  5042. ts-date-type (cdr ts-date-pair)
  5043. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5044. inherited-tags
  5045. (or (eq org-agenda-show-inherited-tags 'always)
  5046. (and (listp org-agenda-show-inherited-tags)
  5047. (memq 'todo org-agenda-show-inherited-tags))
  5048. (and (eq org-agenda-show-inherited-tags t)
  5049. (or (eq org-agenda-use-tag-inheritance t)
  5050. (memq 'todo org-agenda-use-tag-inheritance))))
  5051. tags (org-get-tags-at nil (not inherited-tags))
  5052. level (make-string (org-reduced-level (org-outline-level)) ? )
  5053. txt (org-agenda-format-item "" txt level category tags t)
  5054. priority (1+ (org-get-priority txt)))
  5055. (org-add-props txt props
  5056. 'org-marker marker 'org-hd-marker marker
  5057. 'priority priority
  5058. 'level level
  5059. 'ts-date ts-date
  5060. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5061. (push txt ee)
  5062. (if org-agenda-todo-list-sublevels
  5063. (goto-char todo-state-end-pos)
  5064. (org-end-of-subtree 'invisible))))
  5065. (nreverse ee)))
  5066. (defun org-agenda-todo-custom-ignore-p (time n)
  5067. "Check whether timestamp is farther away than n number of days.
  5068. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5069. `org-agenda-todo-ignore-scheduled' or
  5070. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5071. (let ((days (org-time-stamp-to-now
  5072. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5073. (if (>= n 0)
  5074. (>= days n)
  5075. (<= days n))))
  5076. ;;;###autoload
  5077. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5078. (&optional end)
  5079. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5080. (when (or org-agenda-todo-ignore-with-date
  5081. org-agenda-todo-ignore-scheduled
  5082. org-agenda-todo-ignore-deadlines
  5083. org-agenda-todo-ignore-timestamp)
  5084. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5085. (save-excursion
  5086. (or (and org-agenda-todo-ignore-with-date
  5087. (re-search-forward org-ts-regexp end t))
  5088. (and org-agenda-todo-ignore-scheduled
  5089. (re-search-forward org-scheduled-time-regexp end t)
  5090. (cond
  5091. ((eq org-agenda-todo-ignore-scheduled 'future)
  5092. (> (org-time-stamp-to-now
  5093. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5094. ((eq org-agenda-todo-ignore-scheduled 'past)
  5095. (<= (org-time-stamp-to-now
  5096. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5097. ((numberp org-agenda-todo-ignore-scheduled)
  5098. (org-agenda-todo-custom-ignore-p
  5099. (match-string 1) org-agenda-todo-ignore-scheduled))
  5100. (t)))
  5101. (and org-agenda-todo-ignore-deadlines
  5102. (re-search-forward org-deadline-time-regexp end t)
  5103. (cond
  5104. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5105. ((eq org-agenda-todo-ignore-deadlines 'far)
  5106. (not (org-deadline-close-p (match-string 1))))
  5107. ((eq org-agenda-todo-ignore-deadlines 'future)
  5108. (> (org-time-stamp-to-now
  5109. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5110. ((eq org-agenda-todo-ignore-deadlines 'past)
  5111. (<= (org-time-stamp-to-now
  5112. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5113. ((numberp org-agenda-todo-ignore-deadlines)
  5114. (org-agenda-todo-custom-ignore-p
  5115. (match-string 1) org-agenda-todo-ignore-deadlines))
  5116. (t (org-deadline-close-p (match-string 1)))))
  5117. (and org-agenda-todo-ignore-timestamp
  5118. (let ((buffer (current-buffer))
  5119. (regexp
  5120. (concat
  5121. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5122. (start (point)))
  5123. ;; Copy current buffer into a temporary one
  5124. (with-temp-buffer
  5125. (insert-buffer-substring buffer start end)
  5126. (goto-char (point-min))
  5127. ;; Delete SCHEDULED and DEADLINE items
  5128. (while (re-search-forward regexp end t)
  5129. (delete-region (match-beginning 0) (match-end 0)))
  5130. (goto-char (point-min))
  5131. ;; No search for timestamp left
  5132. (when (re-search-forward org-ts-regexp nil t)
  5133. (cond
  5134. ((eq org-agenda-todo-ignore-timestamp 'future)
  5135. (> (org-time-stamp-to-now
  5136. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5137. ((eq org-agenda-todo-ignore-timestamp 'past)
  5138. (<= (org-time-stamp-to-now
  5139. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5140. ((numberp org-agenda-todo-ignore-timestamp)
  5141. (org-agenda-todo-custom-ignore-p
  5142. (match-string 1) org-agenda-todo-ignore-timestamp))
  5143. (t))))))))))
  5144. (defun org-agenda-get-timestamps (&optional deadline-results)
  5145. "Return the date stamp information for agenda display."
  5146. (let* ((props (list 'face 'org-agenda-calendar-event
  5147. 'org-not-done-regexp org-not-done-regexp
  5148. 'org-todo-regexp org-todo-regexp
  5149. 'org-complex-heading-regexp org-complex-heading-regexp
  5150. 'mouse-face 'highlight
  5151. 'help-echo
  5152. (format "mouse-2 or RET jump to org file %s"
  5153. (abbreviate-file-name buffer-file-name))))
  5154. (d1 (calendar-absolute-from-gregorian date))
  5155. mm
  5156. (deadline-position-alist
  5157. (mapcar (lambda (a) (and (setq mm (get-text-property
  5158. 0 'org-hd-marker a))
  5159. (cons (marker-position mm) a)))
  5160. deadline-results))
  5161. (remove-re org-ts-regexp)
  5162. (regexp
  5163. (concat
  5164. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5165. (regexp-quote
  5166. (substring
  5167. (format-time-string
  5168. (car org-time-stamp-formats)
  5169. (apply 'encode-time ; DATE bound by calendar
  5170. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5171. 1 11))
  5172. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5173. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5174. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5175. donep tmp priority category level ee txt timestr tags
  5176. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5177. inherited-tags ts-date)
  5178. (goto-char (point-min))
  5179. (while (setq end-of-match (re-search-forward regexp nil t))
  5180. (setq b0 (match-beginning 0)
  5181. b3 (match-beginning 3) e3 (match-end 3)
  5182. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5183. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5184. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5185. (member todo-state
  5186. org-agenda-repeating-timestamp-show-all)))
  5187. (catch :skip
  5188. (and (org-at-date-range-p) (throw :skip nil))
  5189. (org-agenda-skip)
  5190. (if (and (match-end 1)
  5191. (not (= d1 (org-agenda--timestamp-to-absolute
  5192. (match-string 1) d1 nil show-all
  5193. (current-buffer) b0))))
  5194. (throw :skip nil))
  5195. (if (and e3
  5196. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5197. (throw :skip nil))
  5198. (setq tmp (buffer-substring (max (point-min)
  5199. (- b0 org-ds-keyword-length))
  5200. b0)
  5201. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5202. inactivep (= (char-after b0) ?\[)
  5203. deadlinep (string-match org-deadline-regexp tmp)
  5204. scheduledp (string-match org-scheduled-regexp tmp)
  5205. closedp (and org-agenda-include-inactive-timestamps
  5206. (string-match org-closed-string tmp))
  5207. clockp (and org-agenda-include-inactive-timestamps
  5208. (or (string-match org-clock-string tmp)
  5209. (string-match "]-+\\'" tmp)))
  5210. warntime (get-text-property (point) 'org-appt-warntime)
  5211. donep (member todo-state org-done-keywords))
  5212. (if (or scheduledp deadlinep closedp clockp
  5213. (and donep org-agenda-skip-timestamp-if-done))
  5214. (throw :skip t))
  5215. (if (string-match ">" timestr)
  5216. ;; substring should only run to end of time stamp
  5217. (setq timestr (substring timestr 0 (match-end 0))))
  5218. (setq marker (org-agenda-new-marker b0)
  5219. category (org-get-category b0))
  5220. (save-excursion
  5221. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5222. (throw :skip nil)
  5223. (goto-char (match-beginning 0))
  5224. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5225. (assoc (point) deadline-position-alist))
  5226. (throw :skip nil))
  5227. (setq hdmarker (org-agenda-new-marker)
  5228. inherited-tags
  5229. (or (eq org-agenda-show-inherited-tags 'always)
  5230. (and (listp org-agenda-show-inherited-tags)
  5231. (memq 'agenda org-agenda-show-inherited-tags))
  5232. (and (eq org-agenda-show-inherited-tags t)
  5233. (or (eq org-agenda-use-tag-inheritance t)
  5234. (memq 'agenda org-agenda-use-tag-inheritance))))
  5235. tags (org-get-tags-at nil (not inherited-tags))
  5236. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5237. (looking-at "\\*+[ \t]+\\(.*\\)")
  5238. (setq head (match-string 1))
  5239. (setq txt (org-agenda-format-item
  5240. (if inactivep org-agenda-inactive-leader nil)
  5241. head level category tags timestr
  5242. remove-re habitp)))
  5243. (setq priority (org-get-priority txt))
  5244. (org-add-props txt props 'priority priority
  5245. 'org-marker marker 'org-hd-marker hdmarker
  5246. 'date date
  5247. 'level level
  5248. 'ts-date
  5249. (ignore-errors (org-time-string-to-absolute timestr))
  5250. 'todo-state todo-state
  5251. 'warntime warntime
  5252. 'type "timestamp")
  5253. (push txt ee))
  5254. (if org-agenda-skip-additional-timestamps-same-entry
  5255. (outline-next-heading)
  5256. (goto-char end-of-match))))
  5257. (nreverse ee)))
  5258. (defun org-agenda-get-sexps ()
  5259. "Return the sexp information for agenda display."
  5260. (require 'diary-lib)
  5261. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5262. 'mouse-face 'highlight
  5263. 'help-echo
  5264. (format "mouse-2 or RET jump to org file %s"
  5265. (abbreviate-file-name buffer-file-name))))
  5266. (regexp "^&?%%(")
  5267. marker category extra level ee txt tags entry
  5268. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5269. (goto-char (point-min))
  5270. (while (re-search-forward regexp nil t)
  5271. (catch :skip
  5272. (org-agenda-skip)
  5273. (setq beg (match-beginning 0))
  5274. (goto-char (1- (match-end 0)))
  5275. (setq b (point))
  5276. (forward-sexp 1)
  5277. (setq sexp (buffer-substring b (point)))
  5278. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5279. (org-trim (match-string 1))
  5280. ""))
  5281. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5282. (when result
  5283. (setq marker (org-agenda-new-marker beg)
  5284. level (make-string (org-reduced-level (org-outline-level)) ? )
  5285. category (org-get-category beg)
  5286. inherited-tags
  5287. (or (eq org-agenda-show-inherited-tags 'always)
  5288. (and (listp org-agenda-show-inherited-tags)
  5289. (memq 'agenda org-agenda-show-inherited-tags))
  5290. (and (eq org-agenda-show-inherited-tags t)
  5291. (or (eq org-agenda-use-tag-inheritance t)
  5292. (memq 'agenda org-agenda-use-tag-inheritance))))
  5293. tags (org-get-tags-at nil (not inherited-tags))
  5294. todo-state (org-get-todo-state)
  5295. warntime (get-text-property (point) 'org-appt-warntime)
  5296. extra nil)
  5297. (dolist (r (if (stringp result)
  5298. (list result)
  5299. result)) ;; we expect a list here
  5300. (when (and org-agenda-diary-sexp-prefix
  5301. (string-match org-agenda-diary-sexp-prefix r))
  5302. (setq extra (match-string 0 r)
  5303. r (replace-match "" nil nil r)))
  5304. (if (string-match "\\S-" r)
  5305. (setq txt r)
  5306. (setq txt "SEXP entry returned empty string"))
  5307. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5308. (org-add-props txt props 'org-marker marker
  5309. 'date date 'todo-state todo-state
  5310. 'level level 'type "sexp" 'warntime warntime)
  5311. (push txt ee)))))
  5312. (nreverse ee)))
  5313. ;; Calendar sanity: define some functions that are independent of
  5314. ;; `calendar-date-style'.
  5315. (defun org-anniversary (year month day &optional mark)
  5316. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5317. (with-no-warnings
  5318. (let ((calendar-date-style 'iso))
  5319. (diary-anniversary year month day mark))))
  5320. (defun org-cyclic (N year month day &optional mark)
  5321. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5322. (with-no-warnings
  5323. (let ((calendar-date-style 'iso))
  5324. (diary-cyclic N year month day mark))))
  5325. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5326. "Like `diary-block', but with fixed (ISO) order of arguments."
  5327. (with-no-warnings
  5328. (let ((calendar-date-style 'iso))
  5329. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5330. (defun org-date (year month day &optional mark)
  5331. "Like `diary-date', but with fixed (ISO) order of arguments."
  5332. (with-no-warnings
  5333. (let ((calendar-date-style 'iso))
  5334. (diary-date year month day mark))))
  5335. ;; Define the `org-class' function
  5336. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5337. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5338. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5339. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5340. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5341. `holidays', then any date that is known by the Emacs calendar to be a
  5342. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5343. then those holidays will be skipped."
  5344. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5345. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5346. (d (calendar-absolute-from-gregorian date))
  5347. (h (when skip-weeks (calendar-check-holidays date))))
  5348. (and
  5349. (<= date1 d)
  5350. (<= d date2)
  5351. (= (calendar-day-of-week date) dayname)
  5352. (or (not skip-weeks)
  5353. (progn
  5354. (require 'cal-iso)
  5355. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5356. (not (or (and h (memq 'holidays skip-weeks))
  5357. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5358. entry)))
  5359. (defalias 'org-get-closed 'org-agenda-get-progress)
  5360. (defun org-agenda-get-progress ()
  5361. "Return the logged TODO entries for agenda display."
  5362. (let* ((props (list 'mouse-face 'highlight
  5363. 'org-not-done-regexp org-not-done-regexp
  5364. 'org-todo-regexp org-todo-regexp
  5365. 'org-complex-heading-regexp org-complex-heading-regexp
  5366. 'help-echo
  5367. (format "mouse-2 or RET jump to org file %s"
  5368. (abbreviate-file-name buffer-file-name))))
  5369. (items (if (consp org-agenda-show-log-scoped)
  5370. org-agenda-show-log-scoped
  5371. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5372. '(clock)
  5373. org-agenda-log-mode-items)))
  5374. (parts
  5375. (delq nil
  5376. (list
  5377. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5378. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5379. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5380. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5381. (error "`org-agenda-log-mode-items' is empty")))
  5382. (regexp (concat
  5383. "\\(" parts-re "\\)"
  5384. " *\\["
  5385. (regexp-quote
  5386. (substring
  5387. (format-time-string
  5388. (car org-time-stamp-formats)
  5389. (apply 'encode-time ; DATE bound by calendar
  5390. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5391. 1 11))))
  5392. (org-agenda-search-headline-for-time nil)
  5393. marker hdmarker priority category level tags closedp
  5394. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5395. (goto-char (point-min))
  5396. (while (re-search-forward regexp nil t)
  5397. (catch :skip
  5398. (org-agenda-skip)
  5399. (setq marker (org-agenda-new-marker (match-beginning 0))
  5400. closedp (equal (match-string 1) org-closed-string)
  5401. statep (equal (string-to-char (match-string 1)) ?-)
  5402. clockp (not (or closedp statep))
  5403. state (and statep (match-string 2))
  5404. category (org-get-category (match-beginning 0))
  5405. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5406. (when (string-match "\\]" timestr)
  5407. ;; substring should only run to end of time stamp
  5408. (setq rest (substring timestr (match-end 0))
  5409. timestr (substring timestr 0 (match-end 0)))
  5410. (if (and (not closedp) (not statep)
  5411. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5412. rest))
  5413. (progn (setq timestr (concat (substring timestr 0 -1)
  5414. "-" (match-string 1 rest) "]"))
  5415. (setq clocked (match-string 2 rest)))
  5416. (setq clocked "-")))
  5417. (save-excursion
  5418. (setq extra
  5419. (cond
  5420. ((not org-agenda-log-mode-add-notes) nil)
  5421. (statep
  5422. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5423. (match-string 1)))
  5424. (clockp
  5425. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5426. (match-string 1)))))
  5427. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5428. (throw :skip nil)
  5429. (goto-char (match-beginning 0))
  5430. (setq hdmarker (org-agenda-new-marker)
  5431. inherited-tags
  5432. (or (eq org-agenda-show-inherited-tags 'always)
  5433. (and (listp org-agenda-show-inherited-tags)
  5434. (memq 'todo org-agenda-show-inherited-tags))
  5435. (and (eq org-agenda-show-inherited-tags t)
  5436. (or (eq org-agenda-use-tag-inheritance t)
  5437. (memq 'todo org-agenda-use-tag-inheritance))))
  5438. tags (org-get-tags-at nil (not inherited-tags))
  5439. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5440. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5441. (setq txt (match-string 1))
  5442. (when extra
  5443. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5444. (setq txt (concat (substring txt 0 (match-beginning 1))
  5445. " - " extra " " (match-string 2 txt)))
  5446. (setq txt (concat txt " - " extra))))
  5447. (setq txt (org-agenda-format-item
  5448. (cond
  5449. (closedp "Closed: ")
  5450. (statep (concat "State: (" state ")"))
  5451. (t (concat "Clocked: (" clocked ")")))
  5452. txt level category tags timestr)))
  5453. (setq priority 100000)
  5454. (org-add-props txt props
  5455. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5456. 'priority priority 'level level
  5457. 'type "closed" 'date date
  5458. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5459. (push txt ee))
  5460. (goto-char (point-at-eol))))
  5461. (nreverse ee)))
  5462. (defun org-agenda-show-clocking-issues ()
  5463. "Add overlays, showing issues with clocking.
  5464. See also the user option `org-agenda-clock-consistency-checks'."
  5465. (interactive)
  5466. (let* ((org-time-clocksum-use-effort-durations nil)
  5467. (pl org-agenda-clock-consistency-checks)
  5468. (re (concat "^[ \t]*"
  5469. org-clock-string
  5470. "[ \t]+"
  5471. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5472. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5473. (tlstart 0.)
  5474. (tlend 0.)
  5475. (maxtime (org-hh:mm-string-to-minutes
  5476. (or (plist-get pl :max-duration) "24:00")))
  5477. (mintime (org-hh:mm-string-to-minutes
  5478. (or (plist-get pl :min-duration) 0)))
  5479. (maxgap (org-hh:mm-string-to-minutes
  5480. ;; default 30:00 means never complain
  5481. (or (plist-get pl :max-gap) "30:00")))
  5482. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5483. (plist-get pl :gap-ok-around)))
  5484. (def-face (or (plist-get pl :default-face)
  5485. '((:background "DarkRed") (:foreground "white"))))
  5486. issue face m te ts dt ov)
  5487. (goto-char (point-min))
  5488. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5489. (setq issue nil face def-face)
  5490. (catch 'next
  5491. (setq m (org-get-at-bol 'org-marker)
  5492. te nil ts nil)
  5493. (unless (and m (markerp m))
  5494. (setq issue "No valid clock line") (throw 'next t))
  5495. (org-with-point-at m
  5496. (save-excursion
  5497. (goto-char (point-at-bol))
  5498. (unless (looking-at re)
  5499. (error "No valid Clock line")
  5500. (throw 'next t))
  5501. (unless (match-end 3)
  5502. (setq issue "No end time"
  5503. face (or (plist-get pl :no-end-time-face) face))
  5504. (throw 'next t))
  5505. (setq ts (match-string 1)
  5506. te (match-string 3)
  5507. ts (float-time
  5508. (apply #'encode-time (org-parse-time-string ts)))
  5509. te (float-time
  5510. (apply #'encode-time (org-parse-time-string te)))
  5511. dt (- te ts))))
  5512. (cond
  5513. ((> dt (* 60 maxtime))
  5514. ;; a very long clocking chunk
  5515. (setq issue (format "Clocking interval is very long: %s"
  5516. (org-minutes-to-clocksum-string
  5517. (floor (/ (float dt) 60.))))
  5518. face (or (plist-get pl :long-face) face)))
  5519. ((< dt (* 60 mintime))
  5520. ;; a very short clocking chunk
  5521. (setq issue (format "Clocking interval is very short: %s"
  5522. (org-minutes-to-clocksum-string
  5523. (floor (/ (float dt) 60.))))
  5524. face (or (plist-get pl :short-face) face)))
  5525. ((and (> tlend 0) (< ts tlend))
  5526. ;; Two clock entries are overlapping
  5527. (setq issue (format "Clocking overlap: %d minutes"
  5528. (/ (- tlend ts) 60))
  5529. face (or (plist-get pl :overlap-face) face)))
  5530. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5531. ;; There is a gap, lets see if we need to report it
  5532. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5533. (setq issue (format "Clocking gap: %d minutes"
  5534. (/ (- ts tlend) 60))
  5535. face (or (plist-get pl :gap-face) face))))
  5536. (t nil)))
  5537. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5538. (when issue
  5539. ;; OK, there was some issue, add an overlay to show the issue
  5540. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5541. (overlay-put ov 'before-string
  5542. (concat
  5543. (org-add-props
  5544. (format "%-43s" (concat " " issue))
  5545. nil
  5546. 'face face)
  5547. "\n"))
  5548. (overlay-put ov 'evaporate t)))))
  5549. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5550. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5551. (catch 'exit
  5552. (unless ok-list
  5553. ;; there are no OK times for gaps...
  5554. (throw 'exit nil))
  5555. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5556. ;; This is more than 24 hours, so it is OK.
  5557. ;; because we have at least one OK time, that must be in the
  5558. ;; 24 hour interval.
  5559. (throw 'exit t))
  5560. ;; We have a shorter gap.
  5561. ;; Now we have to get the minute of the day when these times are
  5562. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5563. (t2dec (decode-time (seconds-to-time t2)))
  5564. ;; compute the minute on the day
  5565. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5566. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5567. (when (< min2 min1)
  5568. ;; if min2 is smaller than min1, this means it is on the next day.
  5569. ;; Wrap it to after midnight.
  5570. (setq min2 (+ min2 1440)))
  5571. ;; Now check if any of the OK times is in the gap
  5572. (mapc (lambda (x)
  5573. ;; Wrap the time to after midnight if necessary
  5574. (if (< x min1) (setq x (+ x 1440)))
  5575. ;; Check if in interval
  5576. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5577. ok-list)
  5578. ;; Nope, this gap is not OK
  5579. nil)))
  5580. (defun org-agenda-get-deadlines (&optional with-hour)
  5581. "Return the deadline information for agenda display.
  5582. When WITH-HOUR is non-nil, only return deadlines with an hour
  5583. specification like [h]h:mm."
  5584. (let* ((props (list 'mouse-face 'highlight
  5585. 'org-not-done-regexp org-not-done-regexp
  5586. 'org-todo-regexp org-todo-regexp
  5587. 'org-complex-heading-regexp org-complex-heading-regexp
  5588. 'help-echo
  5589. (format "mouse-2 or RET jump to org file %s"
  5590. (abbreviate-file-name buffer-file-name))))
  5591. (regexp (if with-hour
  5592. org-deadline-time-hour-regexp
  5593. org-deadline-time-regexp))
  5594. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5595. (current (calendar-absolute-from-gregorian date))
  5596. deadline-items)
  5597. (goto-char (point-min))
  5598. (while (re-search-forward regexp nil t)
  5599. (catch :skip
  5600. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5601. (org-agenda-skip)
  5602. (let* ((s (match-string 1))
  5603. (pos (1- (match-beginning 1)))
  5604. (todo-state (save-match-data (org-get-todo-state)))
  5605. (donep (member todo-state org-done-keywords))
  5606. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5607. (member todo-state
  5608. org-agenda-repeating-timestamp-show-all)))
  5609. ;; DEADLINE is the current scheduled date. When it
  5610. ;; contains a repeater and SHOW-ALL is non-nil,
  5611. ;; LAST-REPEAT is the repeat closest to CURRENT.
  5612. ;; Otherwise, LAST-REPEAT is equal to DEADLINE.
  5613. (last-repeat (org-agenda--timestamp-to-absolute
  5614. s current 'past show-all (current-buffer) pos))
  5615. (deadline (org-agenda--timestamp-to-absolute s current))
  5616. (diff (- last-repeat current))
  5617. (suppress-prewarning
  5618. (let ((scheduled
  5619. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5620. (org-entry-get nil "SCHEDULED"))))
  5621. (cond
  5622. ((not scheduled) nil)
  5623. ;; The current item has a scheduled date, so
  5624. ;; evaluate its prewarning lead time.
  5625. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5626. ;; Use global prewarning-restart lead time.
  5627. org-agenda-skip-deadline-prewarning-if-scheduled)
  5628. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5629. 'pre-scheduled)
  5630. ;; Set pre-warning to no earlier than SCHEDULED.
  5631. (min (- last-repeat
  5632. (org-agenda--timestamp-to-absolute
  5633. scheduled current 'past show-all
  5634. (current-buffer)
  5635. (save-excursion
  5636. (beginning-of-line)
  5637. (1+ (search-forward org-deadline-string)))))
  5638. org-deadline-warning-days))
  5639. ;; Set pre-warning to deadline.
  5640. (t 0))))
  5641. (wdays (if suppress-prewarning
  5642. (let ((org-deadline-warning-days suppress-prewarning))
  5643. (org-get-wdays s))
  5644. (org-get-wdays s))))
  5645. ;; When to show a deadline in the calendar: if the
  5646. ;; expiration is within WDAYS warning time. Past-due
  5647. ;; deadlines are only shown on the current date
  5648. (unless (or (and (<= diff wdays)
  5649. (and todayp (not org-agenda-only-exact-dates)))
  5650. (= diff 0))
  5651. (throw :skip nil))
  5652. ;; Skip done tasks if `org-agenda-skip-deadline-if-done' is
  5653. ;; non-nil or if it isn't applicable to CURRENT deadline.
  5654. (when (and donep
  5655. (or org-agenda-skip-deadline-if-done
  5656. (/= deadline current)))
  5657. (throw :skip nil))
  5658. (save-excursion
  5659. (re-search-backward "^\\*+[ \t]+" nil t)
  5660. (goto-char (match-end 0))
  5661. (let* ((category (org-get-category))
  5662. (level
  5663. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5664. (head (buffer-substring (point) (line-end-position)))
  5665. (inherited-tags
  5666. (or (eq org-agenda-show-inherited-tags 'always)
  5667. (and (listp org-agenda-show-inherited-tags)
  5668. (memq 'agenda org-agenda-show-inherited-tags))
  5669. (and (eq org-agenda-show-inherited-tags t)
  5670. (or (eq org-agenda-use-tag-inheritance t)
  5671. (memq 'agenda
  5672. org-agenda-use-tag-inheritance)))))
  5673. (tags (org-get-tags-at nil (not inherited-tags)))
  5674. (timestr
  5675. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5676. (concat (substring s (match-beginning 1)) " ")
  5677. 'time))
  5678. (item
  5679. (org-agenda-format-item
  5680. ;; For past deadlines, make sure to report time
  5681. ;; difference since date S, not since closest
  5682. ;; repeater.
  5683. (let ((diff (if (< (org-today) current) diff
  5684. (- deadline current))))
  5685. (if (= diff 0) (car org-agenda-deadline-leaders)
  5686. (let ((future (nth 1 org-agenda-deadline-leaders))
  5687. (past (nth 2 org-agenda-deadline-leaders)))
  5688. (cond ((> diff 0) (format future diff))
  5689. ((string= future past) (format past diff))
  5690. (t (format past (abs diff)))))))
  5691. head level category tags
  5692. (and (= diff 0) timestr)))
  5693. (face (org-agenda-deadline-face
  5694. (- 1 (/ (float (- deadline current)) (max wdays 1)))))
  5695. (upcomingp (and todayp (> diff 0)))
  5696. (warntime (get-text-property (point) 'org-appt-warntime)))
  5697. (org-add-props item props
  5698. 'org-marker (org-agenda-new-marker pos)
  5699. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5700. 'warntime warntime
  5701. 'level level
  5702. 'ts-date deadline
  5703. 'priority (- (org-get-priority item) diff)
  5704. 'todo-state todo-state
  5705. 'type (if upcomingp "upcoming-deadline" "deadline")
  5706. 'date (if upcomingp date deadline)
  5707. 'face (if donep 'org-agenda-done face)
  5708. 'undone-face face
  5709. 'done-face 'org-agenda-done)
  5710. (push item deadline-items))))))
  5711. (nreverse deadline-items)))
  5712. (defun org-agenda-deadline-face (fraction)
  5713. "Return the face to displaying a deadline item.
  5714. FRACTION is what fraction of the head-warning time has passed."
  5715. (let ((faces org-agenda-deadline-faces) f)
  5716. (catch 'exit
  5717. (while (setq f (pop faces))
  5718. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5719. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5720. "Return the scheduled information for agenda display.
  5721. Optional argument DEADLINES is a list of deadline items to be
  5722. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5723. scheduled items with an hour specification like [h]h:mm."
  5724. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5725. 'org-todo-regexp org-todo-regexp
  5726. 'org-complex-heading-regexp org-complex-heading-regexp
  5727. 'done-face 'org-agenda-done
  5728. 'mouse-face 'highlight
  5729. 'help-echo
  5730. (format "mouse-2 or RET jump to org file %s"
  5731. (abbreviate-file-name buffer-file-name))))
  5732. (regexp (if with-hour
  5733. org-scheduled-time-hour-regexp
  5734. org-scheduled-time-regexp))
  5735. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5736. (current (calendar-absolute-from-gregorian date))
  5737. (deadline-pos
  5738. (mapcar (lambda (d)
  5739. (let ((m (get-text-property 0 'org-hd-marker d)))
  5740. (and m (marker-position m))))
  5741. deadlines))
  5742. scheduled-items)
  5743. (goto-char (point-min))
  5744. (while (re-search-forward regexp nil t)
  5745. (catch :skip
  5746. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5747. (org-agenda-skip)
  5748. (let* ((s (match-string 1))
  5749. (pos (1- (match-beginning 1)))
  5750. (todo-state (save-match-data (org-get-todo-state)))
  5751. (donep (member todo-state org-done-keywords))
  5752. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5753. (member todo-state
  5754. org-agenda-repeating-timestamp-show-all)))
  5755. ;; SCHEDULE is the current scheduled date. When it
  5756. ;; contains a repeater and SHOW-ALL is non-nil,
  5757. ;; LAST-REPEAT is the repeat closest to CURRENT.
  5758. ;; Otherwise, LAST-REPEAT is equal to SCHEDULE.
  5759. (last-repeat (org-agenda--timestamp-to-absolute
  5760. s current 'past show-all (current-buffer) pos))
  5761. (schedule (org-agenda--timestamp-to-absolute s current))
  5762. (diff (- last-repeat current))
  5763. (warntime (get-text-property (point) 'org-appt-warntime))
  5764. (pastschedp (< schedule (org-today)))
  5765. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5766. (suppress-delay
  5767. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5768. (org-entry-get nil "DEADLINE"))))
  5769. (cond
  5770. ((not deadline) nil)
  5771. ;; The current item has a deadline date, so
  5772. ;; evaluate its delay time.
  5773. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5774. ;; Use global delay time.
  5775. (- org-agenda-skip-scheduled-delay-if-deadline))
  5776. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5777. 'post-deadline)
  5778. ;; Set delay to no later than DEADLINE. If
  5779. ;; DEADLINE has a repeater, compare last schedule
  5780. ;; repeat and last deadline repeat.
  5781. (min (- last-repeat
  5782. (org-agenda--timestamp-to-absolute
  5783. deadline current 'past show-all
  5784. (current-buffer)
  5785. (save-excursion
  5786. (beginning-of-line)
  5787. (1+ (search-forward org-deadline-string)))))
  5788. org-scheduled-delay-days))
  5789. (t 0))))
  5790. (ddays
  5791. (cond
  5792. ;; Nullify delay when a repeater triggered already
  5793. ;; and the delay is of the form --Xd.
  5794. ((and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5795. (/= schedule last-repeat))
  5796. 0)
  5797. (suppress-delay
  5798. (let ((org-scheduled-delay-days suppress-delay))
  5799. (org-get-wdays s t t)))
  5800. (t (org-get-wdays s t)))))
  5801. ;; Only show a scheduled item in the calendar if it is on or
  5802. ;; past the current date. Skip it if it has been displayed
  5803. ;; for more than `org-scheduled-past-days'.
  5804. (unless (or (and (>= ddays 0) (= diff (- ddays)))
  5805. (and (< (+ diff ddays) 0)
  5806. (< (abs diff) org-scheduled-past-days)
  5807. (and todayp (not org-agenda-only-exact-dates)))
  5808. (and todayp
  5809. habitp
  5810. (bound-and-true-p org-habit-show-all-today)))
  5811. (throw :skip nil))
  5812. ;; Skip done habits, or tasks if
  5813. ;; `org-agenda-skip-deadline-if-done' is non-nil or if it
  5814. ;; was scheduled in the past anyway.
  5815. (when (and donep
  5816. (or org-agenda-skip-scheduled-if-done
  5817. (/= schedule current)
  5818. habitp))
  5819. (throw :skip nil))
  5820. ;; Skip entry if it already appears as a deadline, per
  5821. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5822. ;; doesn't apply to habits.
  5823. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5824. ((guard
  5825. (or (not (assq (line-beginning-position 0) deadline-pos))
  5826. habitp))
  5827. nil)
  5828. (`repeated-after-deadline
  5829. (>= last-repeat
  5830. (time-to-days (org-get-deadline-time (point)))))
  5831. (`not-today pastschedp)
  5832. (`t t)
  5833. (_ nil))
  5834. (throw :skip nil))
  5835. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5836. ;; only show them for today.
  5837. (when (and habitp
  5838. (or (not (bound-and-true-p org-habit-show-habits))
  5839. (and (not todayp)
  5840. (bound-and-true-p
  5841. org-habit-show-habits-only-for-today))))
  5842. (throw :skip nil))
  5843. (save-excursion
  5844. (re-search-backward "^\\*+[ \t]+" nil t)
  5845. (goto-char (match-end 0))
  5846. (let* ((category (org-get-category))
  5847. (inherited-tags
  5848. (or (eq org-agenda-show-inherited-tags 'always)
  5849. (and (listp org-agenda-show-inherited-tags)
  5850. (memq 'agenda org-agenda-show-inherited-tags))
  5851. (and (eq org-agenda-show-inherited-tags t)
  5852. (or (eq org-agenda-use-tag-inheritance t)
  5853. (memq 'agenda
  5854. org-agenda-use-tag-inheritance)))))
  5855. (tags (org-get-tags-at nil (not inherited-tags)))
  5856. (level
  5857. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5858. (head (buffer-substring (point) (line-end-position)))
  5859. (timestr
  5860. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5861. (concat (substring s (match-beginning 1)) " ")
  5862. 'time))
  5863. (item (org-agenda-format-item
  5864. ;; For past scheduled dates, make sure to
  5865. ;; report time difference since SCHEDULE,
  5866. ;; not since closest repeater.
  5867. (let ((diff (if (< (org-today) current) diff
  5868. (- schedule current))))
  5869. (if (= diff 0) (car org-agenda-scheduled-leaders)
  5870. (format (nth 1 org-agenda-scheduled-leaders)
  5871. (- 1 diff))))
  5872. head level category tags
  5873. (and (= diff 0) timestr)
  5874. nil habitp))
  5875. (face (cond ((and (not habitp) pastschedp)
  5876. 'org-scheduled-previously)
  5877. (todayp 'org-scheduled-today)
  5878. (t 'org-scheduled)))
  5879. (habitp (and habitp (org-habit-parse-todo))))
  5880. (org-add-props item props
  5881. 'undone-face face
  5882. 'face (if donep 'org-agenda-done face)
  5883. 'org-marker (org-agenda-new-marker pos)
  5884. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5885. 'type (if pastschedp "past-scheduled" "scheduled")
  5886. 'date (if pastschedp schedule date)
  5887. 'ts-date schedule
  5888. 'warntime warntime
  5889. 'level level
  5890. 'priority (if habitp (org-habit-get-priority habitp)
  5891. (+ 94 (- 5 diff) (org-get-priority item)))
  5892. 'org-habit-p habitp
  5893. 'todo-state todo-state)
  5894. (push item scheduled-items))))))
  5895. (nreverse scheduled-items)))
  5896. (defun org-agenda-get-blocks ()
  5897. "Return the date-range information for agenda display."
  5898. (let* ((props (list 'face nil
  5899. 'org-not-done-regexp org-not-done-regexp
  5900. 'org-todo-regexp org-todo-regexp
  5901. 'org-complex-heading-regexp org-complex-heading-regexp
  5902. 'mouse-face 'highlight
  5903. 'help-echo
  5904. (format "mouse-2 or RET jump to org file %s"
  5905. (abbreviate-file-name buffer-file-name))))
  5906. (regexp org-tr-regexp)
  5907. (d0 (calendar-absolute-from-gregorian date))
  5908. marker hdmarker ee txt d1 d2 s1 s2 category
  5909. level todo-state tags pos head donep inherited-tags)
  5910. (goto-char (point-min))
  5911. (while (re-search-forward regexp nil t)
  5912. (catch :skip
  5913. (org-agenda-skip)
  5914. (setq pos (point))
  5915. (let ((start-time (match-string 1))
  5916. (end-time (match-string 2)))
  5917. (setq s1 (match-string 1)
  5918. s2 (match-string 2)
  5919. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5920. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5921. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5922. ;; Only allow days between the limits, because the normal
  5923. ;; date stamps will catch the limits.
  5924. (save-excursion
  5925. (setq todo-state (org-get-todo-state))
  5926. (setq donep (member todo-state org-done-keywords))
  5927. (if (and donep org-agenda-skip-timestamp-if-done)
  5928. (throw :skip t))
  5929. (setq marker (org-agenda-new-marker (point))
  5930. category (org-get-category))
  5931. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5932. (throw :skip nil)
  5933. (goto-char (match-beginning 0))
  5934. (setq hdmarker (org-agenda-new-marker (point))
  5935. inherited-tags
  5936. (or (eq org-agenda-show-inherited-tags 'always)
  5937. (and (listp org-agenda-show-inherited-tags)
  5938. (memq 'agenda org-agenda-show-inherited-tags))
  5939. (and (eq org-agenda-show-inherited-tags t)
  5940. (or (eq org-agenda-use-tag-inheritance t)
  5941. (memq 'agenda org-agenda-use-tag-inheritance))))
  5942. tags (org-get-tags-at nil (not inherited-tags)))
  5943. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5944. (looking-at "\\*+[ \t]+\\(.*\\)")
  5945. (setq head (match-string 1))
  5946. (let ((remove-re
  5947. (if org-agenda-remove-timeranges-from-blocks
  5948. (concat
  5949. "<" (regexp-quote s1) ".*?>"
  5950. "--"
  5951. "<" (regexp-quote s2) ".*?>")
  5952. nil)))
  5953. (setq txt (org-agenda-format-item
  5954. (format
  5955. (nth (if (= d1 d2) 0 1)
  5956. org-agenda-timerange-leaders)
  5957. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5958. head level category tags
  5959. (cond ((and (= d1 d0) (= d2 d0))
  5960. (concat "<" start-time ">--<" end-time ">"))
  5961. ((= d1 d0)
  5962. (concat "<" start-time ">"))
  5963. ((= d2 d0)
  5964. (concat "<" end-time ">")))
  5965. remove-re))))
  5966. (org-add-props txt props
  5967. 'org-marker marker 'org-hd-marker hdmarker
  5968. 'type "block" 'date date
  5969. 'level level
  5970. 'todo-state todo-state
  5971. 'priority (org-get-priority txt))
  5972. (push txt ee))))
  5973. (goto-char pos)))
  5974. ;; Sort the entries by expiration date.
  5975. (nreverse ee)))
  5976. ;;; Agenda presentation and sorting
  5977. (defvar org-prefix-has-time nil
  5978. "A flag, set by `org-compile-prefix-format'.
  5979. The flag is set if the currently compiled format contains a `%t'.")
  5980. (defvar org-prefix-has-tag nil
  5981. "A flag, set by `org-compile-prefix-format'.
  5982. The flag is set if the currently compiled format contains a `%T'.")
  5983. (defvar org-prefix-has-effort nil
  5984. "A flag, set by `org-compile-prefix-format'.
  5985. The flag is set if the currently compiled format contains a `%e'.")
  5986. (defvar org-prefix-has-breadcrumbs nil
  5987. "A flag, set by `org-compile-prefix-format'.
  5988. The flag is set if the currently compiled format contains a `%b'.")
  5989. (defvar org-prefix-category-length nil
  5990. "Used by `org-compile-prefix-format' to remember the category field width.")
  5991. (defvar org-prefix-category-max-length nil
  5992. "Used by `org-compile-prefix-format' to remember the category field width.")
  5993. (defun org-agenda-get-category-icon (category)
  5994. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5995. (dolist (entry org-agenda-category-icon-alist)
  5996. (when (string-match-p (car entry) category)
  5997. (if (listp (cadr entry))
  5998. (return (cadr entry))
  5999. (return (apply 'create-image (cdr entry)))))))
  6000. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6001. remove-re habitp)
  6002. "Format TXT to be inserted into the agenda buffer.
  6003. In particular, add the prefix and corresponding text properties.
  6004. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6005. LEVEL may be a string to replace the `%l' specifier.
  6006. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6007. category taken from local variable or file name. It will replace the `%c'
  6008. specifier in the format.
  6009. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6010. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6011. When DOTIME is a string, this string is searched for a time before TXT is.
  6012. TAGS can be the tags of the headline.
  6013. Any match of REMOVE-RE will be removed from TXT."
  6014. ;; We keep the org-prefix-* variable values along with a compiled
  6015. ;; formatter, so that multiple agendas existing at the same time do
  6016. ;; not step on each other toes.
  6017. ;;
  6018. ;; It was inconvenient to make these variables buffer local in
  6019. ;; Agenda buffers, because this function expects to be called with
  6020. ;; the buffer where item comes from being current, and not agenda
  6021. ;; buffer
  6022. (let* ((bindings (car org-prefix-format-compiled))
  6023. (formatter (cadr org-prefix-format-compiled)))
  6024. (cl-loop for (var value) in bindings
  6025. do (set var value))
  6026. (save-match-data
  6027. ;; Diary entries sometimes have extra whitespace at the beginning
  6028. (setq txt (org-trim txt))
  6029. ;; Fix the tags part in txt
  6030. (setq txt (org-agenda-fix-displayed-tags
  6031. txt tags
  6032. org-agenda-show-inherited-tags
  6033. org-agenda-hide-tags-regexp))
  6034. (let* ((category (or category
  6035. (if buffer-file-name
  6036. (file-name-sans-extension
  6037. (file-name-nondirectory buffer-file-name))
  6038. "")))
  6039. (category-icon (org-agenda-get-category-icon category))
  6040. (category-icon (if category-icon
  6041. (propertize " " 'display category-icon)
  6042. ""))
  6043. (effort (and (not (string= txt ""))
  6044. (get-text-property 1 'effort txt)))
  6045. ;; time, tag, effort are needed for the eval of the prefix format
  6046. (tag (if tags (nth (1- (length tags)) tags) ""))
  6047. time
  6048. (ts (if dotime (concat
  6049. (if (stringp dotime) dotime "")
  6050. (and org-agenda-search-headline-for-time txt))))
  6051. (time-of-day (and dotime (org-get-time-of-day ts)))
  6052. stamp plain s0 s1 s2 rtn srp l
  6053. duration breadcrumbs)
  6054. (and (derived-mode-p 'org-mode) buffer-file-name
  6055. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6056. (when (and dotime time-of-day)
  6057. ;; Extract starting and ending time and move them to prefix
  6058. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6059. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6060. (setq s0 (match-string 0 ts)
  6061. srp (and stamp (match-end 3))
  6062. s1 (match-string (if plain 1 2) ts)
  6063. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6064. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6065. ;; them, we might want to remove them there to avoid duplication.
  6066. ;; The user can turn this off with a variable.
  6067. (if (and org-prefix-has-time
  6068. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6069. (string-match (concat (regexp-quote s0) " *") txt)
  6070. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6071. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6072. (= (match-beginning 0) 0)
  6073. t))
  6074. (setq txt (replace-match "" nil nil txt))))
  6075. ;; Normalize the time(s) to 24 hour
  6076. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6077. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6078. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6079. (let (org-time-clocksum-use-effort-durations)
  6080. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6081. (setq s2
  6082. (org-minutes-to-clocksum-string
  6083. (+ (org-hh:mm-string-to-minutes s1)
  6084. org-agenda-default-appointment-duration)))))
  6085. ;; Compute the duration
  6086. (when s2
  6087. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6088. (org-hh:mm-string-to-minutes s1)))))
  6089. (when (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
  6090. ;; Tags are in the string
  6091. (if (or (eq org-agenda-remove-tags t)
  6092. (and org-agenda-remove-tags
  6093. org-prefix-has-tag))
  6094. (setq txt (replace-match "" t t txt))
  6095. (setq txt (replace-match
  6096. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6097. (match-string 2 txt))
  6098. t t txt))))
  6099. (when remove-re
  6100. (while (string-match remove-re txt)
  6101. (setq txt (replace-match "" t t txt))))
  6102. ;; Set org-heading property on `txt' to mark the start of the
  6103. ;; heading.
  6104. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6105. ;; Prepare the variables needed in the eval of the compiled format
  6106. (if org-prefix-has-breadcrumbs
  6107. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6108. (let ((s (org-display-outline-path nil nil "->" t)))
  6109. (if (eq "" s) "" (concat s "->"))))))
  6110. (setq time (cond (s2 (concat
  6111. (org-agenda-time-of-day-to-ampm-maybe s1)
  6112. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6113. (if org-agenda-timegrid-use-ampm " ")))
  6114. (s1 (concat
  6115. (org-agenda-time-of-day-to-ampm-maybe s1)
  6116. (if org-agenda-timegrid-use-ampm
  6117. "........ "
  6118. "......")))
  6119. (t ""))
  6120. extra (or (and (not habitp) extra) "")
  6121. category (if (symbolp category) (symbol-name category) category)
  6122. level (or level ""))
  6123. (if (string-match org-bracket-link-regexp category)
  6124. (progn
  6125. (setq l (if (match-end 3)
  6126. (- (match-end 3) (match-beginning 3))
  6127. (- (match-end 1) (match-beginning 1))))
  6128. (when (< l (or org-prefix-category-length 0))
  6129. (setq category (copy-sequence category))
  6130. (org-add-props category nil
  6131. 'extra-space (make-string
  6132. (- org-prefix-category-length l 1) ?\ ))))
  6133. (if (and org-prefix-category-max-length
  6134. (>= (length category) org-prefix-category-max-length))
  6135. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6136. ;; Evaluate the compiled format
  6137. (setq rtn (concat (eval formatter) txt))
  6138. ;; And finally add the text properties
  6139. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6140. (org-add-props rtn nil
  6141. 'org-category category
  6142. 'tags (mapcar 'org-downcase-keep-props tags)
  6143. 'org-highest-priority org-highest-priority
  6144. 'org-lowest-priority org-lowest-priority
  6145. 'time-of-day time-of-day
  6146. 'duration duration
  6147. 'breadcrumbs breadcrumbs
  6148. 'txt txt
  6149. 'level level
  6150. 'time time
  6151. 'extra extra
  6152. 'format org-prefix-format-compiled
  6153. 'dotime dotime)))))
  6154. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6155. "Remove tags string from TXT, and add a modified list of tags.
  6156. The modified list may contain inherited tags, and tags matched by
  6157. `org-agenda-hide-tags-regexp' will be removed."
  6158. (when (or add-inherited hide-re)
  6159. (if (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
  6160. (setq txt (substring txt 0 (match-beginning 0))))
  6161. (setq tags
  6162. (delq nil
  6163. (mapcar (lambda (tg)
  6164. (if (or (and hide-re (string-match hide-re tg))
  6165. (and (not add-inherited)
  6166. (get-text-property 0 'inherited tg)))
  6167. nil
  6168. tg))
  6169. tags)))
  6170. (when tags
  6171. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6172. i)
  6173. (setq txt (concat txt " :"
  6174. (mapconcat
  6175. (lambda (x)
  6176. (setq i (get-text-property 0 'inherited x))
  6177. (if (and have-i (not i))
  6178. (progn
  6179. (setq have-i nil)
  6180. (concat ":" x))
  6181. x))
  6182. tags ":")
  6183. (if have-i "::" ":"))))))
  6184. txt)
  6185. (defun org-downcase-keep-props (s)
  6186. (let ((props (text-properties-at 0 s)))
  6187. (setq s (downcase s))
  6188. (add-text-properties 0 (length s) props s)
  6189. s))
  6190. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6191. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6192. "Add a time-grid for agenda items which need it.
  6193. LIST is the list of agenda items formatted by `org-agenda-list'.
  6194. NDAYS is the span of the current agenda view.
  6195. TODAYP is t when the current agenda view is on today."
  6196. (catch 'exit
  6197. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6198. ((and todayp (member 'today (car org-agenda-time-grid))))
  6199. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6200. ((member 'weekly (car org-agenda-time-grid)))
  6201. (t (throw 'exit list)))
  6202. (let* ((have (delq nil (mapcar
  6203. (lambda (x) (get-text-property 1 'time-of-day x))
  6204. list)))
  6205. (string (nth 1 org-agenda-time-grid))
  6206. (gridtimes (nth 2 org-agenda-time-grid))
  6207. (req (car org-agenda-time-grid))
  6208. (remove (member 'remove-match req))
  6209. new time)
  6210. (if (and (member 'require-timed req) (not have))
  6211. ;; don't show empty grid
  6212. (throw 'exit list))
  6213. (while (setq time (pop gridtimes))
  6214. (unless (and remove (member time have))
  6215. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6216. (push (org-agenda-format-item
  6217. nil string nil "" nil
  6218. (concat (substring time 0 -2) ":" (substring time -2)))
  6219. new)
  6220. (put-text-property
  6221. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6222. (when (and todayp org-agenda-show-current-time-in-grid)
  6223. (push (org-agenda-format-item
  6224. nil org-agenda-current-time-string nil "" nil
  6225. (format-time-string "%H:%M "))
  6226. new)
  6227. (put-text-property
  6228. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6229. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6230. (append new list)
  6231. (append list new)))))
  6232. (defun org-compile-prefix-format (key)
  6233. "Compile the prefix format into a Lisp form that can be evaluated.
  6234. The resulting form and associated variable bindings is returned
  6235. and stored in the variable `org-prefix-format-compiled'."
  6236. (setq org-prefix-has-time nil
  6237. org-prefix-has-tag nil
  6238. org-prefix-category-length nil
  6239. org-prefix-has-effort nil
  6240. org-prefix-has-breadcrumbs nil)
  6241. (let ((s (cond
  6242. ((stringp org-agenda-prefix-format)
  6243. org-agenda-prefix-format)
  6244. ((assq key org-agenda-prefix-format)
  6245. (cdr (assq key org-agenda-prefix-format)))
  6246. (t " %-12:c%?-12t% s")))
  6247. (start 0)
  6248. varform vars var e c f opt)
  6249. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6250. s start)
  6251. (setq var (or (cdr (assoc (match-string 4 s)
  6252. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6253. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6254. 'eval)
  6255. c (or (match-string 3 s) "")
  6256. opt (match-beginning 1)
  6257. start (1+ (match-beginning 0)))
  6258. (if (equal var 'time) (setq org-prefix-has-time t))
  6259. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6260. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6261. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6262. (setq f (concat "%" (match-string 2 s) "s"))
  6263. (when (equal var 'category)
  6264. (setq org-prefix-category-length
  6265. (floor (abs (string-to-number (match-string 2 s)))))
  6266. (setq org-prefix-category-max-length
  6267. (let ((x (match-string 2 s)))
  6268. (save-match-data
  6269. (if (string-match "\\.[0-9]+" x)
  6270. (string-to-number (substring (match-string 0 x) 1)))))))
  6271. (if (eq var 'eval)
  6272. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6273. (if opt
  6274. (setq varform
  6275. `(if (or (equal "" ,var) (equal nil ,var))
  6276. ""
  6277. (format ,f (concat ,var ,c))))
  6278. (setq varform
  6279. `(format ,f (if (or (equal ,var "")
  6280. (equal ,var nil)) ""
  6281. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6282. (setq s (replace-match "%s" t nil s))
  6283. (push varform vars))
  6284. (setq vars (nreverse vars))
  6285. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6286. (setq org-prefix-format-compiled
  6287. (list
  6288. `((org-prefix-has-time ,org-prefix-has-time)
  6289. (org-prefix-has-tag ,org-prefix-has-tag)
  6290. (org-prefix-category-length ,org-prefix-category-length)
  6291. (org-prefix-has-effort ,org-prefix-has-effort)
  6292. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6293. `(format ,s ,@vars))))))
  6294. (defun org-set-sorting-strategy (key)
  6295. (if (symbolp (car org-agenda-sorting-strategy))
  6296. ;; the old format
  6297. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6298. (setq org-agenda-sorting-strategy-selected
  6299. (or (cdr (assq key org-agenda-sorting-strategy))
  6300. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6301. '(time-up category-keep priority-down)))))
  6302. (defun org-get-time-of-day (s &optional string mod24)
  6303. "Check string S for a time of day.
  6304. If found, return it as a military time number between 0 and 2400.
  6305. If not found, return nil.
  6306. The optional STRING argument forces conversion into a 5 character wide string
  6307. HH:MM."
  6308. (save-match-data
  6309. (when
  6310. (and
  6311. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6312. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6313. (not (eq (get-text-property 1 'face s) 'org-link)))
  6314. (let* ((h (string-to-number (match-string 1 s)))
  6315. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6316. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6317. (am-p (equal ampm "am"))
  6318. (h1 (cond ((not ampm) h)
  6319. ((= h 12) (if am-p 0 12))
  6320. (t (+ h (if am-p 0 12)))))
  6321. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6322. (mod h1 24) h1))
  6323. (t0 (+ (* 100 h2) m))
  6324. (t1 (concat (if (>= h1 24) "+" " ")
  6325. (if (and org-agenda-time-leading-zero
  6326. (< t0 1000)) "0" "")
  6327. (if (< t0 100) "0" "")
  6328. (if (< t0 10) "0" "")
  6329. (int-to-string t0))))
  6330. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6331. (defvar org-agenda-before-sorting-filter-function nil
  6332. "Function to be applied to agenda items prior to sorting.
  6333. Prior to sorting also means just before they are inserted into the agenda.
  6334. To aid sorting, you may revisit the original entries and add more text
  6335. properties which will later be used by the sorting functions.
  6336. The function should take a string argument, an agenda line.
  6337. It has access to the text properties in that line, which contain among
  6338. other things, the property `org-hd-marker' that points to the entry
  6339. where the line comes from. Note that not all lines going into the agenda
  6340. have this property, only most.
  6341. The function should return the modified string. It is probably best
  6342. to ONLY change text properties.
  6343. You can also use this function as a filter, by returning nil for lines
  6344. you don't want to have in the agenda at all. For this application, you
  6345. could bind the variable in the options section of a custom command.")
  6346. (defun org-agenda-finalize-entries (list &optional type)
  6347. "Sort, limit and concatenate the LIST of agenda items.
  6348. The optional argument TYPE tells the agenda type."
  6349. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6350. (cdr (assoc type org-agenda-max-effort)))
  6351. (t org-agenda-max-effort)))
  6352. (max-todo (cond ((listp org-agenda-max-todos)
  6353. (cdr (assoc type org-agenda-max-todos)))
  6354. (t org-agenda-max-todos)))
  6355. (max-tags (cond ((listp org-agenda-max-tags)
  6356. (cdr (assoc type org-agenda-max-tags)))
  6357. (t org-agenda-max-tags)))
  6358. (max-entries (cond ((listp org-agenda-max-entries)
  6359. (cdr (assoc type org-agenda-max-entries)))
  6360. (t org-agenda-max-entries))))
  6361. (when org-agenda-before-sorting-filter-function
  6362. (setq list
  6363. (delq nil
  6364. (mapcar
  6365. org-agenda-before-sorting-filter-function list))))
  6366. (setq list (mapcar 'org-agenda-highlight-todo list)
  6367. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6368. (when max-effort
  6369. (setq list (org-agenda-limit-entries
  6370. list 'effort-minutes max-effort
  6371. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6372. 32767 -1))))))
  6373. (when max-todo
  6374. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6375. (when max-tags
  6376. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6377. (when max-entries
  6378. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6379. (mapconcat 'identity list "\n")))
  6380. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6381. "Limit the number of agenda entries."
  6382. (let ((include (and limit (< limit 0))))
  6383. (if limit
  6384. (let ((fun (or fn (lambda (p) (if p 1))))
  6385. (lim 0))
  6386. (delq nil
  6387. (mapcar
  6388. (lambda (e)
  6389. (let ((pval (funcall
  6390. fun (get-text-property (1- (length e))
  6391. prop e))))
  6392. (if pval (setq lim (+ lim pval)))
  6393. (cond ((and pval (<= lim (abs limit))) e)
  6394. ((and include (not pval)) e))))
  6395. list)))
  6396. list)))
  6397. (defun org-agenda-limit-interactively (remove)
  6398. "In agenda, interactively limit entries to various maximums."
  6399. (interactive "P")
  6400. (if remove
  6401. (progn (setq org-agenda-max-entries nil
  6402. org-agenda-max-todos nil
  6403. org-agenda-max-tags nil
  6404. org-agenda-max-effort nil)
  6405. (org-agenda-redo))
  6406. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6407. (msg (cond ((= max ?E) "How many minutes? ")
  6408. ((= max ?e) "How many entries? ")
  6409. ((= max ?t) "How many TODO entries? ")
  6410. ((= max ?T) "How many tagged entries? ")
  6411. (t (user-error "Wrong input"))))
  6412. (num (string-to-number (read-from-minibuffer msg))))
  6413. (cond ((equal max ?e)
  6414. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6415. ((equal max ?t)
  6416. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6417. ((equal max ?T)
  6418. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6419. ((equal max ?E)
  6420. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6421. (org-agenda-fit-window-to-buffer))
  6422. (defun org-agenda-highlight-todo (x)
  6423. (let ((org-done-keywords org-done-keywords-for-agenda)
  6424. (case-fold-search nil)
  6425. re)
  6426. (if (eq x 'line)
  6427. (save-excursion
  6428. (beginning-of-line 1)
  6429. (setq re (org-get-at-bol 'org-todo-regexp))
  6430. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6431. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6432. (add-text-properties (match-beginning 0) (match-end 1)
  6433. (list 'face (org-get-todo-face 1)))
  6434. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6435. (delete-region (match-beginning 1) (1- (match-end 0)))
  6436. (goto-char (match-beginning 1))
  6437. (insert (format org-agenda-todo-keyword-format s)))))
  6438. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6439. (setq re (get-text-property 0 'org-todo-regexp x))
  6440. (when (and re
  6441. ;; Test `pl' because if there's no heading content,
  6442. ;; there's no point matching to highlight. Note
  6443. ;; that if we didn't test `pl' first, and there
  6444. ;; happened to be no keyword from `org-todo-regexp'
  6445. ;; on this heading line, then the `equal' comparison
  6446. ;; afterwards would spuriously succeed in the case
  6447. ;; where `pl' is nil -- causing an args-out-of-range
  6448. ;; error when we try to add text properties to text
  6449. ;; that isn't there.
  6450. pl
  6451. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6452. x pl) pl))
  6453. (add-text-properties
  6454. (or (match-end 1) (match-end 0)) (match-end 0)
  6455. (list 'face (org-get-todo-face (match-string 2 x)))
  6456. x)
  6457. (when (match-end 1)
  6458. (setq x (concat (substring x 0 (match-end 1))
  6459. (format org-agenda-todo-keyword-format
  6460. (match-string 2 x))
  6461. (org-add-props " " (text-properties-at 0 x))
  6462. (substring x (match-end 3)))))))
  6463. x)))
  6464. (defsubst org-cmp-values (a b property)
  6465. "Compare the numeric value of text PROPERTY for string A and B."
  6466. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6467. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6468. (cond ((> pa pb) +1)
  6469. ((< pa pb) -1))))
  6470. (defsubst org-cmp-effort (a b)
  6471. "Compare the effort values of string A and B."
  6472. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6473. (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
  6474. (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
  6475. (cond ((> ea eb) +1)
  6476. ((< ea eb) -1))))
  6477. (defsubst org-cmp-category (a b)
  6478. "Compare the string values of categories of strings A and B."
  6479. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6480. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6481. (cond ((string-lessp ca cb) -1)
  6482. ((string-lessp cb ca) +1))))
  6483. (defsubst org-cmp-todo-state (a b)
  6484. "Compare the todo states of strings A and B."
  6485. (let* ((ma (or (get-text-property 1 'org-marker a)
  6486. (get-text-property 1 'org-hd-marker a)))
  6487. (mb (or (get-text-property 1 'org-marker b)
  6488. (get-text-property 1 'org-hd-marker b)))
  6489. (fa (and ma (marker-buffer ma)))
  6490. (fb (and mb (marker-buffer mb)))
  6491. (todo-kwds
  6492. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6493. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6494. (ta (or (get-text-property 1 'todo-state a) ""))
  6495. (tb (or (get-text-property 1 'todo-state b) ""))
  6496. (la (- (length (member ta todo-kwds))))
  6497. (lb (- (length (member tb todo-kwds))))
  6498. (donepa (member ta org-done-keywords-for-agenda))
  6499. (donepb (member tb org-done-keywords-for-agenda)))
  6500. (cond ((and donepa (not donepb)) -1)
  6501. ((and (not donepa) donepb) +1)
  6502. ((< la lb) -1)
  6503. ((< lb la) +1))))
  6504. (defsubst org-cmp-alpha (a b)
  6505. "Compare the headlines, alphabetically."
  6506. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6507. (plb (text-property-any 0 (length b) 'org-heading t b))
  6508. (ta (and pla (substring a pla)))
  6509. (tb (and plb (substring b plb))))
  6510. (when pla
  6511. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6512. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6513. (setq ta (substring ta (match-end 0))))
  6514. (setq ta (downcase ta)))
  6515. (when plb
  6516. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6517. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6518. (setq tb (substring tb (match-end 0))))
  6519. (setq tb (downcase tb)))
  6520. (cond ((not ta) +1)
  6521. ((not tb) -1)
  6522. ((string-lessp ta tb) -1)
  6523. ((string-lessp tb ta) +1))))
  6524. (defsubst org-cmp-tag (a b)
  6525. "Compare the string values of the first tags of A and B."
  6526. (let ((ta (car (last (get-text-property 1 'tags a))))
  6527. (tb (car (last (get-text-property 1 'tags b)))))
  6528. (cond ((not ta) +1)
  6529. ((not tb) -1)
  6530. ((string-lessp ta tb) -1)
  6531. ((string-lessp tb ta) +1))))
  6532. (defsubst org-cmp-time (a b)
  6533. "Compare the time-of-day values of strings A and B."
  6534. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6535. (ta (or (get-text-property 1 'time-of-day a) def))
  6536. (tb (or (get-text-property 1 'time-of-day b) def)))
  6537. (cond ((< ta tb) -1)
  6538. ((< tb ta) +1))))
  6539. (defsubst org-cmp-ts (a b type)
  6540. "Compare the timestamps values of entries A and B.
  6541. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6542. \"timestamp_ia\", compare within each of these type. When TYPE
  6543. is the empty string, compare all timestamps without respect of
  6544. their type."
  6545. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6546. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6547. (get-text-property 1 'ts-date a))
  6548. def))
  6549. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6550. (get-text-property 1 'ts-date b))
  6551. def)))
  6552. (cond ((< ta tb) -1)
  6553. ((< tb ta) +1))))
  6554. (defsubst org-cmp-habit-p (a b)
  6555. "Compare the todo states of strings A and B."
  6556. (let ((ha (get-text-property 1 'org-habit-p a))
  6557. (hb (get-text-property 1 'org-habit-p b)))
  6558. (cond ((and ha (not hb)) -1)
  6559. ((and (not ha) hb) +1))))
  6560. (defun org-entries-lessp (a b)
  6561. "Predicate for sorting agenda entries."
  6562. ;; The following variables will be used when the form is evaluated.
  6563. ;; So even though the compiler complains, keep them.
  6564. (let* ((ss org-agenda-sorting-strategy-selected)
  6565. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6566. (org-cmp-ts a b "")))
  6567. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6568. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6569. (org-cmp-ts a b "scheduled")))
  6570. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6571. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6572. (org-cmp-ts a b "deadline")))
  6573. (deadline-down (if deadline-up (- deadline-up) nil))
  6574. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6575. (org-cmp-ts a b "timestamp_ia")))
  6576. (tsia-down (if tsia-up (- tsia-up) nil))
  6577. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6578. (org-cmp-ts a b "timestamp")))
  6579. (ts-down (if ts-up (- ts-up) nil))
  6580. (time-up (and (org-em 'time-up 'time-down ss)
  6581. (org-cmp-time a b)))
  6582. (time-down (if time-up (- time-up) nil))
  6583. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6584. (org-cmp-values a b 'org-stats)))
  6585. (stats-down (if stats-up (- stats-up) nil))
  6586. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6587. (org-cmp-values a b 'priority)))
  6588. (priority-down (if priority-up (- priority-up) nil))
  6589. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6590. (org-cmp-effort a b)))
  6591. (effort-down (if effort-up (- effort-up) nil))
  6592. (category-up (and (or (org-em 'category-up 'category-down ss)
  6593. (memq 'category-keep ss))
  6594. (org-cmp-category a b)))
  6595. (category-down (if category-up (- category-up) nil))
  6596. (category-keep (if category-up +1 nil))
  6597. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6598. (org-cmp-tag a b)))
  6599. (tag-down (if tag-up (- tag-up) nil))
  6600. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6601. (org-cmp-todo-state a b)))
  6602. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6603. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6604. (org-cmp-habit-p a b)))
  6605. (habit-down (if habit-up (- habit-up) nil))
  6606. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6607. (org-cmp-alpha a b)))
  6608. (alpha-down (if alpha-up (- alpha-up) nil))
  6609. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6610. user-defined-up user-defined-down)
  6611. (if (and need-user-cmp org-agenda-cmp-user-defined
  6612. (functionp org-agenda-cmp-user-defined))
  6613. (setq user-defined-up
  6614. (funcall org-agenda-cmp-user-defined a b)
  6615. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6616. (cdr (assoc
  6617. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6618. '((-1 . t) (1 . nil) (nil . nil))))))
  6619. ;;; Agenda restriction lock
  6620. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6621. "Overlay to mark the headline to which agenda commands are restricted.")
  6622. (overlay-put org-agenda-restriction-lock-overlay
  6623. 'face 'org-agenda-restriction-lock)
  6624. (overlay-put org-agenda-restriction-lock-overlay
  6625. 'help-echo "Agendas are currently limited to this subtree.")
  6626. (delete-overlay org-agenda-restriction-lock-overlay)
  6627. ;;;###autoload
  6628. (defun org-agenda-set-restriction-lock (&optional type)
  6629. "Set restriction lock for agenda, to current subtree or file.
  6630. Restriction will be the file if TYPE is `file', or if type is the
  6631. universal prefix \\='(4), or if the cursor is before the first headline
  6632. in the file. Otherwise, restriction will be to the current subtree."
  6633. (interactive "P")
  6634. (org-agenda-remove-restriction-lock 'noupdate)
  6635. (and (equal type '(4)) (setq type 'file))
  6636. (setq type (cond
  6637. (type type)
  6638. ((org-at-heading-p) 'subtree)
  6639. ((condition-case nil (org-back-to-heading t) (error nil))
  6640. 'subtree)
  6641. (t 'file)))
  6642. (if (eq type 'subtree)
  6643. (progn
  6644. (setq org-agenda-restrict (current-buffer))
  6645. (setq org-agenda-overriding-restriction 'subtree)
  6646. (put 'org-agenda-files 'org-restrict
  6647. (list (buffer-file-name (buffer-base-buffer))))
  6648. (org-back-to-heading t)
  6649. (move-overlay org-agenda-restriction-lock-overlay
  6650. (point)
  6651. (if org-agenda-restriction-lock-highlight-subtree
  6652. (save-excursion (org-end-of-subtree t t) (point))
  6653. (point-at-eol)))
  6654. (move-marker org-agenda-restrict-begin (point))
  6655. (move-marker org-agenda-restrict-end
  6656. (save-excursion (org-end-of-subtree t t)))
  6657. (message "Locking agenda restriction to subtree"))
  6658. (put 'org-agenda-files 'org-restrict
  6659. (list (buffer-file-name (buffer-base-buffer))))
  6660. (setq org-agenda-restrict nil)
  6661. (setq org-agenda-overriding-restriction 'file)
  6662. (move-marker org-agenda-restrict-begin nil)
  6663. (move-marker org-agenda-restrict-end nil)
  6664. (message "Locking agenda restriction to file"))
  6665. (setq current-prefix-arg nil)
  6666. (org-agenda-maybe-redo))
  6667. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6668. "Remove the agenda restriction lock."
  6669. (interactive "P")
  6670. (delete-overlay org-agenda-restriction-lock-overlay)
  6671. (delete-overlay org-speedbar-restriction-lock-overlay)
  6672. (setq org-agenda-overriding-restriction nil)
  6673. (setq org-agenda-restrict nil)
  6674. (put 'org-agenda-files 'org-restrict nil)
  6675. (move-marker org-agenda-restrict-begin nil)
  6676. (move-marker org-agenda-restrict-end nil)
  6677. (setq current-prefix-arg nil)
  6678. (message "Agenda restriction lock removed")
  6679. (or noupdate (org-agenda-maybe-redo)))
  6680. (defun org-agenda-maybe-redo ()
  6681. "If there is any window showing the agenda view, update it."
  6682. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6683. org-agenda-buffer-name)
  6684. t))
  6685. (w0 (selected-window)))
  6686. (when w
  6687. (select-window w)
  6688. (org-agenda-redo)
  6689. (select-window w0)
  6690. (if org-agenda-overriding-restriction
  6691. (message "Agenda view shifted to new %s restriction"
  6692. org-agenda-overriding-restriction)
  6693. (message "Agenda restriction lock removed")))))
  6694. ;;; Agenda commands
  6695. (defun org-agenda-check-type (error &rest types)
  6696. "Check if agenda buffer is of allowed type.
  6697. If ERROR is non-nil, throw an error, otherwise just return nil.
  6698. Allowed types are `agenda' `timeline' `todo' `tags' `search'."
  6699. (if (not org-agenda-type)
  6700. (error "No Org agenda currently displayed")
  6701. (if (memq org-agenda-type types)
  6702. t
  6703. (if error
  6704. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6705. nil))))
  6706. (defun org-agenda-Quit ()
  6707. "Exit the agenda, killing the agenda buffer.
  6708. Like `org-agenda-quit', but kill the buffer even when
  6709. `org-agenda-sticky' is non-nil."
  6710. (interactive)
  6711. (org-agenda--quit))
  6712. (defun org-agenda-quit ()
  6713. "Exit the agenda.
  6714. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6715. instead of killing it.
  6716. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6717. the pre-agenda window configuration.
  6718. When column view is active, exit column view instead of the
  6719. agenda."
  6720. (interactive)
  6721. (org-agenda--quit org-agenda-sticky))
  6722. (defun org-agenda--quit (&optional bury)
  6723. (if org-agenda-columns-active
  6724. (org-columns-quit)
  6725. (let ((wconf org-agenda-pre-window-conf)
  6726. (buf (current-buffer))
  6727. (org-agenda-last-indirect-window
  6728. (and (eq org-indirect-buffer-display 'other-window)
  6729. org-agenda-last-indirect-buffer
  6730. (get-buffer-window org-agenda-last-indirect-buffer))))
  6731. (cond
  6732. ((eq org-agenda-window-setup 'other-frame)
  6733. (delete-frame))
  6734. ((and org-agenda-restore-windows-after-quit
  6735. wconf)
  6736. ;; Maybe restore the pre-agenda window configuration. Reset
  6737. ;; `org-agenda-pre-window-conf' before running
  6738. ;; `set-window-configuration', which loses the current buffer.
  6739. (setq org-agenda-pre-window-conf nil)
  6740. (set-window-configuration wconf))
  6741. (t
  6742. (when org-agenda-last-indirect-window
  6743. (delete-window org-agenda-last-indirect-window))
  6744. (and (not (eq org-agenda-window-setup 'current-window))
  6745. (not (one-window-p))
  6746. (delete-window))))
  6747. (if bury
  6748. ;; Set the agenda buffer as the current buffer instead of
  6749. ;; passing it as an argument to `bury-buffer' so that
  6750. ;; `bury-buffer' removes it from the window.
  6751. (with-current-buffer buf
  6752. (bury-buffer))
  6753. (kill-buffer buf)
  6754. (setq org-agenda-archives-mode nil
  6755. org-agenda-buffer nil)))))
  6756. (defun org-agenda-exit ()
  6757. "Exit the agenda, killing Org buffers loaded by the agenda.
  6758. Like `org-agenda-Quit', but kill any buffers that were created by
  6759. the agenda. Org buffers visited directly by the user will not be
  6760. touched. Also, exit the agenda even if it is in column view."
  6761. (interactive)
  6762. (when org-agenda-columns-active
  6763. (org-columns-quit))
  6764. (org-release-buffers org-agenda-new-buffers)
  6765. (setq org-agenda-new-buffers nil)
  6766. (org-agenda-Quit))
  6767. (defun org-agenda-kill-all-agenda-buffers ()
  6768. "Kill all buffers in `org-agenda-mode'.
  6769. This is used when toggling sticky agendas."
  6770. (interactive)
  6771. (let (blist)
  6772. (dolist (buf (buffer-list))
  6773. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6774. (push buf blist)))
  6775. (mapc 'kill-buffer blist)))
  6776. (defun org-agenda-execute (arg)
  6777. "Execute another agenda command, keeping same window.
  6778. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6779. in the agenda."
  6780. (interactive "P")
  6781. (let ((org-agenda-window-setup 'current-window))
  6782. (org-agenda arg)))
  6783. (defun org-agenda-redo (&optional all)
  6784. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6785. (interactive "P")
  6786. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6787. (cpa (unless (eq all t) current-prefix-arg))
  6788. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6789. (org-agenda-sticky nil)
  6790. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6791. org-agenda-buffer-name))
  6792. (org-agenda-keep-modes t)
  6793. (tag-filter org-agenda-tag-filter)
  6794. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6795. (top-hl-filter org-agenda-top-headline-filter)
  6796. (cat-filter org-agenda-category-filter)
  6797. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6798. (re-filter org-agenda-regexp-filter)
  6799. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6800. (effort-filter org-agenda-effort-filter)
  6801. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6802. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6803. (cols org-agenda-columns-active)
  6804. (line (org-current-line))
  6805. (window-line (- line (org-current-line (window-start))))
  6806. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6807. (redo-cmd (get-text-property p 'org-redo-cmd))
  6808. (last-args (get-text-property p 'org-last-args))
  6809. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6810. (org-agenda-overriding-cmd-arguments
  6811. (unless (eq all t)
  6812. (cond ((listp last-args)
  6813. (cons (or cpa (car last-args)) (cdr last-args)))
  6814. ((stringp last-args)
  6815. last-args))))
  6816. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6817. (put 'org-agenda-tag-filter :preset-filter nil)
  6818. (put 'org-agenda-category-filter :preset-filter nil)
  6819. (put 'org-agenda-regexp-filter :preset-filter nil)
  6820. (put 'org-agenda-effort-filter :preset-filter nil)
  6821. (and cols (org-columns-quit))
  6822. (message "Rebuilding agenda buffer...")
  6823. (if series-redo-cmd
  6824. (eval series-redo-cmd)
  6825. (org-let lprops redo-cmd))
  6826. (setq org-agenda-undo-list nil
  6827. org-agenda-pending-undo-list nil
  6828. org-agenda-tag-filter tag-filter
  6829. org-agenda-category-filter cat-filter
  6830. org-agenda-regexp-filter re-filter
  6831. org-agenda-effort-filter effort-filter
  6832. org-agenda-top-headline-filter top-hl-filter)
  6833. (message "Rebuilding agenda buffer...done")
  6834. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6835. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6836. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6837. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6838. (let ((tag (or tag-filter tag-preset))
  6839. (cat (or cat-filter cat-preset))
  6840. (effort (or effort-filter effort-preset))
  6841. (re (or re-filter re-preset)))
  6842. (when tag (org-agenda-filter-apply tag 'tag t))
  6843. (when cat (org-agenda-filter-apply cat 'category))
  6844. (when effort (org-agenda-filter-apply effort 'effort))
  6845. (when re (org-agenda-filter-apply re 'regexp)))
  6846. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6847. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6848. (org-goto-line line)
  6849. (recenter window-line)))
  6850. (defvar org-global-tags-completion-table nil)
  6851. (defvar org-agenda-filter-form nil)
  6852. (defvar org-agenda-filtered-by-category nil)
  6853. (defun org-agenda-filter-by-category (strip)
  6854. "Filter lines in the agenda buffer that have a specific category.
  6855. The category is that of the current line.
  6856. Without prefix argument, keep only the lines of that category.
  6857. With a prefix argument, exclude the lines of that category.
  6858. "
  6859. (interactive "P")
  6860. (if (and org-agenda-filtered-by-category
  6861. org-agenda-category-filter)
  6862. (org-agenda-filter-show-all-cat)
  6863. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6864. (cond
  6865. ((and cat strip)
  6866. (org-agenda-filter-apply
  6867. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6868. (cat
  6869. (org-agenda-filter-apply
  6870. (setq org-agenda-category-filter
  6871. (list (concat "+" cat))) 'category))
  6872. (t (error "No category at point"))))))
  6873. (defun org-find-top-headline (&optional pos)
  6874. "Find the topmost parent headline and return it."
  6875. (save-excursion
  6876. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6877. (if pos (goto-char pos))
  6878. ;; Skip up to the topmost parent
  6879. (while (ignore-errors (outline-up-heading 1) t))
  6880. (ignore-errors
  6881. (nth 4 (org-heading-components))))))
  6882. (defvar org-agenda-filtered-by-top-headline nil)
  6883. (defun org-agenda-filter-by-top-headline (strip)
  6884. "Keep only those lines that are descendants from the same top headline.
  6885. The top headline is that of the current line."
  6886. (interactive "P")
  6887. (if org-agenda-filtered-by-top-headline
  6888. (progn
  6889. (setq org-agenda-filtered-by-top-headline nil
  6890. org-agenda-top-headline-filter nil)
  6891. (org-agenda-filter-show-all-top-filter))
  6892. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6893. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6894. (error "No top-level headline at point")))))
  6895. (defvar org-agenda-regexp-filter nil)
  6896. (defun org-agenda-filter-by-regexp (strip)
  6897. "Filter agenda entries by a regular expression.
  6898. Regexp filters are cumulative.
  6899. With no prefix argument, keep entries matching the regexp.
  6900. With one prefix argument, filter out entries matching the regexp.
  6901. With two prefix arguments, remove the regexp filters."
  6902. (interactive "P")
  6903. (if (not (equal strip '(16)))
  6904. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6905. (read-from-minibuffer
  6906. (if (equal strip '(4))
  6907. "Filter out entries matching regexp: "
  6908. "Narrow to entries matching regexp: ")))))
  6909. (push flt org-agenda-regexp-filter)
  6910. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6911. (org-agenda-filter-show-all-re)
  6912. (message "Regexp filter removed")))
  6913. (defvar org-agenda-effort-filter nil)
  6914. (defun org-agenda-filter-by-effort (strip)
  6915. "Filter agenda entries by effort.
  6916. With no prefix argument, keep entries matching the effort condition.
  6917. With one prefix argument, filter out entries matching the condition.
  6918. With two prefix arguments, remove the effort filters."
  6919. (interactive "P")
  6920. (cond ((member strip '(nil 4))
  6921. (let ((efforts (org-split-string
  6922. (or (cdr (assoc (concat org-effort-property "_ALL")
  6923. org-global-properties))
  6924. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6925. "")))
  6926. (eff -1)
  6927. effort-prompt op)
  6928. (while (not (member op '(?< ?> ?=)))
  6929. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6930. (cl-loop for i from 0 to 9 do
  6931. (setq effort-prompt
  6932. (concat
  6933. effort-prompt " ["
  6934. (if (= i 9) "0" (int-to-string (1+ i)))
  6935. "]" (nth i efforts))))
  6936. (message "Effort %s%s" (char-to-string op) effort-prompt)
  6937. (while (or (< eff 0) (> eff 9))
  6938. (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
  6939. (setq org-agenda-effort-filter
  6940. (list (concat (if strip "-" "+")
  6941. (char-to-string op) (nth (1- eff) efforts))))
  6942. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6943. (t (org-agenda-filter-show-all-effort)
  6944. (message "Effort filter removed"))))
  6945. (defun org-agenda-filter-remove-all ()
  6946. "Remove all filters from the current agenda buffer."
  6947. (interactive)
  6948. (when org-agenda-tag-filter
  6949. (org-agenda-filter-show-all-tag))
  6950. (when org-agenda-category-filter
  6951. (org-agenda-filter-show-all-cat))
  6952. (when org-agenda-regexp-filter
  6953. (org-agenda-filter-show-all-re))
  6954. (when org-agenda-top-headline-filter
  6955. (org-agenda-filter-show-all-top-filter))
  6956. (when org-agenda-effort-filter
  6957. (org-agenda-filter-show-all-effort))
  6958. (org-agenda-finalize))
  6959. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  6960. "Keep only those lines in the agenda buffer that have a specific tag.
  6961. The tag is selected with its fast selection letter, as
  6962. configured. With a single \\[universal-argument] prefix ARG,
  6963. exclude the agenda search. With a double \\[universal-argument]
  6964. prefix ARG, filter the literal tag. I.e. don't filter on all its
  6965. group members.
  6966. A lisp caller can specify CHAR. EXCLUDE means that the new tag should be
  6967. used to exclude the search - the interactive user can also press `-' or `+'
  6968. to switch between filtering and excluding."
  6969. (interactive "P")
  6970. (let* ((alist org-tag-alist-for-agenda)
  6971. (tag-chars (mapconcat
  6972. (lambda (x) (if (and (not (symbolp (car x)))
  6973. (cdr x))
  6974. (char-to-string (cdr x))
  6975. ""))
  6976. org-tag-alist-for-agenda ""))
  6977. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  6978. (string-to-list tag-chars)))
  6979. (exclude (or exclude (equal arg '(4))))
  6980. (expand (not (equal arg '(16))))
  6981. (inhibit-read-only t)
  6982. (current org-agenda-tag-filter)
  6983. a n tag)
  6984. (unless char
  6985. (while (not (memq char valid-char-list))
  6986. (message
  6987. "%s by tag [%s ], [TAB], %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  6988. (if exclude "Exclude" "Filter") tag-chars
  6989. (if org-agenda-auto-exclude-function "[RET], " "")
  6990. (if expand "" ", no grouptag expand"))
  6991. (setq char (read-char-exclusive))
  6992. ;; Excluding or filtering down
  6993. (cond ((eq char ?-) (setq exclude t))
  6994. ((eq char ?+) (setq exclude nil)))))
  6995. (when (eq char ?\t)
  6996. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6997. (setq-local org-global-tags-completion-table
  6998. (org-global-tags-completion-table)))
  6999. (let ((completion-ignore-case t))
  7000. (setq tag (completing-read
  7001. "Tag: " org-global-tags-completion-table))))
  7002. (cond
  7003. ((eq char ?\r)
  7004. (org-agenda-filter-show-all-tag)
  7005. (when org-agenda-auto-exclude-function
  7006. (setq org-agenda-tag-filter nil)
  7007. (dolist (tag (org-agenda-get-represented-tags))
  7008. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7009. (if modifier
  7010. (push modifier org-agenda-tag-filter))))
  7011. (if (not (null org-agenda-tag-filter))
  7012. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7013. ((eq char ?/)
  7014. (org-agenda-filter-show-all-tag)
  7015. (when (get 'org-agenda-tag-filter :preset-filter)
  7016. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7017. ((eq char ?.)
  7018. (setq org-agenda-tag-filter
  7019. (mapcar (lambda(tag) (concat "+" tag))
  7020. (org-get-at-bol 'tags)))
  7021. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7022. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7023. ((or (eq char ?\s)
  7024. (setq a (rassoc char alist))
  7025. (and tag (setq a (cons tag nil))))
  7026. (org-agenda-filter-show-all-tag)
  7027. (setq tag (car a))
  7028. (setq org-agenda-tag-filter
  7029. (cons (concat (if exclude "-" "+") tag)
  7030. current))
  7031. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7032. (t (error "Invalid tag selection character %c" char)))))
  7033. (defun org-agenda-get-represented-tags ()
  7034. "Get a list of all tags currently represented in the agenda."
  7035. (let (p tags)
  7036. (save-excursion
  7037. (goto-char (point-min))
  7038. (while (setq p (next-single-property-change (point) 'tags))
  7039. (goto-char p)
  7040. (mapc (lambda (x) (add-to-list 'tags x))
  7041. (get-text-property (point) 'tags))))
  7042. tags))
  7043. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7044. "Create the form that tests a line for agenda filter. Optional
  7045. argument EXPAND can be used for the TYPE tag and will expand the
  7046. tags in the FILTER if any of the tags in FILTER are grouptags."
  7047. (let (f f1)
  7048. (cond
  7049. ;; Tag filter
  7050. ((eq type 'tag)
  7051. (setq filter
  7052. (delete-dups
  7053. (append (get 'org-agenda-tag-filter :preset-filter)
  7054. filter)))
  7055. (dolist (x filter)
  7056. (let ((op (string-to-char x)))
  7057. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7058. (setq x (list x)))
  7059. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7060. (push f1 f))))
  7061. ;; Category filter
  7062. ((eq type 'category)
  7063. (setq filter
  7064. (delete-dups
  7065. (append (get 'org-agenda-category-filter :preset-filter)
  7066. filter)))
  7067. (dolist (x filter)
  7068. (if (equal "-" (substring x 0 1))
  7069. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7070. (setq f1 (list 'equal (substring x 1) 'cat)))
  7071. (push f1 f)))
  7072. ;; Regexp filter
  7073. ((eq type 'regexp)
  7074. (setq filter
  7075. (delete-dups
  7076. (append (get 'org-agenda-regexp-filter :preset-filter)
  7077. filter)))
  7078. (dolist (x filter)
  7079. (if (equal "-" (substring x 0 1))
  7080. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7081. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7082. (push f1 f)))
  7083. ;; Effort filter
  7084. ((eq type 'effort)
  7085. (setq filter
  7086. (delete-dups
  7087. (append (get 'org-agenda-effort-filter :preset-filter)
  7088. filter)))
  7089. (dolist (x filter)
  7090. (push (org-agenda-filter-effort-form x) f))))
  7091. (cons 'and (nreverse f))))
  7092. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7093. "Return a form associated to tag-expression TAGS.
  7094. Build a form testing a line for agenda filter for
  7095. tag-expressions. OP is an operator of type CHAR that allows the
  7096. function to set the right switches in the returned form."
  7097. (let (form)
  7098. ;; Any of the expressions can match if OP is +, all must match if
  7099. ;; the operator is -.
  7100. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7101. (let* ((tag (substring x 1))
  7102. (f (cond
  7103. ((string= "" tag) '(not tags))
  7104. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7105. ;; TAG is a regexp.
  7106. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7107. (t (list 'member (downcase tag) 'tags)))))
  7108. (push (if (eq op ?-) (list 'not f) f) form)))))
  7109. (defun org-agenda-filter-effort-form (e)
  7110. "Return the form to compare the effort of the current line with what E says.
  7111. E looks like \"+<2:25\"."
  7112. (let (op)
  7113. (setq e (substring e 1))
  7114. (setq op (string-to-char e) e (substring e 1))
  7115. (setq op (cond ((equal op ?<) '<=)
  7116. ((equal op ?>) '>=)
  7117. ((equal op ??) op)
  7118. (t '=)))
  7119. (list 'org-agenda-compare-effort (list 'quote op)
  7120. (org-duration-string-to-minutes e))))
  7121. (defun org-agenda-compare-effort (op value)
  7122. "Compare the effort of the current line with VALUE, using OP.
  7123. If the line does not have an effort defined, return nil."
  7124. (let ((eff (org-get-at-eol 'effort-minutes 1)))
  7125. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
  7126. value)))
  7127. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7128. "Expand group tags in FILTER for the agenda.
  7129. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7130. (if org-group-tags
  7131. (let ((case-fold-search t) rtn)
  7132. (mapc
  7133. (lambda (f)
  7134. (let (f0 dir)
  7135. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7136. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7137. (setq dir (if no-operator "" "+") f0 f))
  7138. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7139. (org-tags-expand f0 t t))
  7140. rtn))))
  7141. filter)
  7142. (reverse rtn))
  7143. filter))
  7144. (defun org-agenda-filter-apply (filter type &optional expand)
  7145. "Set FILTER as the new agenda filter and apply it. Optional
  7146. argument EXPAND can be used for the TYPE tag and will expand the
  7147. tags in the FILTER if any of the tags in FILTER are grouptags."
  7148. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7149. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7150. (let (tags cat txt)
  7151. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7152. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7153. ;; category is used as the filter:
  7154. (setq org-agenda-filtered-by-category
  7155. (and (eq type 'category)
  7156. (not (equal (substring (car filter) 0 1) "-"))))
  7157. (org-agenda-set-mode-name)
  7158. (save-excursion
  7159. (goto-char (point-min))
  7160. (while (not (eobp))
  7161. (if (org-get-at-bol 'org-marker)
  7162. (progn
  7163. (setq tags (org-get-at-bol 'tags)
  7164. cat (org-get-at-eol 'org-category 1)
  7165. txt (org-get-at-bol 'txt))
  7166. (if (not (eval org-agenda-filter-form))
  7167. (org-agenda-filter-hide-line type))
  7168. (beginning-of-line 2))
  7169. (beginning-of-line 2))))
  7170. (if (get-char-property (point) 'invisible)
  7171. (ignore-errors (org-agenda-previous-line)))))
  7172. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7173. "Filter by top headline HL."
  7174. (org-agenda-set-mode-name)
  7175. (save-excursion
  7176. (goto-char (point-min))
  7177. (while (not (eobp))
  7178. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7179. (tophl (and pos (org-find-top-headline pos))))
  7180. (if (and tophl (funcall (if negative 'identity 'not)
  7181. (string= hl tophl)))
  7182. (org-agenda-filter-hide-line 'top-headline)))
  7183. (beginning-of-line 2)))
  7184. (if (get-char-property (point) 'invisible)
  7185. (org-agenda-previous-line))
  7186. (setq org-agenda-top-headline-filter hl
  7187. org-agenda-filtered-by-top-headline t))
  7188. (defun org-agenda-filter-hide-line (type)
  7189. "Hide lines with TYPE in the agenda buffer."
  7190. (let* ((b (max (point-min) (1- (point-at-bol))))
  7191. (e (point-at-eol)))
  7192. (let ((inhibit-read-only t))
  7193. (add-text-properties
  7194. b e `(invisible org-filtered org-filter-type ,type)))))
  7195. (defun org-agenda-remove-filter (type)
  7196. (interactive)
  7197. "Remove filter of type TYPE from the agenda buffer."
  7198. (save-excursion
  7199. (goto-char (point-min))
  7200. (let ((inhibit-read-only t) pos)
  7201. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7202. (goto-char pos)
  7203. (remove-text-properties
  7204. (point) (next-single-property-change (point) 'org-filter-type)
  7205. `(invisible org-filtered org-filter-type ,type))))
  7206. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7207. (setq org-agenda-filter-form nil)
  7208. (org-agenda-set-mode-name)
  7209. (org-agenda-finalize)))
  7210. (defun org-agenda-filter-show-all-tag nil
  7211. (org-agenda-remove-filter 'tag))
  7212. (defun org-agenda-filter-show-all-re nil
  7213. (org-agenda-remove-filter 'regexp))
  7214. (defun org-agenda-filter-show-all-effort nil
  7215. (org-agenda-remove-filter 'effort))
  7216. (defun org-agenda-filter-show-all-cat nil
  7217. (org-agenda-remove-filter 'category))
  7218. (defun org-agenda-filter-show-all-top-filter nil
  7219. (org-agenda-remove-filter 'top-headline))
  7220. (defun org-agenda-manipulate-query-add ()
  7221. "Manipulate the query by adding a search term with positive selection.
  7222. Positive selection means the term must be matched for selection of an entry."
  7223. (interactive)
  7224. (org-agenda-manipulate-query ?\[))
  7225. (defun org-agenda-manipulate-query-subtract ()
  7226. "Manipulate the query by adding a search term with negative selection.
  7227. Negative selection means term must not be matched for selection of an entry."
  7228. (interactive)
  7229. (org-agenda-manipulate-query ?\]))
  7230. (defun org-agenda-manipulate-query-add-re ()
  7231. "Manipulate the query by adding a search regexp with positive selection.
  7232. Positive selection means the regexp must match for selection of an entry."
  7233. (interactive)
  7234. (org-agenda-manipulate-query ?\{))
  7235. (defun org-agenda-manipulate-query-subtract-re ()
  7236. "Manipulate the query by adding a search regexp with negative selection.
  7237. Negative selection means regexp must not match for selection of an entry."
  7238. (interactive)
  7239. (org-agenda-manipulate-query ?\}))
  7240. (defun org-agenda-manipulate-query (char)
  7241. (cond
  7242. ((memq org-agenda-type '(timeline agenda))
  7243. (let ((org-agenda-include-inactive-timestamps t))
  7244. (org-agenda-redo))
  7245. (message "Display now includes inactive timestamps as well"))
  7246. ((eq org-agenda-type 'search)
  7247. (org-add-to-string
  7248. 'org-agenda-query-string
  7249. (if org-agenda-last-search-view-search-was-boolean
  7250. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7251. (?\{ . " +{}") (?\} . " -{}"))))
  7252. " "))
  7253. (setq org-agenda-redo-command
  7254. (list 'org-search-view
  7255. (car (get-text-property (min (1- (point-max)) (point))
  7256. 'org-last-args))
  7257. org-agenda-query-string
  7258. (+ (length org-agenda-query-string)
  7259. (if (member char '(?\{ ?\})) 0 1))))
  7260. (set-register org-agenda-query-register org-agenda-query-string)
  7261. (let ((org-agenda-overriding-arguments
  7262. (cdr org-agenda-redo-command)))
  7263. (org-agenda-redo)))
  7264. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7265. org-agenda-type))))
  7266. (defun org-add-to-string (var string)
  7267. (set var (concat (symbol-value var) string)))
  7268. (defun org-agenda-goto-date (span)
  7269. "Jump to DATE in agenda."
  7270. (interactive "P")
  7271. (let* ((org-read-date-prefer-future
  7272. (eval org-agenda-jump-prefer-future))
  7273. (date (org-read-date))
  7274. (day (time-to-days (org-time-string-to-time date)))
  7275. (org-agenda-sticky-orig org-agenda-sticky)
  7276. (org-agenda-buffer-tmp-name (buffer-name))
  7277. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7278. (0-arg (or current-prefix-arg (car args)))
  7279. (2-arg (nth 2 args))
  7280. (with-hour-p (nth 4 org-agenda-redo-command))
  7281. (newcmd (list 'org-agenda-list 0-arg date
  7282. (org-agenda-span-to-ndays
  7283. 2-arg (org-time-string-to-absolute date))
  7284. with-hour-p))
  7285. (newargs (cdr newcmd))
  7286. (inhibit-read-only t)
  7287. org-agenda-sticky)
  7288. (if (not (org-agenda-check-type t 'agenda))
  7289. (error "Not available in non-agenda views")
  7290. (add-text-properties (point-min) (point-max)
  7291. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7292. (org-agenda-redo)
  7293. (goto-char (point-min))
  7294. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7295. (save-excursion (move-beginning-of-line 2) (eobp))))
  7296. (move-beginning-of-line 2))
  7297. (setq org-agenda-sticky org-agenda-sticky-orig
  7298. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7299. (defun org-agenda-goto-today ()
  7300. "Go to today."
  7301. (interactive)
  7302. (org-agenda-check-type t 'timeline 'agenda)
  7303. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7304. (curspan (nth 2 args))
  7305. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7306. (cond
  7307. (tdpos (goto-char tdpos))
  7308. ((eq org-agenda-type 'agenda)
  7309. (let* ((sd (org-agenda-compute-starting-span
  7310. (org-today) (or curspan org-agenda-span)))
  7311. (org-agenda-overriding-arguments args))
  7312. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7313. (org-agenda-redo)
  7314. (org-agenda-find-same-or-today-or-agenda)))
  7315. (t (error "Cannot find today")))))
  7316. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7317. (goto-char
  7318. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7319. (text-property-any (point-min) (point-max) 'org-today t)
  7320. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7321. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7322. (org-agenda-backward-block))
  7323. (point-min))))
  7324. (defun org-agenda-backward-block ()
  7325. "Move backward by one agenda block."
  7326. (interactive)
  7327. (org-agenda-forward-block 'backward))
  7328. (defun org-agenda-forward-block (&optional backward)
  7329. "Move forward by one agenda block.
  7330. When optional argument BACKWARD is set, go backward"
  7331. (interactive)
  7332. (cond ((not (derived-mode-p 'org-agenda-mode))
  7333. (user-error
  7334. "Cannot execute this command outside of org-agenda-mode buffers"))
  7335. ((looking-at (if backward "\\`" "\\'"))
  7336. (message "Already at the %s block" (if backward "first" "last")))
  7337. (t (let ((pos (prog1 (point)
  7338. (ignore-errors (if backward (backward-char 1)
  7339. (move-end-of-line 1)))))
  7340. (f (if backward
  7341. 'previous-single-property-change
  7342. 'next-single-property-change))
  7343. moved dest)
  7344. (while (and (setq dest (funcall
  7345. f (point) 'org-agenda-structural-header))
  7346. (not (get-text-property
  7347. (point) 'org-agenda-structural-header)))
  7348. (setq moved t)
  7349. (goto-char dest))
  7350. (if moved (move-beginning-of-line 1)
  7351. (goto-char (if backward (point-min) (point-max)))
  7352. (move-beginning-of-line 1)
  7353. (message "No %s block" (if backward "previous" "further")))))))
  7354. (defun org-agenda-later (arg)
  7355. "Go forward in time by the current span.
  7356. With prefix ARG, go forward that many times the current span."
  7357. (interactive "p")
  7358. (org-agenda-check-type t 'agenda)
  7359. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7360. (span (or (nth 2 args) org-agenda-current-span))
  7361. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7362. (greg (calendar-gregorian-from-absolute sd))
  7363. (cnt (org-get-at-bol 'org-day-cnt))
  7364. greg2)
  7365. (cond
  7366. ((numberp span)
  7367. (setq sd (+ (* span arg) sd)))
  7368. ((eq span 'day)
  7369. (setq sd (+ arg sd)))
  7370. ((eq span 'week)
  7371. (setq sd (+ (* 7 arg) sd)))
  7372. ((eq span 'fortnight)
  7373. (setq sd (+ (* 14 arg) sd)))
  7374. ((eq span 'month)
  7375. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7376. sd (calendar-absolute-from-gregorian greg2))
  7377. (setcar greg2 (1+ (car greg2))))
  7378. ((eq span 'year)
  7379. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7380. sd (calendar-absolute-from-gregorian greg2))
  7381. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7382. (t
  7383. (setq sd (+ (* span arg) sd))))
  7384. (let ((org-agenda-overriding-cmd
  7385. ;; `cmd' may have been set by `org-agenda-run-series' which
  7386. ;; uses `org-agenda-overriding-cmd' to decide whether
  7387. ;; overriding is allowed for `cmd'
  7388. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7389. (org-agenda-overriding-arguments
  7390. (list (car args) sd span)))
  7391. (org-agenda-redo)
  7392. (org-agenda-find-same-or-today-or-agenda cnt))))
  7393. (defun org-agenda-earlier (arg)
  7394. "Go backward in time by the current span.
  7395. With prefix ARG, go backward that many times the current span."
  7396. (interactive "p")
  7397. (org-agenda-later (- arg)))
  7398. (defun org-agenda-view-mode-dispatch ()
  7399. "Call one of the view mode commands."
  7400. (interactive)
  7401. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7402. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7403. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7404. (pcase (read-char-exclusive)
  7405. (?\ (call-interactively 'org-agenda-reset-view))
  7406. (?d (call-interactively 'org-agenda-day-view))
  7407. (?w (call-interactively 'org-agenda-week-view))
  7408. (?t (call-interactively 'org-agenda-fortnight-view))
  7409. (?m (call-interactively 'org-agenda-month-view))
  7410. (?y (call-interactively 'org-agenda-year-view))
  7411. (?l (call-interactively 'org-agenda-log-mode))
  7412. (?L (org-agenda-log-mode '(4)))
  7413. (?c (org-agenda-log-mode 'clockcheck))
  7414. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7415. (?a (call-interactively 'org-agenda-archives-mode))
  7416. (?A (org-agenda-archives-mode 'files))
  7417. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7418. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7419. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7420. (?D (call-interactively 'org-agenda-toggle-diary))
  7421. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7422. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7423. (org-agenda-check-type t 'timeline 'agenda)
  7424. (org-agenda-redo))
  7425. (message "Display now includes inactive timestamps as well"))
  7426. (?q (message "Abort"))
  7427. (key (user-error "Invalid key: %s" key))))
  7428. (defun org-agenda-reset-view ()
  7429. "Switch to default view for agenda."
  7430. (interactive)
  7431. (org-agenda-change-time-span org-agenda-span))
  7432. (defun org-agenda-day-view (&optional day-of-month)
  7433. "Switch to daily view for agenda.
  7434. With argument DAY-OF-MONTH, switch to that day of the month."
  7435. (interactive "P")
  7436. (org-agenda-change-time-span 'day day-of-month))
  7437. (defun org-agenda-week-view (&optional iso-week)
  7438. "Switch to daily view for agenda.
  7439. With argument ISO-WEEK, switch to the corresponding ISO week.
  7440. If ISO-WEEK has more then 2 digits, only the last two encode the
  7441. week. Any digits before this encode a year. So 200712 means
  7442. week 12 of year 2007. Years in the range 1938-2037 can also be
  7443. written as 2-digit years."
  7444. (interactive "P")
  7445. (org-agenda-change-time-span 'week iso-week))
  7446. (defun org-agenda-fortnight-view (&optional iso-week)
  7447. "Switch to daily view for agenda.
  7448. With argument ISO-WEEK, switch to the corresponding ISO week.
  7449. If ISO-WEEK has more then 2 digits, only the last two encode the
  7450. week. Any digits before this encode a year. So 200712 means
  7451. week 12 of year 2007. Years in the range 1938-2037 can also be
  7452. written as 2-digit years."
  7453. (interactive "P")
  7454. (org-agenda-change-time-span 'fortnight iso-week))
  7455. (defun org-agenda-month-view (&optional month)
  7456. "Switch to monthly view for agenda.
  7457. With argument MONTH, switch to that month."
  7458. (interactive "P")
  7459. (org-agenda-change-time-span 'month month))
  7460. (defun org-agenda-year-view (&optional year)
  7461. "Switch to yearly view for agenda.
  7462. With argument YEAR, switch to that year.
  7463. If MONTH has more then 2 digits, only the last two encode the
  7464. month. Any digits before this encode a year. So 200712 means
  7465. December year 2007. Years in the range 1938-2037 can also be
  7466. written as 2-digit years."
  7467. (interactive "P")
  7468. (when year
  7469. (setq year (org-small-year-to-year year)))
  7470. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7471. (org-agenda-change-time-span 'year year)
  7472. (error "Abort")))
  7473. (defun org-agenda-change-time-span (span &optional n)
  7474. "Change the agenda view to SPAN.
  7475. SPAN may be `day', `week', `fortnight', `month', `year'."
  7476. (org-agenda-check-type t 'agenda)
  7477. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7478. (curspan (nth 2 args)))
  7479. (if (and (not n) (equal curspan span))
  7480. (error "Viewing span is already \"%s\"" span))
  7481. (let* ((sd (or (org-get-at-bol 'day)
  7482. (nth 1 args)
  7483. org-starting-day))
  7484. (sd (org-agenda-compute-starting-span sd span n))
  7485. (org-agenda-overriding-cmd
  7486. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7487. (org-agenda-overriding-arguments
  7488. (list (car args) sd span)))
  7489. (org-agenda-redo)
  7490. (org-agenda-find-same-or-today-or-agenda))
  7491. (org-agenda-set-mode-name)
  7492. (message "Switched to %s view" span)))
  7493. (defun org-agenda-compute-starting-span (sd span &optional n)
  7494. "Compute starting date for agenda.
  7495. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7496. is a cons cell with the starting date and the number of days,
  7497. so that the date SD will be in that range."
  7498. (let* ((greg (calendar-gregorian-from-absolute sd))
  7499. (dg (nth 1 greg))
  7500. (mg (car greg))
  7501. (yg (nth 2 greg)))
  7502. (cond
  7503. ((eq span 'day)
  7504. (when n
  7505. (setq sd (+ (calendar-absolute-from-gregorian
  7506. (list mg 1 yg))
  7507. n -1))))
  7508. ((or (eq span 'week) (eq span 'fortnight))
  7509. (let* ((nt (calendar-day-of-week
  7510. (calendar-gregorian-from-absolute sd)))
  7511. (d (if org-agenda-start-on-weekday
  7512. (- nt org-agenda-start-on-weekday)
  7513. 0))
  7514. y1)
  7515. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7516. (when n
  7517. (require 'cal-iso)
  7518. (when (> n 99)
  7519. (setq y1 (org-small-year-to-year (/ n 100))
  7520. n (mod n 100)))
  7521. (setq sd
  7522. (calendar-iso-to-absolute
  7523. (list n 1
  7524. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7525. ((eq span 'month)
  7526. (let (y1)
  7527. (when (and n (> n 99))
  7528. (setq y1 (org-small-year-to-year (/ n 100))
  7529. n (mod n 100)))
  7530. (setq sd (calendar-absolute-from-gregorian
  7531. (list (or n mg) 1 (or y1 yg))))))
  7532. ((eq span 'year)
  7533. (setq sd (calendar-absolute-from-gregorian
  7534. (list 1 1 (or n yg))))))
  7535. sd))
  7536. (defun org-agenda-next-date-line (&optional arg)
  7537. "Jump to the next line indicating a date in agenda buffer."
  7538. (interactive "p")
  7539. (org-agenda-check-type t 'agenda 'timeline)
  7540. (beginning-of-line 1)
  7541. ;; This does not work if user makes date format that starts with a blank
  7542. (if (looking-at "^\\S-") (forward-char 1))
  7543. (if (not (re-search-forward "^\\S-" nil t arg))
  7544. (progn
  7545. (backward-char 1)
  7546. (error "No next date after this line in this buffer")))
  7547. (goto-char (match-beginning 0)))
  7548. (defun org-agenda-previous-date-line (&optional arg)
  7549. "Jump to the previous line indicating a date in agenda buffer."
  7550. (interactive "p")
  7551. (org-agenda-check-type t 'agenda 'timeline)
  7552. (beginning-of-line 1)
  7553. (if (not (re-search-backward "^\\S-" nil t arg))
  7554. (error "No previous date before this line in this buffer")))
  7555. ;; Initialize the highlight
  7556. (defvar org-hl (make-overlay 1 1))
  7557. (overlay-put org-hl 'face 'highlight)
  7558. (defun org-highlight (begin end &optional buffer)
  7559. "Highlight a region with overlay."
  7560. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7561. (defun org-unhighlight ()
  7562. "Detach overlay INDEX."
  7563. (delete-overlay org-hl))
  7564. (defun org-unhighlight-once ()
  7565. "Remove the highlight from its position, and this function from the hook."
  7566. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7567. (org-unhighlight))
  7568. (defvar org-agenda-pre-follow-window-conf nil)
  7569. (defun org-agenda-follow-mode ()
  7570. "Toggle follow mode in an agenda buffer."
  7571. (interactive)
  7572. (unless org-agenda-follow-mode
  7573. (setq org-agenda-pre-follow-window-conf
  7574. (current-window-configuration)))
  7575. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7576. (unless org-agenda-follow-mode
  7577. (set-window-configuration org-agenda-pre-follow-window-conf))
  7578. (org-agenda-set-mode-name)
  7579. (org-agenda-do-context-action)
  7580. (message "Follow mode is %s"
  7581. (if org-agenda-follow-mode "on" "off")))
  7582. (defun org-agenda-entry-text-mode (&optional arg)
  7583. "Toggle entry text mode in an agenda buffer."
  7584. (interactive "P")
  7585. (if (or org-agenda-tag-filter
  7586. org-agenda-category-filter
  7587. org-agenda-regexp-filter
  7588. org-agenda-top-headline-filter)
  7589. (user-error "Can't show entry text in filtered views")
  7590. (setq org-agenda-entry-text-mode (or (integerp arg)
  7591. (not org-agenda-entry-text-mode)))
  7592. (org-agenda-entry-text-hide)
  7593. (and org-agenda-entry-text-mode
  7594. (let ((org-agenda-entry-text-maxlines
  7595. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7596. (org-agenda-entry-text-show)))
  7597. (org-agenda-set-mode-name)
  7598. (message "Entry text mode is %s%s"
  7599. (if org-agenda-entry-text-mode "on" "off")
  7600. (if (not org-agenda-entry-text-mode) ""
  7601. (format " (maximum number of lines is %d)"
  7602. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7603. (defun org-agenda-clockreport-mode ()
  7604. "Toggle clocktable mode in an agenda buffer."
  7605. (interactive)
  7606. (org-agenda-check-type t 'agenda)
  7607. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7608. (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
  7609. (org-agenda-set-mode-name)
  7610. (org-agenda-redo)
  7611. (message "Clocktable mode is %s"
  7612. (if org-agenda-clockreport-mode "on" "off")))
  7613. (defun org-agenda-log-mode (&optional special)
  7614. "Toggle log mode in an agenda buffer.
  7615. With argument SPECIAL, show all possible log items, not only the ones
  7616. configured in `org-agenda-log-mode-items'.
  7617. With a double \\[universal-argument] prefix arg, show *only* \
  7618. log items, nothing else."
  7619. (interactive "P")
  7620. (org-agenda-check-type t 'agenda 'timeline)
  7621. (setq org-agenda-show-log
  7622. (cond
  7623. ((equal special '(16)) 'only)
  7624. ((eq special 'clockcheck)
  7625. (if (eq org-agenda-show-log 'clockcheck)
  7626. nil 'clockcheck))
  7627. (special '(closed clock state))
  7628. (t (not org-agenda-show-log))))
  7629. (setq org-agenda-start-with-log-mode org-agenda-show-log)
  7630. (org-agenda-set-mode-name)
  7631. (org-agenda-redo)
  7632. (message "Log mode is %s"
  7633. (if org-agenda-show-log "on" "off")))
  7634. (defun org-agenda-archives-mode (&optional with-files)
  7635. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7636. When called with a prefix argument, include all archive files as well."
  7637. (interactive "P")
  7638. (setq org-agenda-archives-mode
  7639. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7640. (org-agenda-set-mode-name)
  7641. (org-agenda-redo)
  7642. (message
  7643. "%s"
  7644. (cond
  7645. ((eq org-agenda-archives-mode nil)
  7646. "No archives are included")
  7647. ((eq org-agenda-archives-mode 'trees)
  7648. (format "Trees with :%s: tag are included" org-archive-tag))
  7649. ((eq org-agenda-archives-mode t)
  7650. (format "Trees with :%s: tag and all active archive files are included"
  7651. org-archive-tag)))))
  7652. (defun org-agenda-toggle-diary ()
  7653. "Toggle diary inclusion in an agenda buffer."
  7654. (interactive)
  7655. (org-agenda-check-type t 'agenda)
  7656. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7657. (org-agenda-redo)
  7658. (org-agenda-set-mode-name)
  7659. (message "Diary inclusion turned %s"
  7660. (if org-agenda-include-diary "on" "off")))
  7661. (defun org-agenda-toggle-deadlines ()
  7662. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7663. (interactive)
  7664. (org-agenda-check-type t 'agenda)
  7665. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7666. (org-agenda-redo)
  7667. (org-agenda-set-mode-name)
  7668. (message "Deadlines inclusion turned %s"
  7669. (if org-agenda-include-deadlines "on" "off")))
  7670. (defun org-agenda-toggle-time-grid ()
  7671. "Toggle time grid in an agenda buffer."
  7672. (interactive)
  7673. (org-agenda-check-type t 'agenda)
  7674. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7675. (org-agenda-redo)
  7676. (org-agenda-set-mode-name)
  7677. (message "Time-grid turned %s"
  7678. (if org-agenda-use-time-grid "on" "off")))
  7679. (defun org-agenda-set-mode-name ()
  7680. "Set the mode name to indicate all the small mode settings."
  7681. (setq mode-name
  7682. (list "Org-Agenda"
  7683. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7684. " "
  7685. '(:eval (org-agenda-span-name org-agenda-current-span))
  7686. (if org-agenda-follow-mode " Follow" "")
  7687. (if org-agenda-entry-text-mode " ETxt" "")
  7688. (if org-agenda-include-diary " Diary" "")
  7689. (if org-agenda-include-deadlines " Ddl" "")
  7690. (if org-agenda-use-time-grid " Grid" "")
  7691. (if (and (boundp 'org-habit-show-habits)
  7692. org-habit-show-habits) " Habit" "")
  7693. (cond
  7694. ((consp org-agenda-show-log) " LogAll")
  7695. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7696. (org-agenda-show-log " Log")
  7697. (t ""))
  7698. (if (or org-agenda-category-filter
  7699. (get 'org-agenda-category-filter :preset-filter))
  7700. '(:eval (propertize
  7701. (concat " <"
  7702. (mapconcat
  7703. 'identity
  7704. (append
  7705. (get 'org-agenda-category-filter :preset-filter)
  7706. org-agenda-category-filter)
  7707. "")
  7708. ">")
  7709. 'face 'org-agenda-filter-category
  7710. 'help-echo "Category used in filtering")) "")
  7711. (if (or org-agenda-tag-filter
  7712. (get 'org-agenda-tag-filter :preset-filter))
  7713. '(:eval (propertize
  7714. (concat " {"
  7715. (mapconcat
  7716. 'identity
  7717. (append
  7718. (get 'org-agenda-tag-filter :preset-filter)
  7719. org-agenda-tag-filter)
  7720. "")
  7721. "}")
  7722. 'face 'org-agenda-filter-tags
  7723. 'help-echo "Tags used in filtering")) "")
  7724. (if (or org-agenda-effort-filter
  7725. (get 'org-agenda-effort-filter :preset-filter))
  7726. '(:eval (propertize
  7727. (concat " {"
  7728. (mapconcat
  7729. 'identity
  7730. (append
  7731. (get 'org-agenda-effort-filter :preset-filter)
  7732. org-agenda-effort-filter)
  7733. "")
  7734. "}")
  7735. 'face 'org-agenda-filter-effort
  7736. 'help-echo "Effort conditions used in filtering")) "")
  7737. (if (or org-agenda-regexp-filter
  7738. (get 'org-agenda-regexp-filter :preset-filter))
  7739. '(:eval (propertize
  7740. (concat " ["
  7741. (mapconcat
  7742. 'identity
  7743. (append
  7744. (get 'org-agenda-regexp-filter :preset-filter)
  7745. org-agenda-regexp-filter)
  7746. "")
  7747. "]")
  7748. 'face 'org-agenda-filter-regexp
  7749. 'help-echo "Regexp used in filtering")) "")
  7750. (if org-agenda-archives-mode
  7751. (if (eq org-agenda-archives-mode t)
  7752. " Archives"
  7753. (format " :%s:" org-archive-tag))
  7754. "")
  7755. (if org-agenda-clockreport-mode " Clock" "")))
  7756. (force-mode-line-update))
  7757. (defun org-agenda-update-agenda-type ()
  7758. "Update the agenda type after each command."
  7759. (setq org-agenda-type
  7760. (or (get-text-property (point) 'org-agenda-type)
  7761. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7762. (defun org-agenda-next-line ()
  7763. "Move cursor to the next line, and show if follow mode is active."
  7764. (interactive)
  7765. (call-interactively 'next-line)
  7766. (org-agenda-do-context-action))
  7767. (defun org-agenda-previous-line ()
  7768. "Move cursor to the previous line, and show if follow-mode is active."
  7769. (interactive)
  7770. (call-interactively 'previous-line)
  7771. (org-agenda-do-context-action))
  7772. (defun org-agenda-next-item (n)
  7773. "Move cursor to next agenda item."
  7774. (interactive "p")
  7775. (let ((col (current-column)))
  7776. (dotimes (c n)
  7777. (when (next-single-property-change (point-at-eol) 'org-marker)
  7778. (move-end-of-line 1)
  7779. (goto-char (next-single-property-change (point) 'org-marker))))
  7780. (org-move-to-column col))
  7781. (org-agenda-do-context-action))
  7782. (defun org-agenda-previous-item (n)
  7783. "Move cursor to next agenda item."
  7784. (interactive "p")
  7785. (dotimes (c n)
  7786. (let ((col (current-column))
  7787. (goto (save-excursion
  7788. (move-end-of-line 0)
  7789. (previous-single-property-change (point) 'org-marker))))
  7790. (if goto (goto-char goto))
  7791. (org-move-to-column col)))
  7792. (org-agenda-do-context-action))
  7793. (defun org-agenda-do-context-action ()
  7794. "Show outline path and, maybe, follow mode window."
  7795. (let ((m (org-get-at-bol 'org-marker)))
  7796. (when (and (markerp m) (marker-buffer m))
  7797. (and org-agenda-follow-mode
  7798. (if org-agenda-follow-indirect
  7799. (org-agenda-tree-to-indirect-buffer nil)
  7800. (org-agenda-show)))
  7801. (and org-agenda-show-outline-path
  7802. (org-with-point-at m (org-display-outline-path t))))))
  7803. (defun org-agenda-show-tags ()
  7804. "Show the tags applicable to the current item."
  7805. (interactive)
  7806. (let* ((tags (org-get-at-bol 'tags)))
  7807. (if tags
  7808. (message "Tags are :%s:"
  7809. (org-no-properties (mapconcat 'identity tags ":")))
  7810. (message "No tags associated with this line"))))
  7811. (defun org-agenda-goto (&optional highlight)
  7812. "Go to the entry at point in the corresponding Org-mode file."
  7813. (interactive)
  7814. (let* ((marker (or (org-get-at-bol 'org-marker)
  7815. (org-agenda-error)))
  7816. (buffer (marker-buffer marker))
  7817. (pos (marker-position marker)))
  7818. (switch-to-buffer-other-window buffer)
  7819. (widen)
  7820. (push-mark)
  7821. (goto-char pos)
  7822. (when (derived-mode-p 'org-mode)
  7823. (org-show-context 'agenda)
  7824. (recenter (/ (window-height) 2))
  7825. (org-back-to-heading t)
  7826. (if (re-search-forward org-complex-heading-regexp nil t)
  7827. (goto-char (match-beginning 4))))
  7828. (run-hooks 'org-agenda-after-show-hook)
  7829. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7830. (defvar org-agenda-after-show-hook nil
  7831. "Normal hook run after an item has been shown from the agenda.
  7832. Point is in the buffer where the item originated.")
  7833. (defun org-agenda-kill ()
  7834. "Kill the entry or subtree belonging to the current agenda entry."
  7835. (interactive)
  7836. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7837. (let* ((bufname-orig (buffer-name))
  7838. (marker (or (org-get-at-bol 'org-marker)
  7839. (org-agenda-error)))
  7840. (buffer (marker-buffer marker))
  7841. (pos (marker-position marker))
  7842. (type (org-get-at-bol 'type))
  7843. dbeg dend (n 0) conf)
  7844. (org-with-remote-undo buffer
  7845. (with-current-buffer buffer
  7846. (save-excursion
  7847. (goto-char pos)
  7848. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7849. (setq dbeg (progn (org-back-to-heading t) (point))
  7850. dend (org-end-of-subtree t t))
  7851. (setq dbeg (point-at-bol)
  7852. dend (min (point-max) (1+ (point-at-eol)))))
  7853. (goto-char dbeg)
  7854. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7855. (setq conf (or (eq t org-agenda-confirm-kill)
  7856. (and (numberp org-agenda-confirm-kill)
  7857. (> n org-agenda-confirm-kill))))
  7858. (and conf
  7859. (not (y-or-n-p
  7860. (format "Delete entry with %d lines in buffer \"%s\"? "
  7861. n (buffer-name buffer))))
  7862. (error "Abort"))
  7863. (let ((org-agenda-buffer-name bufname-orig))
  7864. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7865. (with-current-buffer buffer (delete-region dbeg dend))
  7866. (message "Agenda item and source killed"))))
  7867. (defvar org-archive-default-command) ; defined in org-archive.el
  7868. (defun org-agenda-archive-default ()
  7869. "Archive the entry or subtree belonging to the current agenda entry."
  7870. (interactive)
  7871. (require 'org-archive)
  7872. (org-agenda-archive-with org-archive-default-command))
  7873. (defun org-agenda-archive-default-with-confirmation ()
  7874. "Archive the entry or subtree belonging to the current agenda entry."
  7875. (interactive)
  7876. (require 'org-archive)
  7877. (org-agenda-archive-with org-archive-default-command 'confirm))
  7878. (defun org-agenda-archive ()
  7879. "Archive the entry or subtree belonging to the current agenda entry."
  7880. (interactive)
  7881. (org-agenda-archive-with 'org-archive-subtree))
  7882. (defun org-agenda-archive-to-archive-sibling ()
  7883. "Move the entry to the archive sibling."
  7884. (interactive)
  7885. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7886. (defun org-agenda-archive-with (cmd &optional confirm)
  7887. "Move the entry to the archive sibling."
  7888. (interactive)
  7889. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7890. (let* ((bufname-orig (buffer-name))
  7891. (marker (or (org-get-at-bol 'org-marker)
  7892. (org-agenda-error)))
  7893. (buffer (marker-buffer marker))
  7894. (pos (marker-position marker)))
  7895. (org-with-remote-undo buffer
  7896. (with-current-buffer buffer
  7897. (if (derived-mode-p 'org-mode)
  7898. (if (and confirm
  7899. (not (y-or-n-p "Archive this subtree or entry? ")))
  7900. (error "Abort")
  7901. (save-window-excursion
  7902. (goto-char pos)
  7903. (let ((org-agenda-buffer-name bufname-orig))
  7904. (org-remove-subtree-entries-from-agenda))
  7905. (org-back-to-heading t)
  7906. (funcall cmd)))
  7907. (error "Archiving works only in Org-mode files"))))))
  7908. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7909. "Remove all lines in the agenda that correspond to a given subtree.
  7910. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7911. If this information is not given, the function uses the tree at point."
  7912. (let ((buf (or buf (current-buffer))) m p)
  7913. (save-excursion
  7914. (unless (and beg end)
  7915. (org-back-to-heading t)
  7916. (setq beg (point))
  7917. (org-end-of-subtree t)
  7918. (setq end (point)))
  7919. (set-buffer (get-buffer org-agenda-buffer-name))
  7920. (save-excursion
  7921. (goto-char (point-max))
  7922. (beginning-of-line 1)
  7923. (while (not (bobp))
  7924. (when (and (setq m (org-get-at-bol 'org-marker))
  7925. (equal buf (marker-buffer m))
  7926. (setq p (marker-position m))
  7927. (>= p beg)
  7928. (< p end))
  7929. (let ((inhibit-read-only t))
  7930. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7931. (beginning-of-line 0))))))
  7932. (defun org-agenda-refile (&optional goto rfloc no-update)
  7933. "Refile the item at point.
  7934. When GOTO is 0 or \\='(64) or a triple \\[universal-argument] prefix argument,
  7935. clear the refile cache.
  7936. When GOTO is \\='(16) or a double \\[universal-argument] prefix argument,
  7937. go to the location of the last refiled item.
  7938. RFLOC can be a refile location obtained in a different way.
  7939. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7940. (interactive "P")
  7941. (cond
  7942. ((member goto '(0 (64)))
  7943. (org-refile-cache-clear))
  7944. ((equal goto '(16))
  7945. (org-refile-goto-last-stored))
  7946. (t
  7947. (let* ((buffer-orig (buffer-name))
  7948. (marker (or (org-get-at-bol 'org-hd-marker)
  7949. (org-agenda-error)))
  7950. (buffer (marker-buffer marker))
  7951. (pos (marker-position marker))
  7952. (rfloc (or rfloc
  7953. (org-refile-get-location
  7954. (if goto "Goto" "Refile to") buffer
  7955. org-refile-allow-creating-parent-nodes))))
  7956. (with-current-buffer buffer
  7957. (save-excursion
  7958. (save-restriction
  7959. (widen)
  7960. (goto-char marker)
  7961. (let ((org-agenda-buffer-name buffer-orig))
  7962. (org-remove-subtree-entries-from-agenda))
  7963. (org-refile goto buffer rfloc)))))
  7964. (unless no-update (org-agenda-redo)))))
  7965. (defun org-agenda-open-link (&optional arg)
  7966. "Open the link(s) in the current entry, if any.
  7967. This looks for a link in the displayed line in the agenda.
  7968. It also looks at the text of the entry itself."
  7969. (interactive "P")
  7970. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7971. (org-get-at-bol 'org-marker)))
  7972. (buffer (and marker (marker-buffer marker)))
  7973. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7974. (lkall (and buffer (org-offer-links-in-entry
  7975. buffer marker arg prefix)))
  7976. (lk0 (car lkall))
  7977. (lk (if (stringp lk0) (list lk0) lk0))
  7978. (lkend (cdr lkall))
  7979. trg)
  7980. (cond
  7981. ((and buffer lk)
  7982. (mapcar (lambda(l)
  7983. (with-current-buffer buffer
  7984. (setq trg (and (string-match org-bracket-link-regexp l)
  7985. (match-string 1 l)))
  7986. (if (or (not trg) (string-match org-any-link-re trg))
  7987. (save-excursion
  7988. (save-restriction
  7989. (widen)
  7990. (goto-char marker)
  7991. (when (search-forward l nil lkend)
  7992. (goto-char (match-beginning 0))
  7993. (org-open-at-point))))
  7994. ;; This is an internal link, widen the buffer
  7995. (switch-to-buffer-other-window buffer)
  7996. (widen)
  7997. (goto-char marker)
  7998. (when (search-forward l nil lkend)
  7999. (goto-char (match-beginning 0))
  8000. (org-open-at-point)))))
  8001. lk))
  8002. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  8003. (save-excursion
  8004. (beginning-of-line 1)
  8005. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  8006. (org-open-link-from-string (match-string 1)))
  8007. (t (message "No link to open here")))))
  8008. (defun org-agenda-copy-local-variable (var)
  8009. "Get a variable from a referenced buffer and install it here."
  8010. (let ((m (org-get-at-bol 'org-marker)))
  8011. (when (and m (buffer-live-p (marker-buffer m)))
  8012. (set (make-local-variable var)
  8013. (with-current-buffer (marker-buffer m)
  8014. (symbol-value var))))))
  8015. (defun org-agenda-switch-to (&optional delete-other-windows)
  8016. "Go to the Org mode file which contains the item at point.
  8017. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8018. displayed Org file fills the frame."
  8019. (interactive)
  8020. (if (and org-return-follows-link
  8021. (not (org-get-at-bol 'org-marker))
  8022. (org-in-regexp org-bracket-link-regexp))
  8023. (org-open-link-from-string (match-string 0))
  8024. (let* ((marker (or (org-get-at-bol 'org-marker)
  8025. (org-agenda-error)))
  8026. (buffer (marker-buffer marker))
  8027. (pos (marker-position marker)))
  8028. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8029. (pop-to-buffer-same-window buffer)
  8030. (when delete-other-windows (delete-other-windows))
  8031. (widen)
  8032. (goto-char pos)
  8033. (when (derived-mode-p 'org-mode)
  8034. (org-show-context 'agenda)
  8035. (run-hooks 'org-agenda-after-show-hook)))))
  8036. (defun org-agenda-goto-mouse (ev)
  8037. "Go to the Org-mode file which contains the item at the mouse click."
  8038. (interactive "e")
  8039. (mouse-set-point ev)
  8040. (org-agenda-goto))
  8041. (defun org-agenda-show (&optional full-entry)
  8042. "Display the Org-mode file which contains the item at point.
  8043. With prefix argument FULL-ENTRY, make the entire entry visible
  8044. if it was hidden in the outline."
  8045. (interactive "P")
  8046. (let ((win (selected-window)))
  8047. (org-agenda-goto t)
  8048. (when full-entry (org-show-entry))
  8049. (select-window win)))
  8050. (defvar org-agenda-show-window nil)
  8051. (defun org-agenda-show-and-scroll-up (&optional arg)
  8052. "Display the Org-mode file which contains the item at point.
  8053. When called repeatedly, scroll the window that is displaying the buffer.
  8054. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  8055. `show-subtree' to display the item, so that drawers and logbooks stay
  8056. folded."
  8057. (interactive "P")
  8058. (let ((win (selected-window)))
  8059. (if (and (window-live-p org-agenda-show-window)
  8060. (eq this-command last-command))
  8061. (progn
  8062. (select-window org-agenda-show-window)
  8063. (ignore-errors (scroll-up)))
  8064. (org-agenda-goto t)
  8065. (if arg (org-show-entry) (outline-show-subtree))
  8066. (setq org-agenda-show-window (selected-window)))
  8067. (select-window win)))
  8068. (defun org-agenda-show-scroll-down ()
  8069. "Scroll down the window showing the agenda."
  8070. (interactive)
  8071. (let ((win (selected-window)))
  8072. (when (window-live-p org-agenda-show-window)
  8073. (select-window org-agenda-show-window)
  8074. (ignore-errors (scroll-down))
  8075. (select-window win))))
  8076. (defun org-agenda-show-1 (&optional more)
  8077. "Display the Org-mode file which contains the item at point.
  8078. The prefix arg selects the amount of information to display:
  8079. 0 hide the subtree
  8080. 1 just show the entry according to defaults.
  8081. 2 show the children view
  8082. 3 show the subtree view
  8083. 4 show the entire subtree and any LOGBOOK drawers
  8084. 5 show the entire subtree and any drawers
  8085. With prefix argument FULL-ENTRY, make the entire entry visible
  8086. if it was hidden in the outline."
  8087. (interactive "p")
  8088. (let ((win (selected-window)))
  8089. (org-agenda-goto t)
  8090. (org-back-to-heading)
  8091. (set-window-start (selected-window) (point-at-bol))
  8092. (cond
  8093. ((= more 0)
  8094. (outline-hide-subtree)
  8095. (save-excursion
  8096. (org-back-to-heading)
  8097. (run-hook-with-args 'org-cycle-hook 'folded))
  8098. (message "Remote: FOLDED"))
  8099. ((and (called-interactively-p 'any) (= more 1))
  8100. (message "Remote: show with default settings"))
  8101. ((= more 2)
  8102. (outline-show-entry)
  8103. (org-show-children)
  8104. (save-excursion
  8105. (org-back-to-heading)
  8106. (run-hook-with-args 'org-cycle-hook 'children))
  8107. (message "Remote: CHILDREN"))
  8108. ((= more 3)
  8109. (outline-show-subtree)
  8110. (save-excursion
  8111. (org-back-to-heading)
  8112. (run-hook-with-args 'org-cycle-hook 'subtree))
  8113. (message "Remote: SUBTREE"))
  8114. ((= more 4)
  8115. (outline-show-subtree)
  8116. (save-excursion
  8117. (org-back-to-heading)
  8118. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8119. (message "Remote: SUBTREE AND LOGBOOK"))
  8120. ((> more 4)
  8121. (outline-show-subtree)
  8122. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8123. (select-window win)))
  8124. (defvar org-agenda-cycle-counter nil)
  8125. (defun org-agenda-cycle-show (&optional n)
  8126. "Show the current entry in another window, with default settings.
  8127. Default settings are taken from `org-show-context-detail'. When
  8128. use repeatedly in immediate succession, the remote entry will
  8129. cycle through visibility
  8130. children -> subtree -> folded
  8131. When called with a numeric prefix arg, that arg will be passed through to
  8132. `org-agenda-show-1'. For the interpretation of that argument, see the
  8133. docstring of `org-agenda-show-1'."
  8134. (interactive "P")
  8135. (if (integerp n)
  8136. (setq org-agenda-cycle-counter n)
  8137. (if (not (eq last-command this-command))
  8138. (setq org-agenda-cycle-counter 1)
  8139. (if (equal org-agenda-cycle-counter 0)
  8140. (setq org-agenda-cycle-counter 2)
  8141. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8142. (if (> org-agenda-cycle-counter 3)
  8143. (setq org-agenda-cycle-counter 0)))))
  8144. (org-agenda-show-1 org-agenda-cycle-counter))
  8145. (defun org-agenda-recenter (arg)
  8146. "Display the Org-mode file which contains the item at point and recenter."
  8147. (interactive "P")
  8148. (let ((win (selected-window)))
  8149. (org-agenda-goto t)
  8150. (recenter arg)
  8151. (select-window win)))
  8152. (defun org-agenda-show-mouse (ev)
  8153. "Display the Org-mode file which contains the item at the mouse click."
  8154. (interactive "e")
  8155. (mouse-set-point ev)
  8156. (org-agenda-show))
  8157. (defun org-agenda-check-no-diary ()
  8158. "Check if the entry is a diary link and abort if yes."
  8159. (if (org-get-at-bol 'org-agenda-diary-link)
  8160. (org-agenda-error)))
  8161. (defun org-agenda-error ()
  8162. "Throw an error when a command is not allowed in the agenda."
  8163. (user-error "Command not allowed in this line"))
  8164. (defun org-agenda-tree-to-indirect-buffer (arg)
  8165. "Show the subtree corresponding to the current entry in an indirect buffer.
  8166. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8167. With a numerical prefix ARG, go up to this level and then take that tree.
  8168. With a negative numeric ARG, go up by this number of levels.
  8169. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8170. use the dedicated frame)."
  8171. (interactive "P")
  8172. (if current-prefix-arg
  8173. (org-agenda-do-tree-to-indirect-buffer arg)
  8174. (let ((agenda-buffer (buffer-name))
  8175. (agenda-window (selected-window))
  8176. (indirect-window
  8177. (and org-last-indirect-buffer
  8178. (get-buffer-window org-last-indirect-buffer))))
  8179. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8180. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8181. (eq org-indirect-buffer-display 'dedicated-frame))
  8182. (unwind-protect
  8183. (unless (and indirect-window (window-live-p indirect-window))
  8184. (setq indirect-window (split-window agenda-window)))
  8185. (and indirect-window (select-window indirect-window))
  8186. (switch-to-buffer org-last-indirect-buffer :norecord)
  8187. (fit-window-to-buffer indirect-window)))
  8188. (select-window (get-buffer-window agenda-buffer))
  8189. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8190. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8191. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8192. (org-agenda-check-no-diary)
  8193. (let* ((marker (or (org-get-at-bol 'org-marker)
  8194. (org-agenda-error)))
  8195. (buffer (marker-buffer marker))
  8196. (pos (marker-position marker)))
  8197. (with-current-buffer buffer
  8198. (save-excursion
  8199. (goto-char pos)
  8200. (funcall 'org-tree-to-indirect-buffer arg)))))
  8201. (defvar org-last-heading-marker (make-marker)
  8202. "Marker pointing to the headline that last changed its TODO state
  8203. by a remote command from the agenda.")
  8204. (defun org-agenda-todo-nextset ()
  8205. "Switch TODO entry to next sequence."
  8206. (interactive)
  8207. (org-agenda-todo 'nextset))
  8208. (defun org-agenda-todo-previousset ()
  8209. "Switch TODO entry to previous sequence."
  8210. (interactive)
  8211. (org-agenda-todo 'previousset))
  8212. (defun org-agenda-todo (&optional arg)
  8213. "Cycle TODO state of line at point, also in Org-mode file.
  8214. This changes the line at point, all other lines in the agenda referring to
  8215. the same tree node, and the headline of the tree node in the Org-mode file."
  8216. (interactive "P")
  8217. (org-agenda-check-no-diary)
  8218. (let* ((col (current-column))
  8219. (marker (or (org-get-at-bol 'org-marker)
  8220. (org-agenda-error)))
  8221. (buffer (marker-buffer marker))
  8222. (pos (marker-position marker))
  8223. (hdmarker (org-get-at-bol 'org-hd-marker))
  8224. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8225. (inhibit-read-only t)
  8226. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8227. (org-with-remote-undo buffer
  8228. (with-current-buffer buffer
  8229. (widen)
  8230. (goto-char pos)
  8231. (org-show-context 'agenda)
  8232. (let ((current-prefix-arg arg))
  8233. (call-interactively 'org-todo))
  8234. (and (bolp) (forward-char 1))
  8235. (setq newhead (org-get-heading))
  8236. (when (and (bound-and-true-p
  8237. org-agenda-headline-snapshot-before-repeat)
  8238. (not (equal org-agenda-headline-snapshot-before-repeat
  8239. newhead))
  8240. todayp)
  8241. (setq newhead org-agenda-headline-snapshot-before-repeat
  8242. just-one t))
  8243. (save-excursion
  8244. (org-back-to-heading)
  8245. (move-marker org-last-heading-marker (point))))
  8246. (beginning-of-line 1)
  8247. (save-window-excursion
  8248. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8249. (when (bound-and-true-p org-clock-out-when-done)
  8250. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8251. newhead)
  8252. (org-agenda-unmark-clocking-task))
  8253. (org-move-to-column col)
  8254. (org-agenda-mark-clocking-task))))
  8255. (defun org-agenda-add-note (&optional arg)
  8256. "Add a time-stamped note to the entry at point."
  8257. (interactive "P")
  8258. (org-agenda-check-no-diary)
  8259. (let* ((marker (or (org-get-at-bol 'org-marker)
  8260. (org-agenda-error)))
  8261. (buffer (marker-buffer marker))
  8262. (pos (marker-position marker))
  8263. (hdmarker (org-get-at-bol 'org-hd-marker))
  8264. (inhibit-read-only t))
  8265. (with-current-buffer buffer
  8266. (widen)
  8267. (goto-char pos)
  8268. (org-show-context 'agenda)
  8269. (org-add-note))))
  8270. (defun org-agenda-change-all-lines (newhead hdmarker
  8271. &optional fixface just-this)
  8272. "Change all lines in the agenda buffer which match HDMARKER.
  8273. The new content of the line will be NEWHEAD (as modified by
  8274. `org-agenda-format-item'). HDMARKER is checked with
  8275. `equal' against all `org-hd-marker' text properties in the file.
  8276. If FIXFACE is non-nil, the face of each item is modified according to
  8277. the new TODO state.
  8278. If JUST-THIS is non-nil, change just the current line, not all.
  8279. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8280. (let* ((inhibit-read-only t)
  8281. (line (org-current-line))
  8282. (org-agenda-buffer (current-buffer))
  8283. (thetags (with-current-buffer (marker-buffer hdmarker)
  8284. (save-excursion (save-restriction (widen)
  8285. (goto-char hdmarker)
  8286. (org-get-tags-at)))))
  8287. props m pl undone-face done-face finish new dotime level cat tags)
  8288. (save-excursion
  8289. (goto-char (point-max))
  8290. (beginning-of-line 1)
  8291. (while (not finish)
  8292. (setq finish (bobp))
  8293. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8294. (or (not just-this) (= (org-current-line) line))
  8295. (equal m hdmarker))
  8296. (setq props (text-properties-at (point))
  8297. dotime (org-get-at-bol 'dotime)
  8298. cat (org-get-at-eol 'org-category 1)
  8299. level (org-get-at-bol 'level)
  8300. tags thetags
  8301. new
  8302. (let ((org-prefix-format-compiled
  8303. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8304. org-prefix-format-compiled))
  8305. (extra (org-get-at-bol 'extra)))
  8306. (with-current-buffer (marker-buffer hdmarker)
  8307. (save-excursion
  8308. (save-restriction
  8309. (widen)
  8310. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8311. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8312. undone-face (org-get-at-bol 'undone-face)
  8313. done-face (org-get-at-bol 'done-face))
  8314. (beginning-of-line 1)
  8315. (cond
  8316. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8317. ((looking-at ".*")
  8318. ;; When replacing the whole line, preserve bulk mark
  8319. ;; overlay, if any.
  8320. (let ((mark (catch :overlay
  8321. (dolist (o (overlays-in (point) (+ 2 (point))))
  8322. (when (eq (overlay-get o 'type)
  8323. 'org-marked-entry-overlay)
  8324. (throw :overlay o))))))
  8325. (replace-match new t t)
  8326. (beginning-of-line)
  8327. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8328. (add-text-properties (point-at-bol) (point-at-eol) props)
  8329. (when fixface
  8330. (add-text-properties
  8331. (point-at-bol) (point-at-eol)
  8332. (list 'face
  8333. (if org-last-todo-state-is-todo
  8334. undone-face done-face))))
  8335. (org-agenda-highlight-todo 'line)
  8336. (beginning-of-line 1))
  8337. (t (error "Line update did not work")))
  8338. (save-restriction
  8339. (narrow-to-region (point-at-bol) (point-at-eol))
  8340. (org-agenda-finalize)))
  8341. (beginning-of-line 0)))))
  8342. (defun org-agenda-align-tags (&optional line)
  8343. "Align all tags in agenda items to `org-agenda-tags-column'."
  8344. (let ((inhibit-read-only t) l c)
  8345. (save-excursion
  8346. (goto-char (if line (point-at-bol) (point-min)))
  8347. (while (re-search-forward "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
  8348. (if line (point-at-eol) nil) t)
  8349. (add-text-properties
  8350. (match-beginning 2) (match-end 2)
  8351. (list 'face (delq nil (let ((prop (get-text-property
  8352. (match-beginning 2) 'face)))
  8353. (or (listp prop) (setq prop (list prop)))
  8354. (if (memq 'org-tag prop)
  8355. prop
  8356. (cons 'org-tag prop))))))
  8357. (setq l (- (match-end 2) (match-beginning 2))
  8358. c (if (< org-agenda-tags-column 0)
  8359. (- (abs org-agenda-tags-column) l)
  8360. org-agenda-tags-column))
  8361. (delete-region (match-beginning 1) (match-end 1))
  8362. (goto-char (match-beginning 1))
  8363. (insert (org-add-props
  8364. (make-string (max 1 (- c (current-column))) ?\ )
  8365. (plist-put (copy-sequence (text-properties-at (point)))
  8366. 'face nil))))
  8367. (goto-char (point-min))
  8368. (org-font-lock-add-tag-faces (point-max)))))
  8369. (defun org-agenda-priority-up ()
  8370. "Increase the priority of line at point, also in Org-mode file."
  8371. (interactive)
  8372. (org-agenda-priority 'up))
  8373. (defun org-agenda-priority-down ()
  8374. "Decrease the priority of line at point, also in Org-mode file."
  8375. (interactive)
  8376. (org-agenda-priority 'down))
  8377. (defun org-agenda-priority (&optional force-direction)
  8378. "Set the priority of line at point, also in Org-mode file.
  8379. This changes the line at point, all other lines in the agenda referring to
  8380. the same tree node, and the headline of the tree node in the Org-mode file.
  8381. Called with a universal prefix arg, show the priority instead of setting it."
  8382. (interactive "P")
  8383. (if (equal force-direction '(4))
  8384. (org-show-priority)
  8385. (unless org-enable-priority-commands
  8386. (error "Priority commands are disabled"))
  8387. (org-agenda-check-no-diary)
  8388. (let* ((col (current-column))
  8389. (marker (or (org-get-at-bol 'org-marker)
  8390. (org-agenda-error)))
  8391. (hdmarker (org-get-at-bol 'org-hd-marker))
  8392. (buffer (marker-buffer hdmarker))
  8393. (pos (marker-position hdmarker))
  8394. (inhibit-read-only t)
  8395. newhead)
  8396. (org-with-remote-undo buffer
  8397. (with-current-buffer buffer
  8398. (widen)
  8399. (goto-char pos)
  8400. (org-show-context 'agenda)
  8401. (funcall 'org-priority force-direction)
  8402. (end-of-line 1)
  8403. (setq newhead (org-get-heading)))
  8404. (org-agenda-change-all-lines newhead hdmarker)
  8405. (org-move-to-column col)))))
  8406. ;; FIXME: should fix the tags property of the agenda line.
  8407. (defun org-agenda-set-tags (&optional tag onoff)
  8408. "Set tags for the current headline."
  8409. (interactive)
  8410. (org-agenda-check-no-diary)
  8411. (if (and (org-region-active-p) (called-interactively-p 'any))
  8412. (call-interactively 'org-change-tag-in-region)
  8413. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8414. (org-agenda-error)))
  8415. (buffer (marker-buffer hdmarker))
  8416. (pos (marker-position hdmarker))
  8417. (inhibit-read-only t)
  8418. newhead)
  8419. (org-with-remote-undo buffer
  8420. (with-current-buffer buffer
  8421. (widen)
  8422. (goto-char pos)
  8423. (org-show-context 'agenda)
  8424. (if tag
  8425. (org-toggle-tag tag onoff)
  8426. (call-interactively 'org-set-tags))
  8427. (end-of-line 1)
  8428. (setq newhead (org-get-heading)))
  8429. (org-agenda-change-all-lines newhead hdmarker)
  8430. (beginning-of-line 1)))))
  8431. (defun org-agenda-set-property ()
  8432. "Set a property for the current headline."
  8433. (interactive)
  8434. (org-agenda-check-no-diary)
  8435. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8436. (org-agenda-error)))
  8437. (buffer (marker-buffer hdmarker))
  8438. (pos (marker-position hdmarker))
  8439. (inhibit-read-only t)
  8440. newhead)
  8441. (org-with-remote-undo buffer
  8442. (with-current-buffer buffer
  8443. (widen)
  8444. (goto-char pos)
  8445. (org-show-context 'agenda)
  8446. (call-interactively 'org-set-property)))))
  8447. (defun org-agenda-set-effort ()
  8448. "Set the effort property for the current headline."
  8449. (interactive)
  8450. (org-agenda-check-no-diary)
  8451. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8452. (org-agenda-error)))
  8453. (buffer (marker-buffer hdmarker))
  8454. (pos (marker-position hdmarker))
  8455. (inhibit-read-only t)
  8456. newhead)
  8457. (org-with-remote-undo buffer
  8458. (with-current-buffer buffer
  8459. (widen)
  8460. (goto-char pos)
  8461. (org-show-context 'agenda)
  8462. (call-interactively 'org-set-effort)
  8463. (end-of-line 1)
  8464. (setq newhead (org-get-heading)))
  8465. (org-agenda-change-all-lines newhead hdmarker))))
  8466. (defun org-agenda-toggle-archive-tag ()
  8467. "Toggle the archive tag for the current entry."
  8468. (interactive)
  8469. (org-agenda-check-no-diary)
  8470. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8471. (org-agenda-error)))
  8472. (buffer (marker-buffer hdmarker))
  8473. (pos (marker-position hdmarker))
  8474. (inhibit-read-only t)
  8475. newhead)
  8476. (org-with-remote-undo buffer
  8477. (with-current-buffer buffer
  8478. (widen)
  8479. (goto-char pos)
  8480. (org-show-context 'agenda)
  8481. (call-interactively 'org-toggle-archive-tag)
  8482. (end-of-line 1)
  8483. (setq newhead (org-get-heading)))
  8484. (org-agenda-change-all-lines newhead hdmarker)
  8485. (beginning-of-line 1))))
  8486. (defun org-agenda-do-date-later (arg)
  8487. (interactive "P")
  8488. (cond
  8489. ((or (equal arg '(16))
  8490. (memq last-command
  8491. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8492. (setq this-command 'org-agenda-date-later-minutes)
  8493. (org-agenda-date-later-minutes 1))
  8494. ((or (equal arg '(4))
  8495. (memq last-command
  8496. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8497. (setq this-command 'org-agenda-date-later-hours)
  8498. (org-agenda-date-later-hours 1))
  8499. (t
  8500. (org-agenda-date-later (prefix-numeric-value arg)))))
  8501. (defun org-agenda-do-date-earlier (arg)
  8502. (interactive "P")
  8503. (cond
  8504. ((or (equal arg '(16))
  8505. (memq last-command
  8506. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8507. (setq this-command 'org-agenda-date-earlier-minutes)
  8508. (org-agenda-date-earlier-minutes 1))
  8509. ((or (equal arg '(4))
  8510. (memq last-command
  8511. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8512. (setq this-command 'org-agenda-date-earlier-hours)
  8513. (org-agenda-date-earlier-hours 1))
  8514. (t
  8515. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8516. (defun org-agenda-date-later (arg &optional what)
  8517. "Change the date of this item to ARG day(s) later."
  8518. (interactive "p")
  8519. (org-agenda-check-type t 'agenda 'timeline)
  8520. (org-agenda-check-no-diary)
  8521. (let* ((marker (or (org-get-at-bol 'org-marker)
  8522. (org-agenda-error)))
  8523. (buffer (marker-buffer marker))
  8524. (pos (marker-position marker))
  8525. cdate today)
  8526. (org-with-remote-undo buffer
  8527. (with-current-buffer buffer
  8528. (widen)
  8529. (goto-char pos)
  8530. (if (not (org-at-timestamp-p))
  8531. (error "Cannot find time stamp"))
  8532. (when (and org-agenda-move-date-from-past-immediately-to-today
  8533. (equal arg 1)
  8534. (or (not what) (eq what 'day))
  8535. (not (save-match-data (org-at-date-range-p))))
  8536. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8537. cdate (calendar-absolute-from-gregorian
  8538. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8539. today (org-today))
  8540. (if (> today cdate)
  8541. ;; immediately shift to today
  8542. (setq arg (- today cdate))))
  8543. (org-timestamp-change arg (or what 'day))
  8544. (when (and (org-at-date-range-p)
  8545. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8546. (let ((end org-last-changed-timestamp))
  8547. (org-timestamp-change arg (or what 'day))
  8548. (setq org-last-changed-timestamp
  8549. (concat org-last-changed-timestamp "--" end)))))
  8550. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8551. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8552. (defun org-agenda-date-earlier (arg &optional what)
  8553. "Change the date of this item to ARG day(s) earlier."
  8554. (interactive "p")
  8555. (org-agenda-date-later (- arg) what))
  8556. (defun org-agenda-date-later-minutes (arg)
  8557. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8558. (interactive "p")
  8559. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8560. (org-agenda-date-later arg 'minute))
  8561. (defun org-agenda-date-earlier-minutes (arg)
  8562. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8563. (interactive "p")
  8564. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8565. (org-agenda-date-earlier arg 'minute))
  8566. (defun org-agenda-date-later-hours (arg)
  8567. "Change the time of this item, in hour steps."
  8568. (interactive "p")
  8569. (org-agenda-date-later arg 'hour))
  8570. (defun org-agenda-date-earlier-hours (arg)
  8571. "Change the time of this item, in hour steps."
  8572. (interactive "p")
  8573. (org-agenda-date-earlier arg 'hour))
  8574. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8575. "Show new date stamp via text properties."
  8576. ;; We use text properties to make this undoable
  8577. (let ((inhibit-read-only t))
  8578. (setq stamp (concat prefix " => " stamp " "))
  8579. (save-excursion
  8580. (goto-char (point-max))
  8581. (while (not (bobp))
  8582. (when (equal marker (org-get-at-bol 'org-marker))
  8583. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8584. (org-move-to-column (- (window-width) (length stamp)) t)
  8585. (add-text-properties
  8586. (1- (point)) (point-at-eol)
  8587. (list 'display (org-add-props stamp nil
  8588. 'face '(secondary-selection default))))
  8589. (beginning-of-line 1))
  8590. (beginning-of-line 0)))))
  8591. (defun org-agenda-date-prompt (arg)
  8592. "Change the date of this item. Date is prompted for, with default today.
  8593. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8594. be used to request time specification in the time stamp."
  8595. (interactive "P")
  8596. (org-agenda-check-type t 'agenda 'timeline)
  8597. (org-agenda-check-no-diary)
  8598. (let* ((marker (or (org-get-at-bol 'org-marker)
  8599. (org-agenda-error)))
  8600. (buffer (marker-buffer marker))
  8601. (pos (marker-position marker)))
  8602. (org-with-remote-undo buffer
  8603. (with-current-buffer buffer
  8604. (widen)
  8605. (goto-char pos)
  8606. (if (not (org-at-timestamp-p t))
  8607. (error "Cannot find time stamp"))
  8608. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8609. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8610. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8611. (defun org-agenda-schedule (arg &optional time)
  8612. "Schedule the item at point.
  8613. ARG is passed through to `org-schedule'."
  8614. (interactive "P")
  8615. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8616. (org-agenda-check-no-diary)
  8617. (let* ((marker (or (org-get-at-bol 'org-marker)
  8618. (org-agenda-error)))
  8619. (type (marker-insertion-type marker))
  8620. (buffer (marker-buffer marker))
  8621. (pos (marker-position marker))
  8622. ts)
  8623. (set-marker-insertion-type marker t)
  8624. (org-with-remote-undo buffer
  8625. (with-current-buffer buffer
  8626. (widen)
  8627. (goto-char pos)
  8628. (setq ts (org-schedule arg time)))
  8629. (org-agenda-show-new-time marker ts " S"))
  8630. (message "%s" ts)))
  8631. (defun org-agenda-deadline (arg &optional time)
  8632. "Schedule the item at point.
  8633. ARG is passed through to `org-deadline'."
  8634. (interactive "P")
  8635. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8636. (org-agenda-check-no-diary)
  8637. (let* ((marker (or (org-get-at-bol 'org-marker)
  8638. (org-agenda-error)))
  8639. (buffer (marker-buffer marker))
  8640. (pos (marker-position marker))
  8641. ts)
  8642. (org-with-remote-undo buffer
  8643. (with-current-buffer buffer
  8644. (widen)
  8645. (goto-char pos)
  8646. (setq ts (org-deadline arg time)))
  8647. (org-agenda-show-new-time marker ts " D"))
  8648. (message "%s" ts)))
  8649. (defun org-agenda-clock-in (&optional arg)
  8650. "Start the clock on the currently selected item."
  8651. (interactive "P")
  8652. (org-agenda-check-no-diary)
  8653. (if (equal arg '(4))
  8654. (org-clock-in arg)
  8655. (let* ((marker (or (org-get-at-bol 'org-marker)
  8656. (org-agenda-error)))
  8657. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8658. (pos (marker-position marker))
  8659. (col (current-column))
  8660. newhead)
  8661. (org-with-remote-undo (marker-buffer marker)
  8662. (with-current-buffer (marker-buffer marker)
  8663. (widen)
  8664. (goto-char pos)
  8665. (org-show-context 'agenda)
  8666. (org-cycle-hide-drawers 'children)
  8667. (org-clock-in arg)
  8668. (setq newhead (org-get-heading)))
  8669. (org-agenda-change-all-lines newhead hdmarker))
  8670. (org-move-to-column col))))
  8671. (defun org-agenda-clock-out ()
  8672. "Stop the currently running clock."
  8673. (interactive)
  8674. (unless (marker-buffer org-clock-marker)
  8675. (error "No running clock"))
  8676. (let ((marker (make-marker)) (col (current-column)) newhead)
  8677. (org-with-remote-undo (marker-buffer org-clock-marker)
  8678. (with-current-buffer (marker-buffer org-clock-marker)
  8679. (save-excursion
  8680. (save-restriction
  8681. (widen)
  8682. (goto-char org-clock-marker)
  8683. (org-back-to-heading t)
  8684. (move-marker marker (point))
  8685. (org-clock-out)
  8686. (setq newhead (org-get-heading))))))
  8687. (org-agenda-change-all-lines newhead marker)
  8688. (move-marker marker nil)
  8689. (org-move-to-column col)
  8690. (org-agenda-unmark-clocking-task)))
  8691. (defun org-agenda-clock-cancel (&optional arg)
  8692. "Cancel the currently running clock."
  8693. (interactive "P")
  8694. (unless (marker-buffer org-clock-marker)
  8695. (user-error "No running clock"))
  8696. (org-with-remote-undo (marker-buffer org-clock-marker)
  8697. (org-clock-cancel)))
  8698. (defun org-agenda-clock-goto ()
  8699. "Jump to the currently clocked in task within the agenda.
  8700. If the currently clocked in task is not listed in the agenda
  8701. buffer, display it in another window."
  8702. (interactive)
  8703. (let (pos)
  8704. (mapc (lambda (o)
  8705. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8706. (setq pos (overlay-start o))))
  8707. (overlays-in (point-min) (point-max)))
  8708. (cond (pos (goto-char pos))
  8709. ;; If the currently clocked entry is not in the agenda
  8710. ;; buffer, we visit it in another window:
  8711. ((bound-and-true-p org-clock-current-task)
  8712. (org-switch-to-buffer-other-window (org-clock-goto)))
  8713. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8714. (defun org-agenda-diary-entry-in-org-file ()
  8715. "Make a diary entry in the file `org-agenda-diary-file'."
  8716. (let (d1 d2 char (text "") dp1 dp2)
  8717. (if (equal (buffer-name) "*Calendar*")
  8718. (setq d1 (calendar-cursor-to-date t)
  8719. d2 (car calendar-mark-ring))
  8720. (setq dp1 (get-text-property (point-at-bol) 'day))
  8721. (unless dp1 (user-error "No date defined in current line"))
  8722. (setq d1 (calendar-gregorian-from-absolute dp1)
  8723. d2 (and (ignore-errors (mark))
  8724. (save-excursion
  8725. (goto-char (mark))
  8726. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8727. (calendar-gregorian-from-absolute dp2))))
  8728. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8729. (setq char (read-char-exclusive))
  8730. (cond
  8731. ((equal char ?d)
  8732. (setq text (read-string "Day entry: "))
  8733. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8734. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8735. ((equal char ?a)
  8736. (setq d1 (list (car d1) (nth 1 d1)
  8737. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8738. (nth 2 d1))))
  8739. (setq text (read-string "Anniversary (use %d to show years): "))
  8740. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8741. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8742. ((equal char ?b)
  8743. (setq text (read-string "Block entry: "))
  8744. (unless (and d1 d2 (not (equal d1 d2)))
  8745. (user-error "No block of days selected"))
  8746. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8747. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8748. ((equal char ?j)
  8749. (org-switch-to-buffer-other-window
  8750. (find-file-noselect org-agenda-diary-file))
  8751. (require 'org-datetree)
  8752. (org-datetree-find-date-create d1)
  8753. (org-reveal t))
  8754. (t (user-error "Invalid selection character `%c'" char)))))
  8755. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8756. "Where in `org-agenda-diary-file' should new entries be added?
  8757. Valid values:
  8758. date-tree in the date tree, as first child of the date
  8759. date-tree-last in the date tree, as last child of the date
  8760. top-level as top-level entries at the end of the file."
  8761. :group 'org-agenda
  8762. :type '(choice
  8763. (const :tag "first in a date tree" date-tree)
  8764. (const :tag "last in a date tree" date-tree-last)
  8765. (const :tag "as top level at end of file" top-level)))
  8766. (defcustom org-agenda-insert-diary-extract-time nil
  8767. "Non-nil means extract any time specification from the diary entry."
  8768. :group 'org-agenda
  8769. :version "24.1"
  8770. :type 'boolean)
  8771. (defcustom org-agenda-bulk-mark-char ">"
  8772. "A single-character string to be used as the bulk mark."
  8773. :group 'org-agenda
  8774. :version "24.1"
  8775. :type 'string)
  8776. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8777. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8778. If TEXT is not empty, it will become the headline of the new entry, and
  8779. the resulting entry will not be shown. When TEXT is empty, switch to
  8780. `org-agenda-diary-file' and let the user finish the entry there."
  8781. (let ((cw (current-window-configuration)))
  8782. (org-switch-to-buffer-other-window
  8783. (find-file-noselect org-agenda-diary-file))
  8784. (widen)
  8785. (goto-char (point-min))
  8786. (cond
  8787. ((eq type 'anniversary)
  8788. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8789. (progn
  8790. (or (org-at-heading-p t)
  8791. (progn
  8792. (outline-next-heading)
  8793. (insert "* Anniversaries\n\n")
  8794. (beginning-of-line -1)))))
  8795. (outline-next-heading)
  8796. (org-back-over-empty-lines)
  8797. (backward-char 1)
  8798. (insert "\n")
  8799. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8800. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8801. ((eq type 'day)
  8802. (let ((org-prefix-has-time t)
  8803. (org-agenda-time-leading-zero t)
  8804. fmt time time2)
  8805. (if org-agenda-insert-diary-extract-time
  8806. ;; Use org-agenda-format-item to parse text for a time-range and
  8807. ;; remove it. FIXME: This is a hack, we should refactor
  8808. ;; that function to make time extraction available separately
  8809. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8810. time (get-text-property 0 'time fmt)
  8811. time2 (if (> (length time) 0)
  8812. ;; split-string removes trailing ...... if
  8813. ;; no end time given. First space
  8814. ;; separates time from date.
  8815. (concat " " (car (split-string time "\\.")))
  8816. nil)
  8817. text (get-text-property 0 'txt fmt)))
  8818. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8819. (org-agenda-insert-diary-as-top-level text)
  8820. (require 'org-datetree)
  8821. (org-datetree-find-date-create d1)
  8822. (org-agenda-insert-diary-make-new-entry text))
  8823. (org-insert-time-stamp (org-time-from-absolute
  8824. (calendar-absolute-from-gregorian d1))
  8825. nil nil nil nil time2))
  8826. (end-of-line 0))
  8827. ((eq type 'block)
  8828. (if (> (calendar-absolute-from-gregorian d1)
  8829. (calendar-absolute-from-gregorian d2))
  8830. (setq d1 (prog1 d2 (setq d2 d1))))
  8831. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8832. (org-agenda-insert-diary-as-top-level text)
  8833. (require 'org-datetree)
  8834. (org-datetree-find-date-create d1)
  8835. (org-agenda-insert-diary-make-new-entry text))
  8836. (org-insert-time-stamp (org-time-from-absolute
  8837. (calendar-absolute-from-gregorian d1)))
  8838. (insert "--")
  8839. (org-insert-time-stamp (org-time-from-absolute
  8840. (calendar-absolute-from-gregorian d2)))
  8841. (end-of-line 0)))
  8842. (if (string-match "\\S-" text)
  8843. (progn
  8844. (set-window-configuration cw)
  8845. (message "%s entry added to %s"
  8846. (capitalize (symbol-name type))
  8847. (abbreviate-file-name org-agenda-diary-file)))
  8848. (org-reveal t)
  8849. (message "Please finish entry here"))))
  8850. (defun org-agenda-insert-diary-as-top-level (text)
  8851. "Make new entry as a top-level entry at the end of the file.
  8852. Add TEXT as headline, and position the cursor in the second line so that
  8853. a timestamp can be added there."
  8854. (widen)
  8855. (goto-char (point-max))
  8856. (unless (bolp) (insert "\n"))
  8857. (org-insert-heading nil t t)
  8858. (insert text)
  8859. (org-end-of-meta-data)
  8860. (unless (bolp) (insert "\n"))
  8861. (when org-adapt-indentation (indent-to-column 2)))
  8862. (defun org-agenda-insert-diary-make-new-entry (text)
  8863. "Make a new entry with TEXT as a child of the current subtree.
  8864. Position the point in the heading's first body line so that
  8865. a timestamp can be added there."
  8866. (cond
  8867. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  8868. (end-of-line)
  8869. (org-insert-heading '(4) t)
  8870. (org-do-demote))
  8871. (t
  8872. (outline-next-heading)
  8873. (org-back-over-empty-lines)
  8874. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8875. (org-insert-heading nil t)
  8876. (org-do-demote)))
  8877. (let ((col (current-column)))
  8878. (insert text)
  8879. (org-end-of-meta-data)
  8880. ;; Ensure point is left on a blank line, at proper indentation.
  8881. (unless (bolp) (insert "\n"))
  8882. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8883. (when org-adapt-indentation (indent-to-column col)))
  8884. (org-show-set-visibility 'lineage))
  8885. (defun org-agenda-diary-entry ()
  8886. "Make a diary entry, like the `i' command from the calendar.
  8887. All the standard commands work: block, weekly etc.
  8888. When `org-agenda-diary-file' points to a file,
  8889. `org-agenda-diary-entry-in-org-file' is called instead to create
  8890. entries in that Org-mode file."
  8891. (interactive)
  8892. (if (not (eq org-agenda-diary-file 'diary-file))
  8893. (org-agenda-diary-entry-in-org-file)
  8894. (require 'diary-lib)
  8895. (let* ((char (progn
  8896. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8897. (read-char-exclusive)))
  8898. (cmd (cdr (assoc char
  8899. '((?d . diary-insert-entry)
  8900. (?w . diary-insert-weekly-entry)
  8901. (?m . diary-insert-monthly-entry)
  8902. (?y . diary-insert-yearly-entry)
  8903. (?a . diary-insert-anniversary-entry)
  8904. (?b . diary-insert-block-entry)
  8905. (?c . diary-insert-cyclic-entry)))))
  8906. (oldf (symbol-function 'calendar-cursor-to-date))
  8907. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8908. (point (point))
  8909. (mark (or (mark t) (point))))
  8910. (unless cmd
  8911. (user-error "No command associated with <%c>" char))
  8912. (unless (and (get-text-property point 'day)
  8913. (or (not (equal ?b char))
  8914. (get-text-property mark 'day)))
  8915. (user-error "Don't know which date to use for diary entry"))
  8916. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8917. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8918. (let ((calendar-mark-ring
  8919. (list (calendar-gregorian-from-absolute
  8920. (or (get-text-property mark 'day)
  8921. (get-text-property point 'day))))))
  8922. (unwind-protect
  8923. (progn
  8924. (fset 'calendar-cursor-to-date
  8925. (lambda (&optional error dummy)
  8926. (calendar-gregorian-from-absolute
  8927. (get-text-property point 'day))))
  8928. (call-interactively cmd))
  8929. (fset 'calendar-cursor-to-date oldf))))))
  8930. (defun org-agenda-execute-calendar-command (cmd)
  8931. "Execute a calendar command from the agenda with date from cursor."
  8932. (org-agenda-check-type t 'agenda 'timeline)
  8933. (require 'diary-lib)
  8934. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8935. (user-error "Don't know which date to use for the calendar command"))
  8936. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8937. (point (point))
  8938. (date (calendar-gregorian-from-absolute
  8939. (get-text-property point 'day)))
  8940. ;; the following 2 vars are needed in the calendar
  8941. (displayed-month (car date))
  8942. (displayed-year (nth 2 date)))
  8943. (unwind-protect
  8944. (progn
  8945. (fset 'calendar-cursor-to-date
  8946. (lambda (&optional error dummy)
  8947. (calendar-gregorian-from-absolute
  8948. (get-text-property point 'day))))
  8949. (call-interactively cmd))
  8950. (fset 'calendar-cursor-to-date oldf))))
  8951. (defun org-agenda-phases-of-moon ()
  8952. "Display the phases of the moon for the 3 months around the cursor date."
  8953. (interactive)
  8954. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  8955. (defun org-agenda-holidays ()
  8956. "Display the holidays for the 3 months around the cursor date."
  8957. (interactive)
  8958. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  8959. (defvar calendar-longitude) ; defined in calendar.el
  8960. (defvar calendar-latitude) ; defined in calendar.el
  8961. (defvar calendar-location-name) ; defined in calendar.el
  8962. (defun org-agenda-sunrise-sunset (arg)
  8963. "Display sunrise and sunset for the cursor date.
  8964. Latitude and longitude can be specified with the variables
  8965. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8966. argument, latitude and longitude will be prompted for."
  8967. (interactive "P")
  8968. (require 'solar)
  8969. (let ((calendar-longitude (if arg nil calendar-longitude))
  8970. (calendar-latitude (if arg nil calendar-latitude))
  8971. (calendar-location-name
  8972. (if arg "the given coordinates" calendar-location-name)))
  8973. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8974. (defun org-agenda-goto-calendar ()
  8975. "Open the Emacs calendar with the date at the cursor."
  8976. (interactive)
  8977. (org-agenda-check-type t 'agenda 'timeline)
  8978. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8979. (user-error "Don't know which date to open in calendar")))
  8980. (date (calendar-gregorian-from-absolute day))
  8981. (calendar-move-hook nil)
  8982. (calendar-view-holidays-initially-flag nil)
  8983. (calendar-view-diary-initially-flag nil))
  8984. (calendar)
  8985. (calendar-goto-date date)))
  8986. ;;;###autoload
  8987. (defun org-calendar-goto-agenda ()
  8988. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8989. This is a command that has to be installed in `calendar-mode-map'."
  8990. (interactive)
  8991. ;; Temporarily disable sticky agenda since user clearly wants to
  8992. ;; refresh view anyway.
  8993. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  8994. (org-agenda-sticky nil))
  8995. (org-agenda-list nil (calendar-absolute-from-gregorian
  8996. (calendar-cursor-to-date))
  8997. nil)))
  8998. (defun org-agenda-convert-date ()
  8999. (interactive)
  9000. (org-agenda-check-type t 'agenda 'timeline)
  9001. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9002. date s)
  9003. (unless day
  9004. (user-error "Don't know which date to convert"))
  9005. (setq date (calendar-gregorian-from-absolute day))
  9006. (setq s (concat
  9007. "Gregorian: " (calendar-date-string date) "\n"
  9008. "ISO: " (calendar-iso-date-string date) "\n"
  9009. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9010. "Julian: " (calendar-julian-date-string date) "\n"
  9011. "Astron. JD: " (calendar-astro-date-string date)
  9012. " (Julian date number at noon UTC)\n"
  9013. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9014. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9015. "French: " (calendar-french-date-string date) "\n"
  9016. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9017. "Mayan: " (calendar-mayan-date-string date) "\n"
  9018. "Coptic: " (calendar-coptic-date-string date) "\n"
  9019. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9020. "Persian: " (calendar-persian-date-string date) "\n"
  9021. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9022. (with-output-to-temp-buffer "*Dates*"
  9023. (princ s))
  9024. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9025. ;;; Bulk commands
  9026. (defun org-agenda-bulk-marked-p ()
  9027. "Non-nil when current entry is marked for bulk action."
  9028. (eq (get-char-property (point-at-bol) 'type)
  9029. 'org-marked-entry-overlay))
  9030. (defun org-agenda-bulk-mark (&optional arg)
  9031. "Mark the entry at point for future bulk action."
  9032. (interactive "p")
  9033. (dotimes (i (or arg 1))
  9034. (unless (org-get-at-bol 'org-agenda-diary-link)
  9035. (let* ((m (org-get-at-bol 'org-hd-marker))
  9036. ov)
  9037. (unless (org-agenda-bulk-marked-p)
  9038. (unless m (user-error "Nothing to mark at point"))
  9039. (push m org-agenda-bulk-marked-entries)
  9040. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9041. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9042. (org-get-todo-face "TODO")
  9043. 'evaporate)
  9044. (overlay-put ov 'type 'org-marked-entry-overlay))
  9045. (end-of-line 1)
  9046. (or (ignore-errors
  9047. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9048. (beginning-of-line 2))
  9049. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9050. (beginning-of-line 2))
  9051. (message "%d entries marked for bulk action"
  9052. (length org-agenda-bulk-marked-entries))))))
  9053. (defun org-agenda-bulk-mark-all ()
  9054. "Mark all entries for future agenda bulk action."
  9055. (interactive)
  9056. (org-agenda-bulk-mark-regexp "."))
  9057. (defun org-agenda-bulk-mark-regexp (regexp)
  9058. "Mark entries matching REGEXP for future agenda bulk action."
  9059. (interactive "sMark entries matching regexp: ")
  9060. (let ((entries-marked 0) txt-at-point)
  9061. (save-excursion
  9062. (goto-char (point-min))
  9063. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9064. (while (and (re-search-forward regexp nil t)
  9065. (setq txt-at-point (get-text-property (point) 'txt)))
  9066. (when (string-match regexp txt-at-point)
  9067. (setq entries-marked (1+ entries-marked))
  9068. (call-interactively 'org-agenda-bulk-mark))))
  9069. (if (not entries-marked)
  9070. (message "No entry matching this regexp."))))
  9071. (defun org-agenda-bulk-unmark (&optional arg)
  9072. "Unmark the entry at point for future bulk action."
  9073. (interactive "P")
  9074. (if arg
  9075. (org-agenda-bulk-unmark-all)
  9076. (cond ((org-agenda-bulk-marked-p)
  9077. (org-agenda-bulk-remove-overlays
  9078. (point-at-bol) (+ 2 (point-at-bol)))
  9079. (setq org-agenda-bulk-marked-entries
  9080. (delete (org-get-at-bol 'org-hd-marker)
  9081. org-agenda-bulk-marked-entries))
  9082. (end-of-line 1)
  9083. (or (ignore-errors
  9084. (goto-char (next-single-property-change (point) 'txt)))
  9085. (beginning-of-line 2))
  9086. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9087. (beginning-of-line 2))
  9088. (message "%d entries left marked for bulk action"
  9089. (length org-agenda-bulk-marked-entries)))
  9090. (t (message "No entry to unmark here")))))
  9091. (defun org-agenda-bulk-toggle-all ()
  9092. "Toggle all marks for bulk action."
  9093. (interactive)
  9094. (save-excursion
  9095. (goto-char (point-min))
  9096. (while (ignore-errors
  9097. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9098. (org-agenda-bulk-toggle))))
  9099. (defun org-agenda-bulk-toggle ()
  9100. "Toggle the mark at point for bulk action."
  9101. (interactive)
  9102. (if (org-agenda-bulk-marked-p)
  9103. (org-agenda-bulk-unmark)
  9104. (org-agenda-bulk-mark)))
  9105. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9106. "Remove the mark overlays between BEG and END in the agenda buffer.
  9107. BEG and END default to the buffer limits.
  9108. This only removes the overlays, it does not remove the markers
  9109. from the list in `org-agenda-bulk-marked-entries'."
  9110. (interactive)
  9111. (mapc (lambda (ov)
  9112. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9113. (delete-overlay ov)))
  9114. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9115. (defun org-agenda-bulk-unmark-all ()
  9116. "Remove all marks in the agenda buffer.
  9117. This will remove the markers and the overlays."
  9118. (interactive)
  9119. (if (null org-agenda-bulk-marked-entries)
  9120. (message "No entry to unmark")
  9121. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9122. (setq org-agenda-bulk-marked-entries nil)
  9123. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9124. (defcustom org-agenda-persistent-marks nil
  9125. "Non-nil means marked items will stay marked after a bulk action.
  9126. You can toggle this interactively by typing `p' when prompted for a
  9127. bulk action."
  9128. :group 'org-agenda
  9129. :version "24.1"
  9130. :type 'boolean)
  9131. (defun org-agenda-bulk-action (&optional arg)
  9132. "Execute an remote-editing action on all marked entries.
  9133. The prefix arg is passed through to the command if possible."
  9134. (interactive "P")
  9135. ;; Make sure we have markers, and only valid ones
  9136. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9137. (mapc
  9138. (lambda (m)
  9139. (unless (and (markerp m)
  9140. (marker-buffer m)
  9141. (buffer-live-p (marker-buffer m))
  9142. (marker-position m))
  9143. (user-error "Marker %s for bulk command is invalid" m)))
  9144. org-agenda-bulk-marked-entries)
  9145. ;; Prompt for the bulk command
  9146. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9147. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9148. "[S]catter [f]unction "
  9149. (when org-agenda-bulk-custom-functions
  9150. (concat " Custom: ["
  9151. (mapconcat (lambda(f) (char-to-string (car f)))
  9152. org-agenda-bulk-custom-functions "")
  9153. "]"))))
  9154. (catch 'exit
  9155. (let* ((action (read-char-exclusive))
  9156. (org-log-refile (if org-log-refile 'time nil))
  9157. (entries (reverse org-agenda-bulk-marked-entries))
  9158. (org-overriding-default-time
  9159. (if (get-text-property (point) 'org-agenda-date-header)
  9160. (org-get-cursor-date)))
  9161. redo-at-end
  9162. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9163. (cond
  9164. ((equal action ?p)
  9165. (let ((org-agenda-persistent-marks
  9166. (not org-agenda-persistent-marks)))
  9167. (org-agenda-bulk-action)
  9168. (throw 'exit nil)))
  9169. ((equal action ?$)
  9170. (setq cmd '(org-agenda-archive)))
  9171. ((equal action ?A)
  9172. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9173. ((member action '(?r ?w))
  9174. (setq rfloc (org-refile-get-location
  9175. "Refile to"
  9176. (marker-buffer (car entries))
  9177. org-refile-allow-creating-parent-nodes))
  9178. (if (nth 3 rfloc)
  9179. (setcar (nthcdr 3 rfloc)
  9180. (move-marker (make-marker) (nth 3 rfloc)
  9181. (or (get-file-buffer (nth 1 rfloc))
  9182. (find-buffer-visiting (nth 1 rfloc))
  9183. (error "This should not happen")))))
  9184. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9185. redo-at-end t))
  9186. ((equal action ?t)
  9187. (setq state (completing-read
  9188. "Todo state: "
  9189. (with-current-buffer (marker-buffer (car entries))
  9190. (mapcar #'list org-todo-keywords-1))))
  9191. (setq cmd `(let ((org-inhibit-blocking t)
  9192. (org-inhibit-logging 'note))
  9193. (org-agenda-todo ,state))))
  9194. ((memq action '(?- ?+))
  9195. (setq tag (completing-read
  9196. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9197. (with-current-buffer (marker-buffer (car entries))
  9198. (delq nil
  9199. (mapcar (lambda (x) (and (stringp (car x)) x))
  9200. org-current-tag-alist)))))
  9201. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9202. ((memq action '(?s ?d))
  9203. (let* ((time
  9204. (unless arg
  9205. (org-read-date
  9206. nil nil nil
  9207. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9208. org-overriding-default-time)))
  9209. (c1 (if (eq action ?s) 'org-agenda-schedule
  9210. 'org-agenda-deadline)))
  9211. ;; Make sure to not prompt for a note when bulk
  9212. ;; rescheduling as Org cannot cope with simultaneous Org.
  9213. ;; Besides, it could be annoying depending on the number
  9214. ;; of items re-scheduled.
  9215. (setq cmd `(eval '(let ((org-log-reschedule
  9216. (and org-log-reschedule 'time)))
  9217. (,c1 arg ,time))))))
  9218. ((equal action ?S)
  9219. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9220. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9221. (let ((days (read-number
  9222. (format "Scatter tasks across how many %sdays: "
  9223. (if arg "week" "")) 7)))
  9224. (setq cmd
  9225. `(let ((distance (1+ (random ,days))))
  9226. (if arg
  9227. (let ((dist distance)
  9228. (day-of-week
  9229. (calendar-day-of-week
  9230. (calendar-gregorian-from-absolute (org-today)))))
  9231. (dotimes (i (1+ dist))
  9232. (while (member day-of-week org-agenda-weekend-days)
  9233. (cl-incf distance)
  9234. (cl-incf day-of-week)
  9235. (when (= day-of-week 7)
  9236. (setq day-of-week 0)))
  9237. (cl-incf day-of-week)
  9238. (when (= day-of-week 7)
  9239. (setq day-of-week 0)))))
  9240. ;; silently fail when try to replan a sexp entry
  9241. (condition-case nil
  9242. (let* ((date (calendar-gregorian-from-absolute
  9243. (+ (org-today) distance)))
  9244. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9245. (nth 2 date))))
  9246. (org-agenda-schedule nil time))
  9247. (error nil)))))))
  9248. ((assoc action org-agenda-bulk-custom-functions)
  9249. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9250. redo-at-end t))
  9251. ((equal action ?f)
  9252. (setq cmd (list (intern
  9253. (completing-read "Function: "
  9254. obarray 'fboundp t nil nil)))))
  9255. (t (user-error "Invalid bulk action")))
  9256. ;; Sort the markers, to make sure that parents are handled before children
  9257. (setq entries (sort entries
  9258. (lambda (a b)
  9259. (cond
  9260. ((equal (marker-buffer a) (marker-buffer b))
  9261. (< (marker-position a) (marker-position b)))
  9262. (t
  9263. (string< (buffer-name (marker-buffer a))
  9264. (buffer-name (marker-buffer b))))))))
  9265. ;; Now loop over all markers and apply cmd
  9266. (while (setq e (pop entries))
  9267. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9268. (if (not pos)
  9269. (progn (message "Skipping removed entry at %s" e)
  9270. (setq cntskip (1+ cntskip)))
  9271. (goto-char pos)
  9272. (let (org-loop-over-headlines-in-active-region)
  9273. (eval cmd))
  9274. ;; `post-command-hook' is not run yet. We make sure any
  9275. ;; pending log note is processed.
  9276. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9277. (memq 'org-add-log-note post-command-hook))
  9278. (org-add-log-note))
  9279. (setq cnt (1+ cnt))))
  9280. (when redo-at-end (org-agenda-redo))
  9281. (unless org-agenda-persistent-marks
  9282. (org-agenda-bulk-unmark-all))
  9283. (message "Acted on %d entries%s%s"
  9284. cnt
  9285. (if (= cntskip 0)
  9286. ""
  9287. (format ", skipped %d (disappeared before their turn)"
  9288. cntskip))
  9289. (if (not org-agenda-persistent-marks)
  9290. "" " (kept marked)"))))))
  9291. (defun org-agenda-capture (&optional with-time)
  9292. "Call `org-capture' with the date at point.
  9293. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9294. current HH:MM time."
  9295. (interactive "P")
  9296. (if (not (eq major-mode 'org-agenda-mode))
  9297. (user-error "You cannot do this outside of agenda buffers")
  9298. (let ((org-overriding-default-time
  9299. (org-get-cursor-date (equal with-time 1))))
  9300. (call-interactively 'org-capture))))
  9301. ;;; Dragging agenda lines forward/backward
  9302. (defun org-agenda-reapply-filters ()
  9303. "Re-apply all agenda filters."
  9304. (mapcar
  9305. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9306. `((,org-agenda-tag-filter tag)
  9307. (,org-agenda-category-filter category)
  9308. (,org-agenda-regexp-filter regexp)
  9309. (,org-agenda-effort-filter effort)
  9310. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9311. (,(get 'org-agenda-category-filter :preset-filter) category)
  9312. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9313. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9314. (defun org-agenda-drag-line-forward (arg &optional backward)
  9315. "Drag an agenda line forward by ARG lines.
  9316. When the optional argument `backward' is non-nil, move backward."
  9317. (interactive "p")
  9318. (let ((inhibit-read-only t) lst line)
  9319. (if (or (not (get-text-property (point) 'txt))
  9320. (save-excursion
  9321. (dotimes (n arg)
  9322. (move-beginning-of-line (if backward 0 2))
  9323. (push (not (get-text-property (point) 'txt)) lst))
  9324. (delq nil lst)))
  9325. (message "Cannot move line forward")
  9326. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9327. (move-beginning-of-line 1)
  9328. (setq line (buffer-substring (point) end))
  9329. (delete-region (point) end)
  9330. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9331. (insert line)
  9332. (org-agenda-reapply-filters)
  9333. (org-agenda-mark-clocking-task)
  9334. (move-beginning-of-line 0)))))
  9335. (defun org-agenda-drag-line-backward (arg)
  9336. "Drag an agenda line backward by ARG lines."
  9337. (interactive "p")
  9338. (org-agenda-drag-line-forward arg t))
  9339. ;;; Flagging notes
  9340. (defun org-agenda-show-the-flagging-note ()
  9341. "Display the flagging note in the other window.
  9342. When called a second time in direct sequence, offer to remove the FLAGGING
  9343. tag and (if present) the flagging note."
  9344. (interactive)
  9345. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9346. (win (selected-window))
  9347. note heading newhead)
  9348. (unless hdmarker
  9349. (user-error "No linked entry at point"))
  9350. (if (and (eq this-command last-command)
  9351. (y-or-n-p "Unflag and remove any flagging note? "))
  9352. (progn
  9353. (org-agenda-remove-flag hdmarker)
  9354. (let ((win (get-buffer-window "*Flagging Note*")))
  9355. (and win (delete-window win)))
  9356. (message "Entry unflagged"))
  9357. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9358. (unless note
  9359. (user-error "No flagging note"))
  9360. (org-kill-new note)
  9361. (org-switch-to-buffer-other-window "*Flagging Note*")
  9362. (erase-buffer)
  9363. (insert note)
  9364. (goto-char (point-min))
  9365. (while (re-search-forward "\\\\n" nil t)
  9366. (replace-match "\n" t t))
  9367. (goto-char (point-min))
  9368. (select-window win)
  9369. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9370. kill ring. Press \\[org-agenda-show-the-flagging-note] again to remove \
  9371. tag and note")))))
  9372. (defun org-agenda-remove-flag (marker)
  9373. "Remove the FLAGGED tag and any flagging note in the entry."
  9374. (let (newhead)
  9375. (org-with-point-at marker
  9376. (org-toggle-tag "FLAGGED" 'off)
  9377. (org-entry-delete nil "THEFLAGGINGNOTE")
  9378. (setq newhead (org-get-heading)))
  9379. (org-agenda-change-all-lines newhead marker)
  9380. (message "Entry unflagged")))
  9381. (defun org-agenda-get-any-marker (&optional pos)
  9382. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9383. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9384. ;;; Appointment reminders
  9385. (defvar appt-time-msg-list) ; defined in appt.el
  9386. ;;;###autoload
  9387. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9388. "Activate appointments found in `org-agenda-files'.
  9389. With a \\[universal-argument] prefix, refresh the list of
  9390. appointments.
  9391. If FILTER is t, interactively prompt the user for a regular
  9392. expression, and filter out entries that don't match it.
  9393. If FILTER is a string, use this string as a regular expression
  9394. for filtering entries out.
  9395. If FILTER is a function, filter out entries against which
  9396. calling the function returns nil. This function takes one
  9397. argument: an entry from `org-agenda-get-day-entries'.
  9398. FILTER can also be an alist with the car of each cell being
  9399. either `headline' or `category'. For example:
  9400. \\='((headline \"IMPORTANT\")
  9401. (category \"Work\"))
  9402. will only add headlines containing IMPORTANT or headlines
  9403. belonging to the \"Work\" category.
  9404. ARGS are symbols indicating what kind of entries to consider.
  9405. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9406. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9407. and :timestamp entries. See the docstring of `org-diary' for
  9408. details and examples.
  9409. If an entry has a APPT_WARNTIME property, its value will be used
  9410. to override `appt-message-warning-time'."
  9411. (interactive "P")
  9412. (if refresh (setq appt-time-msg-list nil))
  9413. (if (eq filter t)
  9414. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9415. (let* ((cnt 0) ; count added events
  9416. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9417. (org-agenda-new-buffers nil)
  9418. (org-deadline-warning-days 0)
  9419. ;; Do not use `org-today' here because appt only takes
  9420. ;; time and without date as argument, so it may pass wrong
  9421. ;; information otherwise
  9422. (today (org-date-to-gregorian
  9423. (time-to-days (current-time))))
  9424. (org-agenda-restrict nil)
  9425. (files (org-agenda-files 'unrestricted)) entries file
  9426. (org-agenda-buffer nil))
  9427. ;; Get all entries which may contain an appt
  9428. (org-agenda-prepare-buffers files)
  9429. (while (setq file (pop files))
  9430. (setq entries
  9431. (delq nil
  9432. (append entries
  9433. (apply 'org-agenda-get-day-entries
  9434. file today scope)))))
  9435. ;; Map thru entries and find if we should filter them out
  9436. (mapc
  9437. (lambda (x)
  9438. (let* ((evt (org-trim
  9439. (replace-regexp-in-string
  9440. org-bracket-link-regexp "\\3"
  9441. (or (get-text-property 1 'txt x) ""))))
  9442. (cat (get-text-property (1- (length x)) 'org-category x))
  9443. (tod (get-text-property 1 'time-of-day x))
  9444. (ok (or (null filter)
  9445. (and (stringp filter) (string-match filter evt))
  9446. (and (functionp filter) (funcall filter x))
  9447. (and (listp filter)
  9448. (let ((cat-filter (cadr (assoc 'category filter)))
  9449. (evt-filter (cadr (assoc 'headline filter))))
  9450. (or (and (stringp cat-filter)
  9451. (string-match cat-filter cat))
  9452. (and (stringp evt-filter)
  9453. (string-match evt-filter evt)))))))
  9454. (wrn (get-text-property 1 'warntime x)))
  9455. ;; FIXME: Shall we remove text-properties for the appt text?
  9456. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9457. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9458. (setq tod (concat "00" (number-to-string tod)))
  9459. (setq tod (when (string-match
  9460. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9461. (concat (match-string 1 tod) ":"
  9462. (match-string 2 tod))))
  9463. (when (if (version< emacs-version "23.3")
  9464. (appt-add tod evt)
  9465. (appt-add tod evt wrn))
  9466. (setq cnt (1+ cnt))))))
  9467. entries)
  9468. (org-release-buffers org-agenda-new-buffers)
  9469. (if (eq cnt 0)
  9470. (message "No event to add")
  9471. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9472. (defun org-agenda-today-p (date)
  9473. "Non nil when DATE means today.
  9474. DATE is either a list of the form (month day year) or a number of
  9475. days as returned by `calendar-absolute-from-gregorian' or
  9476. `org-today'. This function considers `org-extend-today-until'
  9477. when defining today."
  9478. (eq (org-today)
  9479. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9480. (defun org-agenda-todo-yesterday (&optional arg)
  9481. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9482. (interactive "P")
  9483. (let* ((org-use-effective-time t)
  9484. (hour (third (decode-time
  9485. (org-current-time))))
  9486. (org-extend-today-until (1+ hour)))
  9487. (org-agenda-todo arg)))
  9488. (provide 'org-agenda)
  9489. ;;; org-agenda.el ends here