org-agenda.el 394 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'org)
  42. (require 'org-macs)
  43. (eval-when-compile
  44. (require 'cl))
  45. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  48. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  49. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  50. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  51. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-french-date-string "cal-french" (&optional date))
  54. (declare-function calendar-goto-date "cal-move" (date))
  55. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  56. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  57. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  58. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  59. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  60. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  61. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  62. (declare-function calendar-check-holidays "holidays" (date))
  63. (declare-function org-columns-remove-overlays "org-colview" ())
  64. (declare-function org-datetree-find-date-create "org-datetree"
  65. (date &optional keep-restriction))
  66. (declare-function org-columns-quit "org-colview" ())
  67. (declare-function diary-date-display-form "diary-lib" (&optional type))
  68. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  69. (declare-function org-habit-insert-consistency-graphs
  70. "org-habit" (&optional line))
  71. (declare-function org-is-habit-p "org-habit" (&optional pom))
  72. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  73. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  74. (declare-function org-pop-to-buffer-same-window "org-compat"
  75. (&optional buffer-or-name norecord label))
  76. (declare-function org-agenda-columns "org-colview" ())
  77. (declare-function org-add-archive-files "org-archive" (files))
  78. (declare-function org-capture "org-capture" (&optional goto keys))
  79. (defvar calendar-mode-map) ; defined in calendar.el
  80. (defvar org-clock-current-task nil) ; defined in org-clock.el
  81. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  82. (defvar org-habit-show-habits) ; defined in org-habit.el
  83. (defvar org-habit-show-habits-only-for-today)
  84. (defvar org-habit-show-all-today)
  85. ;; Defined somewhere in this file, but used before definition.
  86. (defvar org-agenda-buffer-name "*Org Agenda*")
  87. (defvar org-agenda-overriding-header nil)
  88. (defvar org-agenda-title-append nil)
  89. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  90. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  91. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  92. (defvar org-agenda-undo-list nil
  93. "List of undoable operations in the agenda since last refresh.")
  94. (defvar org-agenda-pending-undo-list nil
  95. "In a series of undo commands, this is the list of remaining undo items.")
  96. (defcustom org-agenda-confirm-kill 1
  97. "When set, remote killing from the agenda buffer needs confirmation.
  98. When t, a confirmation is always needed. When a number N, confirmation is
  99. only needed when the text to be killed contains more than N non-white lines."
  100. :group 'org-agenda
  101. :type '(choice
  102. (const :tag "Never" nil)
  103. (const :tag "Always" t)
  104. (integer :tag "When more than N lines")))
  105. (defcustom org-agenda-compact-blocks nil
  106. "Non-nil means make the block agenda more compact.
  107. This is done globally by leaving out lines like the agenda span
  108. name and week number or the separator lines."
  109. :group 'org-agenda
  110. :type 'boolean)
  111. (defcustom org-agenda-block-separator ?=
  112. "The separator between blocks in the agenda.
  113. If this is a string, it will be used as the separator, with a newline added.
  114. If it is a character, it will be repeated to fill the window width.
  115. If nil the separator is disabled. In `org-agenda-custom-commands' this
  116. addresses the separator between the current and the previous block."
  117. :group 'org-agenda
  118. :type '(choice
  119. (const :tag "Disabled" nil)
  120. (character)
  121. (string)))
  122. (defgroup org-agenda-export nil
  123. "Options concerning exporting agenda views in Org-mode."
  124. :tag "Org Agenda Export"
  125. :group 'org-agenda)
  126. (defcustom org-agenda-with-colors t
  127. "Non-nil means use colors in agenda views."
  128. :group 'org-agenda-export
  129. :type 'boolean)
  130. (defcustom org-agenda-exporter-settings nil
  131. "Alist of variable/value pairs that should be active during agenda export.
  132. This is a good place to set options for ps-print and for htmlize.
  133. Note that the way this is implemented, the values will be evaluated
  134. before assigned to the variables. So make sure to quote values you do
  135. *not* want evaluated, for example
  136. (setq org-agenda-exporter-settings
  137. '((ps-print-color-p 'black-white)))"
  138. :group 'org-agenda-export
  139. :type '(repeat
  140. (list
  141. (variable)
  142. (sexp :tag "Value"))))
  143. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  144. "Hook run in a temporary buffer before writing the agenda to an export file.
  145. A useful function for this hook is `org-agenda-add-entry-text'."
  146. :group 'org-agenda-export
  147. :type 'hook
  148. :options '(org-agenda-add-entry-text))
  149. (defcustom org-agenda-add-entry-text-maxlines 0
  150. "Maximum number of entry text lines to be added to agenda.
  151. This is only relevant when `org-agenda-add-entry-text' is part of
  152. `org-agenda-before-write-hook', which is the default.
  153. When this is 0, nothing will happen. When it is greater than 0, it
  154. specifies the maximum number of lines that will be added for each entry
  155. that is listed in the agenda view.
  156. Note that this variable is not used during display, only when exporting
  157. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  158. and `org-agenda-entry-text-maxlines'."
  159. :group 'org-agenda
  160. :type 'integer)
  161. (defcustom org-agenda-add-entry-text-descriptive-links t
  162. "Non-nil means export org-links as descriptive links in agenda added text.
  163. This variable applies to the text added to the agenda when
  164. `org-agenda-add-entry-text-maxlines' is larger than 0.
  165. When this variable nil, the URL will (also) be shown."
  166. :group 'org-agenda
  167. :type 'boolean)
  168. (defcustom org-agenda-export-html-style nil
  169. "The style specification for exported HTML Agenda files.
  170. If this variable contains a string, it will replace the default <style>
  171. section as produced by `htmlize'.
  172. Since there are different ways of setting style information, this variable
  173. needs to contain the full HTML structure to provide a style, including the
  174. surrounding HTML tags. The style specifications should include definitions
  175. the fonts used by the agenda, here is an example:
  176. <style type=\"text/css\">
  177. p { font-weight: normal; color: gray; }
  178. .org-agenda-structure {
  179. font-size: 110%;
  180. color: #003399;
  181. font-weight: 600;
  182. }
  183. .org-todo {
  184. color: #cc6666;
  185. font-weight: bold;
  186. }
  187. .org-agenda-done {
  188. color: #339933;
  189. }
  190. .org-done {
  191. color: #339933;
  192. }
  193. .title { text-align: center; }
  194. .todo, .deadline { color: red; }
  195. .done { color: green; }
  196. </style>
  197. or, if you want to keep the style in a file,
  198. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  199. As the value of this option simply gets inserted into the HTML <head> header,
  200. you can \"misuse\" it to also add other text to the header."
  201. :group 'org-agenda-export
  202. :group 'org-export-html
  203. :type '(choice
  204. (const nil)
  205. (string)))
  206. (defcustom org-agenda-persistent-filter nil
  207. "When set, keep filters from one agenda view to the next."
  208. :group 'org-agenda
  209. :type 'boolean)
  210. (defgroup org-agenda-custom-commands nil
  211. "Options concerning agenda views in Org-mode."
  212. :tag "Org Agenda Custom Commands"
  213. :group 'org-agenda)
  214. (defconst org-sorting-choice
  215. '(choice
  216. (const time-up) (const time-down)
  217. (const timestamp-up) (const timestamp-down)
  218. (const scheduled-up) (const scheduled-down)
  219. (const deadline-up) (const deadline-down)
  220. (const ts-up) (const ts-down)
  221. (const tsia-up) (const tsia-down)
  222. (const category-keep) (const category-up) (const category-down)
  223. (const tag-down) (const tag-up)
  224. (const priority-up) (const priority-down)
  225. (const todo-state-up) (const todo-state-down)
  226. (const effort-up) (const effort-down)
  227. (const habit-up) (const habit-down)
  228. (const alpha-up) (const alpha-down)
  229. (const user-defined-up) (const user-defined-down))
  230. "Sorting choices.")
  231. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  232. ;; the new variable `org-agenda-tag-filter-preset'.
  233. (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  234. (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  235. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  236. "List of types searched for when creating the daily/weekly agenda.
  237. This variable is a list of symbols that controls the types of
  238. items that appear in the daily/weekly agenda. Allowed symbols in this
  239. list are are
  240. :timestamp List items containing a date stamp or date range matching
  241. the selected date. This includes sexp entries in angular
  242. brackets.
  243. :sexp List entries resulting from plain diary-like sexps.
  244. :deadline List deadline due on that date. When the date is today,
  245. also list any deadlines past due, or due within
  246. `org-deadline-warning-days'. `:deadline' must appear before
  247. `:scheduled' if the setting of
  248. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  249. any effect.
  250. :deadline* Same as above, but only include the deadline if it has an
  251. hour specification as [h]h:mm.
  252. :scheduled List all items which are scheduled for the given date.
  253. The diary for *today* also contains items which were
  254. scheduled earlier and are not yet marked DONE.
  255. :scheduled* Same as above, but only include the scheduled item if it
  256. has an hour specification as [h]h:mm.
  257. By default, all four non-starred types are turned on.
  258. When :scheduled* or :deadline* are included, :schedule or :deadline
  259. will be ignored.
  260. Never set this variable globally using `setq', because then it
  261. will apply to all future agenda commands. Instead, bind it with
  262. `let' to scope it dynamically into the agenda-constructing
  263. command. A good way to set it is through options in
  264. `org-agenda-custom-commands'. For a more flexible (though
  265. somewhat less efficient) way of determining what is included in
  266. the daily/weekly agenda, see `org-agenda-skip-function'.")
  267. (defconst org-agenda-custom-commands-local-options
  268. `(repeat :tag "Local settings for this command. Remember to quote values"
  269. (choice :tag "Setting"
  270. (list :tag "Heading for this block"
  271. (const org-agenda-overriding-header)
  272. (string :tag "Headline"))
  273. (list :tag "Files to be searched"
  274. (const org-agenda-files)
  275. (list
  276. (const :format "" quote)
  277. (repeat (file))))
  278. (list :tag "Sorting strategy"
  279. (const org-agenda-sorting-strategy)
  280. (list
  281. (const :format "" quote)
  282. (repeat
  283. ,org-sorting-choice)))
  284. (list :tag "Prefix format"
  285. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  286. (string))
  287. (list :tag "Number of days in agenda"
  288. (const org-agenda-span)
  289. (choice (const :tag "Day" day)
  290. (const :tag "Week" week)
  291. (const :tag "Fortnight" fortnight)
  292. (const :tag "Month" month)
  293. (const :tag "Year" year)
  294. (integer :tag "Custom")))
  295. (list :tag "Fixed starting date"
  296. (const org-agenda-start-day)
  297. (string :value "2007-11-01"))
  298. (list :tag "Start on day of week"
  299. (const org-agenda-start-on-weekday)
  300. (choice :value 1
  301. (const :tag "Today" nil)
  302. (integer :tag "Weekday No.")))
  303. (list :tag "Include data from diary"
  304. (const org-agenda-include-diary)
  305. (boolean))
  306. (list :tag "Deadline Warning days"
  307. (const org-deadline-warning-days)
  308. (integer :value 1))
  309. (list :tag "Category filter preset"
  310. (const org-agenda-category-filter-preset)
  311. (list
  312. (const :format "" quote)
  313. (repeat
  314. (string :tag "+category or -category"))))
  315. (list :tag "Tags filter preset"
  316. (const org-agenda-tag-filter-preset)
  317. (list
  318. (const :format "" quote)
  319. (repeat
  320. (string :tag "+tag or -tag"))))
  321. (list :tag "Effort filter preset"
  322. (const org-agenda-effort-filter-preset)
  323. (list
  324. (const :format "" quote)
  325. (repeat
  326. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  327. (list :tag "Regexp filter preset"
  328. (const org-agenda-regexp-filter-preset)
  329. (list
  330. (const :format "" quote)
  331. (repeat
  332. (string :tag "+regexp or -regexp"))))
  333. (list :tag "Set daily/weekly entry types"
  334. (const org-agenda-entry-types)
  335. (list
  336. (const :format "" quote)
  337. (set :greedy t :value ,org-agenda-entry-types
  338. (const :deadline)
  339. (const :scheduled)
  340. (const :deadline*)
  341. (const :scheduled*)
  342. (const :timestamp)
  343. (const :sexp))))
  344. (list :tag "Standard skipping condition"
  345. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  346. (const org-agenda-skip-function)
  347. (list
  348. (const :format "" quote)
  349. (list
  350. (choice
  351. :tag "Skipping range"
  352. (const :tag "Skip entry" org-agenda-skip-entry-if)
  353. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  354. (repeat :inline t :tag "Conditions for skipping"
  355. (choice
  356. :tag "Condition type"
  357. (list :tag "Regexp matches" :inline t
  358. (const :format "" 'regexp)
  359. (regexp))
  360. (list :tag "Regexp does not match" :inline t
  361. (const :format "" 'notregexp)
  362. (regexp))
  363. (list :tag "TODO state is" :inline t
  364. (const 'todo)
  365. (choice
  366. (const :tag "Any not-done state" 'todo)
  367. (const :tag "Any done state" 'done)
  368. (const :tag "Any state" 'any)
  369. (list :tag "Keyword list"
  370. (const :format "" quote)
  371. (repeat (string :tag "Keyword")))))
  372. (list :tag "TODO state is not" :inline t
  373. (const 'nottodo)
  374. (choice
  375. (const :tag "Any not-done state" 'todo)
  376. (const :tag "Any done state" 'done)
  377. (const :tag "Any state" 'any)
  378. (list :tag "Keyword list"
  379. (const :format "" quote)
  380. (repeat (string :tag "Keyword")))))
  381. (const :tag "scheduled" 'scheduled)
  382. (const :tag "not scheduled" 'notscheduled)
  383. (const :tag "deadline" 'deadline)
  384. (const :tag "no deadline" 'notdeadline)
  385. (const :tag "timestamp" 'timestamp)
  386. (const :tag "no timestamp" 'nottimestamp))))))
  387. (list :tag "Non-standard skipping condition"
  388. :value (org-agenda-skip-function)
  389. (const org-agenda-skip-function)
  390. (sexp :tag "Function or form (quoted!)"))
  391. (list :tag "Any variable"
  392. (variable :tag "Variable")
  393. (sexp :tag "Value (sexp)"))))
  394. "Selection of examples for agenda command settings.
  395. This will be spliced into the custom type of
  396. `org-agenda-custom-commands'.")
  397. (defcustom org-agenda-custom-commands
  398. '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
  399. "Custom commands for the agenda.
  400. These commands will be offered on the splash screen displayed by the
  401. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  402. (key desc type match settings files)
  403. key The key (one or more characters as a string) to be associated
  404. with the command.
  405. desc A description of the command, when omitted or nil, a default
  406. description is built using MATCH.
  407. type The command type, any of the following symbols:
  408. agenda The daily/weekly agenda.
  409. todo Entries with a specific TODO keyword, in all agenda files.
  410. search Entries containing search words entry or headline.
  411. tags Tags/Property/TODO match in all agenda files.
  412. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  413. todo-tree Sparse tree of specific TODO keyword in *current* file.
  414. tags-tree Sparse tree with all tags matches in *current* file.
  415. occur-tree Occur sparse tree for *current* file.
  416. ... A user-defined function.
  417. match What to search for:
  418. - a single keyword for TODO keyword searches
  419. - a tags match expression for tags searches
  420. - a word search expression for text searches.
  421. - a regular expression for occur searches
  422. For all other commands, this should be the empty string.
  423. settings A list of option settings, similar to that in a let form, so like
  424. this: ((opt1 val1) (opt2 val2) ...). The values will be
  425. evaluated at the moment of execution, so quote them when needed.
  426. files A list of files file to write the produced agenda buffer to
  427. with the command `org-store-agenda-views'.
  428. If a file name ends in \".html\", an HTML version of the buffer
  429. is written out. If it ends in \".ps\", a postscript version is
  430. produced. Otherwise, only the plain text is written to the file.
  431. You can also define a set of commands, to create a composite agenda buffer.
  432. In this case, an entry looks like this:
  433. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  434. where
  435. desc A description string to be displayed in the dispatcher menu.
  436. cmd An agenda command, similar to the above. However, tree commands
  437. are not allowed, but instead you can get agenda and global todo list.
  438. So valid commands for a set are:
  439. (agenda \"\" settings)
  440. (alltodo \"\" settings)
  441. (stuck \"\" settings)
  442. (todo \"match\" settings files)
  443. (search \"match\" settings files)
  444. (tags \"match\" settings files)
  445. (tags-todo \"match\" settings files)
  446. Each command can carry a list of options, and another set of options can be
  447. given for the whole set of commands. Individual command options take
  448. precedence over the general options.
  449. When using several characters as key to a command, the first characters
  450. are prefix commands. For the dispatcher to display useful information, you
  451. should provide a description for the prefix, like
  452. (setq org-agenda-custom-commands
  453. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  454. (\"hl\" tags \"+HOME+Lisa\")
  455. (\"hp\" tags \"+HOME+Peter\")
  456. (\"hk\" tags \"+HOME+Kim\")))"
  457. :group 'org-agenda-custom-commands
  458. :type `(repeat
  459. (choice :value ("x" "Describe command here" tags "" nil)
  460. (list :tag "Single command"
  461. (string :tag "Access Key(s) ")
  462. (option (string :tag "Description"))
  463. (choice
  464. (const :tag "Agenda" agenda)
  465. (const :tag "TODO list" alltodo)
  466. (const :tag "Search words" search)
  467. (const :tag "Stuck projects" stuck)
  468. (const :tag "Tags/Property match (all agenda files)" tags)
  469. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  470. (const :tag "TODO keyword search (all agenda files)" todo)
  471. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  472. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  473. (const :tag "Occur tree (current buffer)" occur-tree)
  474. (sexp :tag "Other, user-defined function"))
  475. (string :tag "Match (only for some commands)")
  476. ,org-agenda-custom-commands-local-options
  477. (option (repeat :tag "Export" (file :tag "Export to"))))
  478. (list :tag "Command series, all agenda files"
  479. (string :tag "Access Key(s)")
  480. (string :tag "Description ")
  481. (repeat :tag "Component"
  482. (choice
  483. (list :tag "Agenda"
  484. (const :format "" agenda)
  485. (const :tag "" :format "" "")
  486. ,org-agenda-custom-commands-local-options)
  487. (list :tag "TODO list (all keywords)"
  488. (const :format "" alltodo)
  489. (const :tag "" :format "" "")
  490. ,org-agenda-custom-commands-local-options)
  491. (list :tag "Search words"
  492. (const :format "" search)
  493. (string :tag "Match")
  494. ,org-agenda-custom-commands-local-options)
  495. (list :tag "Stuck projects"
  496. (const :format "" stuck)
  497. (const :tag "" :format "" "")
  498. ,org-agenda-custom-commands-local-options)
  499. (list :tag "Tags search"
  500. (const :format "" tags)
  501. (string :tag "Match")
  502. ,org-agenda-custom-commands-local-options)
  503. (list :tag "Tags search, TODO entries only"
  504. (const :format "" tags-todo)
  505. (string :tag "Match")
  506. ,org-agenda-custom-commands-local-options)
  507. (list :tag "TODO keyword search"
  508. (const :format "" todo)
  509. (string :tag "Match")
  510. ,org-agenda-custom-commands-local-options)
  511. (list :tag "Other, user-defined function"
  512. (symbol :tag "function")
  513. (string :tag "Match")
  514. ,org-agenda-custom-commands-local-options)))
  515. (repeat :tag "Settings for entire command set"
  516. (list (variable :tag "Any variable")
  517. (sexp :tag "Value")))
  518. (option (repeat :tag "Export" (file :tag "Export to"))))
  519. (cons :tag "Prefix key documentation"
  520. (string :tag "Access Key(s)")
  521. (string :tag "Description ")))))
  522. (defcustom org-agenda-query-register ?o
  523. "The register holding the current query string.
  524. The purpose of this is that if you construct a query string interactively,
  525. you can then use it to define a custom command."
  526. :group 'org-agenda-custom-commands
  527. :type 'character)
  528. (defcustom org-stuck-projects
  529. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  530. "How to identify stuck projects.
  531. This is a list of four items:
  532. 1. A tags/todo/property matcher string that is used to identify a project.
  533. See the manual for a description of tag and property searches.
  534. The entire tree below a headline matched by this is considered one project.
  535. 2. A list of TODO keywords identifying non-stuck projects.
  536. If the project subtree contains any headline with one of these todo
  537. keywords, the project is considered to be not stuck. If you specify
  538. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  539. 3. A list of tags identifying non-stuck projects.
  540. If the project subtree contains any headline with one of these tags,
  541. the project is considered to be not stuck. If you specify \"*\" as
  542. a tag, any tag will mark the project unstuck. Note that this is about
  543. the explicit presence of a tag somewhere in the subtree, inherited
  544. tags do not count here. If inherited tags make a project not stuck,
  545. use \"-TAG\" in the tags part of the matcher under (1.) above.
  546. 4. An arbitrary regular expression matching non-stuck projects.
  547. If the project turns out to be not stuck, search continues also in the
  548. subtree to see if any of the subtasks have project status.
  549. See also the variable `org-tags-match-list-sublevels' which applies
  550. to projects matched by this search as well.
  551. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  552. or `C-c a #' to produce the list."
  553. :group 'org-agenda-custom-commands
  554. :type '(list
  555. (string :tag "Tags/TODO match to identify a project")
  556. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  557. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  558. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  559. (defgroup org-agenda-skip nil
  560. "Options concerning skipping parts of agenda files."
  561. :tag "Org Agenda Skip"
  562. :group 'org-agenda)
  563. (defcustom org-agenda-skip-function-global nil
  564. "Function to be called at each match during agenda construction.
  565. If this function returns nil, the current match should not be skipped.
  566. If the function decided to skip an agenda match, is must return the
  567. buffer position from which the search should be continued.
  568. This may also be a Lisp form, which will be evaluated.
  569. This variable will be applied to every agenda match, including
  570. tags/property searches and TODO lists. So try to make the test function
  571. do its checking as efficiently as possible. To implement a skipping
  572. condition just for specific agenda commands, use the variable
  573. `org-agenda-skip-function' which can be set in the options section
  574. of custom agenda commands."
  575. :group 'org-agenda-skip
  576. :type 'sexp)
  577. (defgroup org-agenda-daily/weekly nil
  578. "Options concerning the daily/weekly agenda."
  579. :tag "Org Agenda Daily/Weekly"
  580. :group 'org-agenda)
  581. (defgroup org-agenda-todo-list nil
  582. "Options concerning the global todo list agenda view."
  583. :tag "Org Agenda Todo List"
  584. :group 'org-agenda)
  585. (defgroup org-agenda-match-view nil
  586. "Options concerning the general tags/property/todo match agenda view."
  587. :tag "Org Agenda Match View"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-search-view nil
  590. "Options concerning the search agenda view."
  591. :tag "Org Agenda Search View"
  592. :group 'org-agenda)
  593. (defvar org-agenda-archives-mode nil
  594. "Non-nil means the agenda will include archived items.
  595. If this is the symbol `trees', trees in the selected agenda scope
  596. that are marked with the ARCHIVE tag will be included anyway. When this is
  597. t, also all archive files associated with the current selection of agenda
  598. files will be included.")
  599. (defcustom org-agenda-restriction-lock-highlight-subtree t
  600. "Non-nil means highlight the whole subtree when restriction is active.
  601. Otherwise only highlight the headline. Highlighting the whole subtree is
  602. useful to ensure no edits happen beyond the restricted region."
  603. :group 'org-agenda
  604. :type 'boolean)
  605. (defcustom org-agenda-skip-comment-trees t
  606. "Non-nil means skip trees that start with the COMMENT keyword.
  607. When nil, these trees are also scanned by agenda commands."
  608. :group 'org-agenda-skip
  609. :type 'boolean)
  610. (defcustom org-agenda-todo-list-sublevels t
  611. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  612. When nil, the sublevels of a TODO entry are not checked, resulting in
  613. potentially much shorter TODO lists."
  614. :group 'org-agenda-skip
  615. :group 'org-agenda-todo-list
  616. :type 'boolean)
  617. (defcustom org-agenda-todo-ignore-with-date nil
  618. "Non-nil means don't show entries with a date in the global todo list.
  619. You can use this if you prefer to mark mere appointments with a TODO keyword,
  620. but don't want them to show up in the TODO list.
  621. When this is set, it also covers deadlines and scheduled items, the settings
  622. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  623. will be ignored.
  624. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  625. :group 'org-agenda-skip
  626. :group 'org-agenda-todo-list
  627. :type 'boolean)
  628. (defcustom org-agenda-todo-ignore-timestamp nil
  629. "Non-nil means don't show entries with a timestamp.
  630. This applies when creating the global todo list.
  631. Valid values are:
  632. past Don't show entries for today or in the past.
  633. future Don't show entries with a timestamp in the future.
  634. The idea behind this is that if it has a future
  635. timestamp, you don't want to think about it until the
  636. date.
  637. all Don't show any entries with a timestamp in the global todo list.
  638. The idea behind this is that by setting a timestamp, you
  639. have already \"taken care\" of this item.
  640. This variable can also have an integer as a value. If positive (N),
  641. todos with a timestamp N or more days in the future will be ignored. If
  642. negative (-N), todos with a timestamp N or more days in the past will be
  643. ignored. If 0, todos with a timestamp either today or in the future will
  644. be ignored. For example, a value of -1 will exclude todos with a
  645. timestamp in the past (yesterday or earlier), while a value of 7 will
  646. exclude todos with a timestamp a week or more in the future.
  647. See also `org-agenda-todo-ignore-with-date'.
  648. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  649. to make his option also apply to the tags-todo list."
  650. :group 'org-agenda-skip
  651. :group 'org-agenda-todo-list
  652. :version "24.1"
  653. :type '(choice
  654. (const :tag "Ignore future timestamp todos" future)
  655. (const :tag "Ignore past or present timestamp todos" past)
  656. (const :tag "Ignore all timestamp todos" all)
  657. (const :tag "Show timestamp todos" nil)
  658. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  659. (defcustom org-agenda-todo-ignore-scheduled nil
  660. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  661. This applies when creating the global todo list.
  662. Valid values are:
  663. past Don't show entries scheduled today or in the past.
  664. future Don't show entries scheduled in the future.
  665. The idea behind this is that by scheduling it, you don't want to
  666. think about it until the scheduled date.
  667. all Don't show any scheduled entries in the global todo list.
  668. The idea behind this is that by scheduling it, you have already
  669. \"taken care\" of this item.
  670. t Same as `all', for backward compatibility.
  671. This variable can also have an integer as a value. See
  672. `org-agenda-todo-ignore-timestamp' for more details.
  673. See also `org-agenda-todo-ignore-with-date'.
  674. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  675. to make his option also apply to the tags-todo list."
  676. :group 'org-agenda-skip
  677. :group 'org-agenda-todo-list
  678. :type '(choice
  679. (const :tag "Ignore future-scheduled todos" future)
  680. (const :tag "Ignore past- or present-scheduled todos" past)
  681. (const :tag "Ignore all scheduled todos" all)
  682. (const :tag "Ignore all scheduled todos (compatibility)" t)
  683. (const :tag "Show scheduled todos" nil)
  684. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  685. (defcustom org-agenda-todo-ignore-deadlines nil
  686. "Non-nil means ignore some deadline TODO items when making TODO list.
  687. There are different motivations for using different values, please think
  688. carefully when configuring this variable.
  689. This applies when creating the global todo list.
  690. Valid values are:
  691. near Don't show near deadline entries. A deadline is near when it is
  692. closer than `org-deadline-warning-days' days. The idea behind this
  693. is that such items will appear in the agenda anyway.
  694. far Don't show TODO entries where a deadline has been defined, but
  695. the deadline is not near. This is useful if you don't want to
  696. use the todo list to figure out what to do now.
  697. past Don't show entries with a deadline timestamp for today or in the past.
  698. future Don't show entries with a deadline timestamp in the future, not even
  699. when they become `near' ones. Use it with caution.
  700. all Ignore all TODO entries that do have a deadline.
  701. t Same as `near', for backward compatibility.
  702. This variable can also have an integer as a value. See
  703. `org-agenda-todo-ignore-timestamp' for more details.
  704. See also `org-agenda-todo-ignore-with-date'.
  705. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  706. to make his option also apply to the tags-todo list."
  707. :group 'org-agenda-skip
  708. :group 'org-agenda-todo-list
  709. :type '(choice
  710. (const :tag "Ignore near deadlines" near)
  711. (const :tag "Ignore near deadlines (compatibility)" t)
  712. (const :tag "Ignore far deadlines" far)
  713. (const :tag "Ignore all TODOs with a deadlines" all)
  714. (const :tag "Show all TODOs, even if they have a deadline" nil)
  715. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  716. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  717. "Time unit to use when possibly ignoring an agenda item.
  718. See the docstring of various `org-agenda-todo-ignore-*' options.
  719. The default is to compare time stamps using days. An item is thus
  720. considered to be in the future if it is at least one day after today.
  721. Non-nil means to compare time stamps using seconds. An item is then
  722. considered future if it has a time value later than current time."
  723. :group 'org-agenda-skip
  724. :group 'org-agenda-todo-list
  725. :version "24.4"
  726. :package-version '(Org . "8.0")
  727. :type '(choice
  728. (const :tag "Compare time with days" nil)
  729. (const :tag "Compare time with seconds" t)))
  730. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  731. "Non-nil means honor todo-list ignores options also in tags-todo search.
  732. The variables
  733. `org-agenda-todo-ignore-with-date',
  734. `org-agenda-todo-ignore-timestamp',
  735. `org-agenda-todo-ignore-scheduled',
  736. `org-agenda-todo-ignore-deadlines'
  737. make the global TODO list skip entries that have time stamps of certain
  738. kinds. If this option is set, the same options will also apply for the
  739. tags-todo search, which is the general tags/property matcher
  740. restricted to unfinished TODO entries only."
  741. :group 'org-agenda-skip
  742. :group 'org-agenda-todo-list
  743. :group 'org-agenda-match-view
  744. :type 'boolean)
  745. (defcustom org-agenda-skip-scheduled-if-done nil
  746. "Non-nil means don't show scheduled items in agenda when they are done.
  747. This is relevant for the daily/weekly agenda, not for the TODO list. And
  748. it applies only to the actual date of the scheduling. Warnings about
  749. an item with a past scheduling dates are always turned off when the item
  750. is DONE."
  751. :group 'org-agenda-skip
  752. :group 'org-agenda-daily/weekly
  753. :type 'boolean)
  754. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  755. "Non-nil means skip scheduling line if same entry shows because of deadline.
  756. In the agenda of today, an entry can show up multiple times
  757. because it is both scheduled and has a nearby deadline, and maybe
  758. a plain time stamp as well.
  759. When this variable is nil, the entry will be shown several times.
  760. When set to t, then only the deadline is shown and the fact that
  761. the entry is scheduled today or was scheduled previously is not
  762. shown.
  763. When set to the symbol `not-today', skip scheduled previously,
  764. but not scheduled today.
  765. When set to the symbol `repeated-after-deadline', skip scheduled
  766. items if they are repeated beyond the current deadline."
  767. :group 'org-agenda-skip
  768. :group 'org-agenda-daily/weekly
  769. :type '(choice
  770. (const :tag "Never" nil)
  771. (const :tag "Always" t)
  772. (const :tag "Not when scheduled today" not-today)
  773. (const :tag "When repeated past deadline" repeated-after-deadline)))
  774. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  775. "Non-nil means skip timestamp line if same entry shows because of deadline.
  776. In the agenda of today, an entry can show up multiple times
  777. because it has both a plain timestamp and has a nearby deadline.
  778. When this variable is t, then only the deadline is shown and the
  779. fact that the entry has a timestamp for or including today is not
  780. shown. When this variable is nil, the entry will be shown
  781. several times."
  782. :group 'org-agenda-skip
  783. :group 'org-agenda-daily/weekly
  784. :version "24.1"
  785. :type '(choice
  786. (const :tag "Never" nil)
  787. (const :tag "Always" t)))
  788. (defcustom org-agenda-skip-deadline-if-done nil
  789. "Non-nil means don't show deadlines when the corresponding item is done.
  790. When nil, the deadline is still shown and should give you a happy feeling.
  791. This is relevant for the daily/weekly agenda. And it applied only to the
  792. actually date of the deadline. Warnings about approaching and past-due
  793. deadlines are always turned off when the item is DONE."
  794. :group 'org-agenda-skip
  795. :group 'org-agenda-daily/weekly
  796. :type 'boolean)
  797. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  798. "Non-nil means skip deadline prewarning when entry is also scheduled.
  799. This will apply on all days where a prewarning for the deadline would
  800. be shown, but not at the day when the entry is actually due. On that day,
  801. the deadline will be shown anyway.
  802. This variable may be set to nil, t, the symbol `pre-scheduled',
  803. or a number which will then give the number of days before the actual
  804. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  805. eliminates the deadline prewarning only prior to the scheduled date.
  806. This can be used in a workflow where the first showing of the deadline will
  807. trigger you to schedule it, and then you don't want to be reminded of it
  808. because you will take care of it on the day when scheduled."
  809. :group 'org-agenda-skip
  810. :group 'org-agenda-daily/weekly
  811. :version "24.1"
  812. :type '(choice
  813. (const :tag "Always show prewarning" nil)
  814. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  815. (const :tag "Remove prewarning if entry is scheduled" t)
  816. (integer :tag "Restart prewarning N days before deadline")))
  817. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  818. "Non-nil means skip scheduled delay when entry also has a deadline.
  819. This variable may be set to nil, t, the symbol `post-deadline',
  820. or a number which will then give the number of days after the actual
  821. scheduled date when the delay should expire. The symbol `post-deadline'
  822. eliminates the schedule delay when the date is posterior to the deadline."
  823. :group 'org-agenda-skip
  824. :group 'org-agenda-daily/weekly
  825. :version "24.4"
  826. :package-version '(Org . "8.0")
  827. :type '(choice
  828. (const :tag "Always honor delay" nil)
  829. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  830. (const :tag "Ignore delay if entry has a deadline" t)
  831. (integer :tag "Honor delay up until N days after the scheduled date")))
  832. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  833. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  834. When non-nil, after the search for timestamps has matched once in an
  835. entry, the rest of the entry will not be searched."
  836. :group 'org-agenda-skip
  837. :type 'boolean)
  838. (defcustom org-agenda-skip-timestamp-if-done nil
  839. "Non-nil means don't select item by timestamp or -range if it is DONE."
  840. :group 'org-agenda-skip
  841. :group 'org-agenda-daily/weekly
  842. :type 'boolean)
  843. (defcustom org-agenda-dim-blocked-tasks t
  844. "Non-nil means dim blocked tasks in the agenda display.
  845. This causes some overhead during agenda construction, but if you
  846. have turned on `org-enforce-todo-dependencies',
  847. `org-enforce-todo-checkbox-dependencies', or any other blocking
  848. mechanism, this will create useful feedback in the agenda.
  849. Instead of t, this variable can also have the value `invisible'.
  850. Then blocked tasks will be invisible and only become visible when
  851. they become unblocked. An exemption to this behavior is when a task is
  852. blocked because of unchecked checkboxes below it. Since checkboxes do
  853. not show up in the agenda views, making this task invisible you remove any
  854. trace from agenda views that there is something to do. Therefore, a task
  855. that is blocked because of checkboxes will never be made invisible, it
  856. will only be dimmed."
  857. :group 'org-agenda-daily/weekly
  858. :group 'org-agenda-todo-list
  859. :version "24.3"
  860. :type '(choice
  861. (const :tag "Do not dim" nil)
  862. (const :tag "Dim to a gray face" t)
  863. (const :tag "Make invisible" invisible)))
  864. (defcustom org-timeline-show-empty-dates 3
  865. "Non-nil means `org-timeline' also shows dates without an entry.
  866. When nil, only the days which actually have entries are shown.
  867. When t, all days between the first and the last date are shown.
  868. When an integer, show also empty dates, but if there is a gap of more than
  869. N days, just insert a special line indicating the size of the gap."
  870. :group 'org-agenda-skip
  871. :type '(choice
  872. (const :tag "None" nil)
  873. (const :tag "All" t)
  874. (integer :tag "at most")))
  875. (defgroup org-agenda-startup nil
  876. "Options concerning initial settings in the Agenda in Org Mode."
  877. :tag "Org Agenda Startup"
  878. :group 'org-agenda)
  879. (defcustom org-agenda-menu-show-matcher t
  880. "Non-nil means show the match string in the agenda dispatcher menu.
  881. When nil, the matcher string is not shown, but is put into the help-echo
  882. property so than moving the mouse over the command shows it.
  883. Setting it to nil is good if matcher strings are very long and/or if
  884. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  885. :group 'org-agenda
  886. :version "24.1"
  887. :type 'boolean)
  888. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  889. (defcustom org-agenda-menu-two-columns nil
  890. "Non-nil means, use two columns to show custom commands in the dispatcher.
  891. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  892. to nil."
  893. :group 'org-agenda
  894. :version "24.1"
  895. :type 'boolean)
  896. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  897. (defcustom org-agenda-finalize-hook nil
  898. "Hook run just before displaying an agenda buffer.
  899. The buffer is still writable when the hook is called.
  900. You can modify some of the buffer substrings but you should be
  901. extra careful not to modify the text properties of the agenda
  902. headlines as the agenda display heavily relies on them."
  903. :group 'org-agenda-startup
  904. :type 'hook)
  905. (defcustom org-agenda-mouse-1-follows-link nil
  906. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  907. A longer mouse click will still set point. Does not work on XEmacs.
  908. Needs to be set before org.el is loaded."
  909. :group 'org-agenda-startup
  910. :type 'boolean)
  911. (defcustom org-agenda-start-with-follow-mode nil
  912. "The initial value of follow mode in a newly created agenda window."
  913. :group 'org-agenda-startup
  914. :type 'boolean)
  915. (defcustom org-agenda-follow-indirect nil
  916. "Non-nil means `org-agenda-follow-mode' displays only the
  917. current item's tree, in an indirect buffer."
  918. :group 'org-agenda
  919. :version "24.1"
  920. :type 'boolean)
  921. (defcustom org-agenda-show-outline-path t
  922. "Non-nil means show outline path in echo area after line motion."
  923. :group 'org-agenda-startup
  924. :type 'boolean)
  925. (defcustom org-agenda-start-with-entry-text-mode nil
  926. "The initial value of entry-text-mode in a newly created agenda window."
  927. :group 'org-agenda-startup
  928. :type 'boolean)
  929. (defcustom org-agenda-entry-text-maxlines 5
  930. "Number of text lines to be added when `E' is pressed in the agenda.
  931. Note that this variable only used during agenda display. Add add entry text
  932. when exporting the agenda, configure the variable
  933. `org-agenda-add-entry-ext-maxlines'."
  934. :group 'org-agenda
  935. :type 'integer)
  936. (defcustom org-agenda-entry-text-exclude-regexps nil
  937. "List of regular expressions to clean up entry text.
  938. The complete matches of all regular expressions in this list will be
  939. removed from entry text before it is shown in the agenda."
  940. :group 'org-agenda
  941. :type '(repeat (regexp)))
  942. (defcustom org-agenda-entry-text-leaders " > "
  943. "Text prepended to the entry text in agenda buffers."
  944. :version "24.4"
  945. :package-version '(Org . "8.0")
  946. :group 'org-agenda
  947. :type 'string)
  948. (defvar org-agenda-entry-text-cleanup-hook nil
  949. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  950. This cleanup is done in a temporary buffer, so the function may inspect and
  951. change the entire buffer.
  952. Some default stuff like drawers and scheduling/deadline dates will already
  953. have been removed when this is called, as will any matches for regular
  954. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  955. (defvar org-agenda-include-inactive-timestamps nil
  956. "Non-nil means include inactive time stamps in agenda and timeline.
  957. Dynamically scoped.")
  958. (defgroup org-agenda-windows nil
  959. "Options concerning the windows used by the Agenda in Org Mode."
  960. :tag "Org Agenda Windows"
  961. :group 'org-agenda)
  962. (defcustom org-agenda-window-setup 'reorganize-frame
  963. "How the agenda buffer should be displayed.
  964. Possible values for this option are:
  965. current-window Show agenda in the current window, keeping all other windows.
  966. other-window Use `switch-to-buffer-other-window' to display agenda.
  967. only-window Show agenda, deleting all other windows.
  968. reorganize-frame Show only two windows on the current frame, the current
  969. window and the agenda.
  970. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  971. Also, when exiting the agenda, kill that frame.
  972. See also the variable `org-agenda-restore-windows-after-quit'."
  973. :group 'org-agenda-windows
  974. :type '(choice
  975. (const current-window)
  976. (const other-frame)
  977. (const other-window)
  978. (const only-window)
  979. (const reorganize-frame)))
  980. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  981. "The min and max height of the agenda window as a fraction of frame height.
  982. The value of the variable is a cons cell with two numbers between 0 and 1.
  983. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  984. :group 'org-agenda-windows
  985. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  986. (defcustom org-agenda-restore-windows-after-quit nil
  987. "Non-nil means restore window configuration upon exiting agenda.
  988. Before the window configuration is changed for displaying the agenda,
  989. the current status is recorded. When the agenda is exited with
  990. `q' or `x' and this option is set, the old state is restored. If
  991. `org-agenda-window-setup' is `other-frame', the value of this
  992. option will be ignored."
  993. :group 'org-agenda-windows
  994. :type 'boolean)
  995. (defcustom org-agenda-ndays nil
  996. "Number of days to include in overview display.
  997. Should be 1 or 7.
  998. Obsolete, see `org-agenda-span'."
  999. :group 'org-agenda-daily/weekly
  1000. :type '(choice (const nil)
  1001. (integer)))
  1002. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  1003. (defcustom org-agenda-span 'week
  1004. "Number of days to include in overview display.
  1005. Can be day, week, month, year, or any number of days.
  1006. Custom commands can set this variable in the options section."
  1007. :group 'org-agenda-daily/weekly
  1008. :type '(choice (const :tag "Day" day)
  1009. (const :tag "Week" week)
  1010. (const :tag "Fortnight" fortnight)
  1011. (const :tag "Month" month)
  1012. (const :tag "Year" year)
  1013. (integer :tag "Custom")))
  1014. (defcustom org-agenda-start-on-weekday 1
  1015. "Non-nil means start the overview always on the specified weekday.
  1016. 0 denotes Sunday, 1 denotes Monday, etc.
  1017. When nil, always start on the current day.
  1018. Custom commands can set this variable in the options section."
  1019. :group 'org-agenda-daily/weekly
  1020. :type '(choice (const :tag "Today" nil)
  1021. (integer :tag "Weekday No.")))
  1022. (defcustom org-agenda-show-all-dates t
  1023. "Non-nil means `org-agenda' shows every day in the selected range.
  1024. When nil, only the days which actually have entries are shown."
  1025. :group 'org-agenda-daily/weekly
  1026. :type 'boolean)
  1027. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1028. "Format string for displaying dates in the agenda.
  1029. Used by the daily/weekly agenda and by the timeline. This should be
  1030. a format string understood by `format-time-string', or a function returning
  1031. the formatted date as a string. The function must take a single argument,
  1032. a calendar-style date list like (month day year)."
  1033. :group 'org-agenda-daily/weekly
  1034. :type '(choice
  1035. (string :tag "Format string")
  1036. (function :tag "Function")))
  1037. (defun org-agenda-format-date-aligned (date)
  1038. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1039. This function makes sure that dates are aligned for easy reading."
  1040. (require 'cal-iso)
  1041. (let* ((dayname (calendar-day-name date))
  1042. (day (cadr date))
  1043. (day-of-week (calendar-day-of-week date))
  1044. (month (car date))
  1045. (monthname (calendar-month-name month))
  1046. (year (nth 2 date))
  1047. (iso-week (org-days-to-iso-week
  1048. (calendar-absolute-from-gregorian date)))
  1049. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1050. (1- year))
  1051. ((and (= month 12) (<= iso-week 1))
  1052. (1+ year))
  1053. (t year)))
  1054. (weekstring (if (= day-of-week 1)
  1055. (format " W%02d" iso-week)
  1056. "")))
  1057. (format "%-10s %2d %s %4d%s"
  1058. dayname day monthname year weekstring)))
  1059. (defcustom org-agenda-time-leading-zero nil
  1060. "Non-nil means use leading zero for military times in agenda.
  1061. For example, 9:30am would become 09:30 rather than 9:30."
  1062. :group 'org-agenda-daily/weekly
  1063. :version "24.1"
  1064. :type 'boolean)
  1065. (defcustom org-agenda-timegrid-use-ampm nil
  1066. "When set, show AM/PM style timestamps on the timegrid."
  1067. :group 'org-agenda
  1068. :version "24.1"
  1069. :type 'boolean)
  1070. (defun org-agenda-time-of-day-to-ampm (time)
  1071. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  1072. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1073. (minute (substring time -2))
  1074. (ampm "am"))
  1075. (cond
  1076. ((equal hour-number 12)
  1077. (setq ampm "pm"))
  1078. ((> hour-number 12)
  1079. (setq ampm "pm")
  1080. (setq hour-number (- hour-number 12))))
  1081. (concat
  1082. (if org-agenda-time-leading-zero
  1083. (format "%02d" hour-number)
  1084. (format "%02s" (number-to-string hour-number)))
  1085. ":" minute ampm)))
  1086. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1087. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1088. (if org-agenda-timegrid-use-ampm
  1089. (org-agenda-time-of-day-to-ampm time)
  1090. time))
  1091. (defcustom org-agenda-weekend-days '(6 0)
  1092. "Which days are weekend?
  1093. These days get the special face `org-agenda-date-weekend' in the agenda
  1094. and timeline buffers."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. WHen nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-include-diary nil
  1114. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1115. Custom commands can set this variable in the options section."
  1116. :group 'org-agenda-daily/weekly
  1117. :type 'boolean)
  1118. (defcustom org-agenda-include-deadlines t
  1119. "If non-nil, include entries within their deadline warning period.
  1120. Custom commands can set this variable in the options section."
  1121. :group 'org-agenda-daily/weekly
  1122. :version "24.1"
  1123. :type 'boolean)
  1124. (defcustom org-agenda-repeating-timestamp-show-all t
  1125. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1126. When set to a list of strings, only show occurrences of repeating
  1127. stamps for these TODO keywords. When nil, only one occurrence is
  1128. shown, either today or the nearest into the future."
  1129. :group 'org-agenda-daily/weekly
  1130. :type '(choice
  1131. (const :tag "Show repeating stamps" t)
  1132. (repeat :tag "Show repeating stamps for these TODO keywords"
  1133. (string :tag "TODO Keyword"))
  1134. (const :tag "Don't show repeating stamps" nil)))
  1135. (defcustom org-scheduled-past-days 10000
  1136. "Number of days to continue listing scheduled items not marked DONE.
  1137. When an item is scheduled on a date, it shows up in the agenda on this
  1138. day and will be listed until it is marked done for the number of days
  1139. given here."
  1140. :group 'org-agenda-daily/weekly
  1141. :type 'integer)
  1142. (defcustom org-agenda-log-mode-items '(closed clock)
  1143. "List of items that should be shown in agenda log mode.
  1144. This list may contain the following symbols:
  1145. closed Show entries that have been closed on that day.
  1146. clock Show entries that have received clocked time on that day.
  1147. state Show all logged state changes.
  1148. Note that instead of changing this variable, you can also press `C-u l' in
  1149. the agenda to display all available LOG items temporarily."
  1150. :group 'org-agenda-daily/weekly
  1151. :type '(set :greedy t (const closed) (const clock) (const state)))
  1152. (defcustom org-agenda-clock-consistency-checks
  1153. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1154. :gap-ok-around ("4:00")
  1155. :default-face ((:background "DarkRed") (:foreground "white"))
  1156. :overlap-face nil :gap-face nil :no-end-time-face nil
  1157. :long-face nil :short-face nil)
  1158. "This is a property list, with the following keys:
  1159. :max-duration Mark clocking chunks that are longer than this time.
  1160. This is a time string like \"HH:MM\", or the number
  1161. of minutes as an integer.
  1162. :min-duration Mark clocking chunks that are shorter that this.
  1163. This is a time string like \"HH:MM\", or the number
  1164. of minutes as an integer.
  1165. :max-gap Mark gaps between clocking chunks that are longer than
  1166. this duration. A number of minutes, or a string
  1167. like \"HH:MM\".
  1168. :gap-ok-around List of times during the day which are usually not working
  1169. times. When a gap is detected, but the gap contains any
  1170. of these times, the gap is *not* reported. For example,
  1171. if this is (\"4:00\" \"13:00\") then gaps that contain
  1172. 4:00 in the morning (i.e. the night) and 13:00
  1173. (i.e. a typical lunch time) do not cause a warning.
  1174. You should have at least one time during the night in this
  1175. list, or otherwise the first task each morning will trigger
  1176. a warning because it follows a long gap.
  1177. Furthermore, the following properties can be used to define faces for
  1178. issue display.
  1179. :default-face the default face, if the specific face is undefined
  1180. :overlap-face face for overlapping clocks
  1181. :gap-face face for gaps between clocks
  1182. :no-end-time-face face for incomplete clocks
  1183. :long-face face for clock intervals that are too long
  1184. :short-face face for clock intervals that are too short"
  1185. :group 'org-agenda-daily/weekly
  1186. :group 'org-clock
  1187. :version "24.1"
  1188. :type 'plist)
  1189. (defcustom org-agenda-log-mode-add-notes t
  1190. "Non-nil means add first line of notes to log entries in agenda views.
  1191. If a log item like a state change or a clock entry is associated with
  1192. notes, the first line of these notes will be added to the entry in the
  1193. agenda display."
  1194. :group 'org-agenda-daily/weekly
  1195. :type 'boolean)
  1196. (defcustom org-agenda-start-with-log-mode nil
  1197. "The initial value of log-mode in a newly created agenda window.
  1198. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1199. explanations on the possible values."
  1200. :group 'org-agenda-startup
  1201. :group 'org-agenda-daily/weekly
  1202. :type '(choice (const :tag "Don't show log items" nil)
  1203. (const :tag "Show only log items" only)
  1204. (const :tag "Show all possible log items" clockcheck)
  1205. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1206. (choice (const :tag "Show closed log items" closed)
  1207. (const :tag "Show clocked log items" clock)
  1208. (const :tag "Show all logged state changes" state)))))
  1209. (defcustom org-agenda-start-with-clockreport-mode nil
  1210. "The initial value of clockreport-mode in a newly created agenda window."
  1211. :group 'org-agenda-startup
  1212. :group 'org-agenda-daily/weekly
  1213. :type 'boolean)
  1214. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1215. "Property list with parameters for the clocktable in clockreport mode.
  1216. This is the display mode that shows a clock table in the daily/weekly
  1217. agenda, the properties for this dynamic block can be set here.
  1218. The usual clocktable parameters are allowed here, but you cannot set
  1219. the properties :name, :tstart, :tend, :block, and :scope - these will
  1220. be overwritten to make sure the content accurately reflects the
  1221. current display in the agenda."
  1222. :group 'org-agenda-daily/weekly
  1223. :type 'plist)
  1224. (defcustom org-agenda-search-view-always-boolean nil
  1225. "Non-nil means the search string is interpreted as individual parts.
  1226. The search string for search view can either be interpreted as a phrase,
  1227. or as a list of snippets that define a boolean search for a number of
  1228. strings.
  1229. When this is non-nil, the string will be split on whitespace, and each
  1230. snippet will be searched individually, and all must match in order to
  1231. select an entry. A snippet is then a single string of non-white
  1232. characters, or a string in double quotes, or a regexp in {} braces.
  1233. If a snippet is preceded by \"-\", the snippet must *not* match.
  1234. \"+\" is syntactic sugar for positive selection. Each snippet may
  1235. be found as a full word or a partial word, but see the variable
  1236. `org-agenda-search-view-force-full-words'.
  1237. When this is nil, search will look for the entire search phrase as one,
  1238. with each space character matching any amount of whitespace, including
  1239. line breaks.
  1240. Even when this is nil, you can still switch to Boolean search dynamically
  1241. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1242. is a regexp marked with braces like \"{abc}\", this will also switch to
  1243. boolean search."
  1244. :group 'org-agenda-search-view
  1245. :version "24.1"
  1246. :type 'boolean)
  1247. (org-defvaralias 'org-agenda-search-view-search-words-only
  1248. 'org-agenda-search-view-always-boolean)
  1249. (defcustom org-agenda-search-view-force-full-words nil
  1250. "Non-nil means, search words must be matches as complete words.
  1251. When nil, they may also match part of a word."
  1252. :group 'org-agenda-search-view
  1253. :version "24.1"
  1254. :type 'boolean)
  1255. (defcustom org-agenda-search-view-max-outline-level 0
  1256. "Maximum outline level to display in search view.
  1257. E.g. when this is set to 1, the search view will only
  1258. show headlines of level 1. When set to 0, the default
  1259. value, don't limit agenda view by outline level."
  1260. :group 'org-agenda-search-view
  1261. :version "24.4"
  1262. :package-version '(Org . "8.3")
  1263. :type 'integer)
  1264. (defgroup org-agenda-time-grid nil
  1265. "Options concerning the time grid in the Org-mode Agenda."
  1266. :tag "Org Agenda Time Grid"
  1267. :group 'org-agenda)
  1268. (defcustom org-agenda-search-headline-for-time t
  1269. "Non-nil means search headline for a time-of-day.
  1270. If the headline contains a time-of-day in one format or another, it will
  1271. be used to sort the entry into the time sequence of items for a day.
  1272. Some people have time stamps in the headline that refer to the creation
  1273. time or so, and then this produces an unwanted side effect. If this is
  1274. the case for your, use this variable to turn off searching the headline
  1275. for a time."
  1276. :group 'org-agenda-time-grid
  1277. :type 'boolean)
  1278. (defcustom org-agenda-use-time-grid t
  1279. "Non-nil means show a time grid in the agenda schedule.
  1280. A time grid is a set of lines for specific times (like every two hours between
  1281. 8:00 and 20:00). The items scheduled for a day at specific times are
  1282. sorted in between these lines.
  1283. For details about when the grid will be shown, and what it will look like, see
  1284. the variable `org-agenda-time-grid'."
  1285. :group 'org-agenda-time-grid
  1286. :type 'boolean)
  1287. (defcustom org-agenda-time-grid
  1288. '((daily today require-timed)
  1289. "----------------"
  1290. (800 1000 1200 1400 1600 1800 2000))
  1291. "The settings for time grid for agenda display.
  1292. This is a list of three items. The first item is again a list. It contains
  1293. symbols specifying conditions when the grid should be displayed:
  1294. daily if the agenda shows a single day
  1295. weekly if the agenda shows an entire week
  1296. today show grid on current date, independent of daily/weekly display
  1297. require-timed show grid only if at least one item has a time specification
  1298. remove-match skip grid times already present in an entry
  1299. The second item is a string which will be placed behind the grid time.
  1300. The third item is a list of integers, indicating the times that should have
  1301. a grid line."
  1302. :group 'org-agenda-time-grid
  1303. :type
  1304. '(list
  1305. (set :greedy t :tag "Grid Display Options"
  1306. (const :tag "Show grid in single day agenda display" daily)
  1307. (const :tag "Show grid in weekly agenda display" weekly)
  1308. (const :tag "Always show grid for today" today)
  1309. (const :tag "Show grid only if any timed entries are present"
  1310. require-timed)
  1311. (const :tag "Skip grid times already present in an entry"
  1312. remove-match))
  1313. (string :tag "Grid String")
  1314. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1315. (defcustom org-agenda-show-current-time-in-grid t
  1316. "Non-nil means show the current time in the time grid."
  1317. :group 'org-agenda-time-grid
  1318. :version "24.1"
  1319. :type 'boolean)
  1320. (defcustom org-agenda-current-time-string
  1321. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1322. "The string for the current time marker in the agenda."
  1323. :group 'org-agenda-time-grid
  1324. :version "24.1"
  1325. :type 'string)
  1326. (defgroup org-agenda-sorting nil
  1327. "Options concerning sorting in the Org-mode Agenda."
  1328. :tag "Org Agenda Sorting"
  1329. :group 'org-agenda)
  1330. (defcustom org-agenda-sorting-strategy
  1331. '((agenda habit-down time-up priority-down category-keep)
  1332. (todo priority-down category-keep)
  1333. (tags priority-down category-keep)
  1334. (search category-keep))
  1335. "Sorting structure for the agenda items of a single day.
  1336. This is a list of symbols which will be used in sequence to determine
  1337. if an entry should be listed before another entry. The following
  1338. symbols are recognized:
  1339. time-up Put entries with time-of-day indications first, early first
  1340. time-down Put entries with time-of-day indications first, late first
  1341. timestamp-up Sort by any timestamp, early first
  1342. timestamp-down Sort by any timestamp, late first
  1343. scheduled-up Sort by scheduled timestamp, early first
  1344. scheduled-down Sort by scheduled timestamp, late first
  1345. deadline-up Sort by deadline timestamp, early first
  1346. deadline-down Sort by deadline timestamp, late first
  1347. ts-up Sort by active timestamp, early first
  1348. ts-down Sort by active timestamp, late first
  1349. tsia-up Sort by inactive timestamp, early first
  1350. tsia-down Sort by inactive timestamp, late first
  1351. category-keep Keep the default order of categories, corresponding to the
  1352. sequence in `org-agenda-files'.
  1353. category-up Sort alphabetically by category, A-Z.
  1354. category-down Sort alphabetically by category, Z-A.
  1355. tag-up Sort alphabetically by last tag, A-Z.
  1356. tag-down Sort alphabetically by last tag, Z-A.
  1357. priority-up Sort numerically by priority, high priority last.
  1358. priority-down Sort numerically by priority, high priority first.
  1359. todo-state-up Sort by todo state, tasks that are done last.
  1360. todo-state-down Sort by todo state, tasks that are done first.
  1361. effort-up Sort numerically by estimated effort, high effort last.
  1362. effort-down Sort numerically by estimated effort, high effort first.
  1363. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1364. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1365. habit-up Put entries that are habits first
  1366. habit-down Put entries that are habits last
  1367. alpha-up Sort headlines alphabetically
  1368. alpha-down Sort headlines alphabetically, reversed
  1369. The different possibilities will be tried in sequence, and testing stops
  1370. if one comparison returns a \"not-equal\". For example, the default
  1371. '(time-up category-keep priority-down)
  1372. means: Pull out all entries having a specified time of day and sort them,
  1373. in order to make a time schedule for the current day the first thing in the
  1374. agenda listing for the day. Of the entries without a time indication, keep
  1375. the grouped in categories, don't sort the categories, but keep them in
  1376. the sequence given in `org-agenda-files'. Within each category sort by
  1377. priority.
  1378. Leaving out `category-keep' would mean that items will be sorted across
  1379. categories by priority.
  1380. Instead of a single list, this can also be a set of list for specific
  1381. contents, with a context symbol in the car of the list, any of
  1382. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1383. Custom commands can bind this variable in the options section."
  1384. :group 'org-agenda-sorting
  1385. :type `(choice
  1386. (repeat :tag "General" ,org-sorting-choice)
  1387. (list :tag "Individually"
  1388. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1389. (repeat ,org-sorting-choice))
  1390. (cons (const :tag "Strategy for TODO lists" todo)
  1391. (repeat ,org-sorting-choice))
  1392. (cons (const :tag "Strategy for Tags matches" tags)
  1393. (repeat ,org-sorting-choice))
  1394. (cons (const :tag "Strategy for search matches" search)
  1395. (repeat ,org-sorting-choice)))))
  1396. (defcustom org-agenda-cmp-user-defined nil
  1397. "A function to define the comparison `user-defined'.
  1398. This function must receive two arguments, agenda entry a and b.
  1399. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1400. the user comparison, return nil.
  1401. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1402. part of an agenda sorting strategy."
  1403. :group 'org-agenda-sorting
  1404. :type 'symbol)
  1405. (defcustom org-sort-agenda-notime-is-late t
  1406. "Non-nil means items without time are considered late.
  1407. This is only relevant for sorting. When t, items which have no explicit
  1408. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1409. do have a time. When nil, the default time is before 0:00. You can use this
  1410. option to decide if the schedule for today should come before or after timeless
  1411. agenda entries."
  1412. :group 'org-agenda-sorting
  1413. :type 'boolean)
  1414. (defcustom org-sort-agenda-noeffort-is-high t
  1415. "Non-nil means items without effort estimate are sorted as high effort.
  1416. This also applies when filtering an agenda view with respect to the
  1417. < or > effort operator. Then, tasks with no effort defined will be treated
  1418. as tasks with high effort.
  1419. When nil, such items are sorted as 0 minutes effort."
  1420. :group 'org-agenda-sorting
  1421. :type 'boolean)
  1422. (defgroup org-agenda-line-format nil
  1423. "Options concerning the entry prefix in the Org-mode agenda display."
  1424. :tag "Org Agenda Line Format"
  1425. :group 'org-agenda)
  1426. (defcustom org-agenda-prefix-format
  1427. '((agenda . " %i %-12:c%?-12t% s")
  1428. (timeline . " % s")
  1429. (todo . " %i %-12:c")
  1430. (tags . " %i %-12:c")
  1431. (search . " %i %-12:c"))
  1432. "Format specifications for the prefix of items in the agenda views.
  1433. An alist with five entries, each for the different agenda types. The
  1434. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1435. The values are format strings.
  1436. This format works similar to a printf format, with the following meaning:
  1437. %c the category of the item, \"Diary\" for entries from the diary,
  1438. or as given by the CATEGORY keyword or derived from the file name
  1439. %e the effort required by the item
  1440. %l the level of the item (insert X space(s) if item is of level X)
  1441. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1442. %T the last tag of the item (ignore inherited tags, which come first)
  1443. %t the HH:MM time-of-day specification if one applies to the entry
  1444. %s Scheduling/Deadline information, a short string
  1445. %b show breadcrumbs, i.e., the names of the higher levels
  1446. %(expression) Eval EXPRESSION and replace the control string
  1447. by the result
  1448. All specifiers work basically like the standard `%s' of printf, but may
  1449. contain two additional characters: a question mark just after the `%'
  1450. and a whitespace/punctuation character just before the final letter.
  1451. If the first character after `%' is a question mark, the entire field
  1452. will only be included if the corresponding value applies to the current
  1453. entry. This is useful for fields which should have fixed width when
  1454. present, but zero width when absent. For example, \"%?-12t\" will
  1455. result in a 12 character time field if a time of the day is specified,
  1456. but will completely disappear in entries which do not contain a time.
  1457. If there is punctuation or whitespace character just before the
  1458. final format letter, this character will be appended to the field
  1459. value if the value is not empty. For example, the format
  1460. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1461. the category is empty, no additional colon is inserted.
  1462. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1463. which means:
  1464. - Indent the line with two space characters
  1465. - Give the category a 12 chars wide field, padded with whitespace on
  1466. the right (because of `-'). Append a colon if there is a category
  1467. (because of `:').
  1468. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1469. time, don't put in an empty field, just skip it (because of '?').
  1470. - Finally, put the scheduling information.
  1471. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1472. `org-agenda-remove-tags'.
  1473. Custom commands can set this variable in the options section."
  1474. :type '(choice
  1475. (string :tag "General format")
  1476. (list :greedy t :tag "View dependent"
  1477. (cons (const agenda) (string :tag "Format"))
  1478. (cons (const timeline) (string :tag "Format"))
  1479. (cons (const todo) (string :tag "Format"))
  1480. (cons (const tags) (string :tag "Format"))
  1481. (cons (const search) (string :tag "Format"))))
  1482. :group 'org-agenda-line-format)
  1483. (defvar org-prefix-format-compiled nil
  1484. "The compiled prefix format and associated variables.
  1485. This is a list where first element is a list of variable bindings, and second
  1486. element is the compiled format expression. See the variable
  1487. `org-agenda-prefix-format'.")
  1488. (defcustom org-agenda-todo-keyword-format "%-1s"
  1489. "Format for the TODO keyword in agenda lines.
  1490. Set this to something like \"%-12s\" if you want all TODO keywords
  1491. to occupy a fixed space in the agenda display."
  1492. :group 'org-agenda-line-format
  1493. :type 'string)
  1494. (defcustom org-agenda-diary-sexp-prefix nil
  1495. "A regexp that matches part of a diary sexp entry
  1496. which should be treated as scheduling/deadline information in
  1497. `org-agenda'.
  1498. For example, you can use this to extract the `diary-remind-message' from
  1499. `diary-remind' entries."
  1500. :group 'org-agenda-line-format
  1501. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1502. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1503. "Text preceding timerange entries in the agenda view.
  1504. This is a list with two strings. The first applies when the range
  1505. is entirely on one day. The second applies if the range spans several days.
  1506. The strings may have two \"%d\" format specifiers which will be filled
  1507. with the sequence number of the days, and the total number of days in the
  1508. range, respectively."
  1509. :group 'org-agenda-line-format
  1510. :type '(list
  1511. (string :tag "Deadline today ")
  1512. (choice :tag "Deadline relative"
  1513. (string :tag "Format string")
  1514. (function))))
  1515. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1516. "Text preceding scheduled items in the agenda view.
  1517. This is a list with two strings. The first applies when the item is
  1518. scheduled on the current day. The second applies when it has been scheduled
  1519. previously, it may contain a %d indicating that this is the nth time that
  1520. this item is scheduled, due to automatic rescheduling of unfinished items
  1521. for the following day. So this number is one larger than the number of days
  1522. that passed since this item was scheduled first."
  1523. :group 'org-agenda-line-format
  1524. :version "24.4"
  1525. :package-version '(Org . "8.0")
  1526. :type '(list
  1527. (string :tag "Scheduled today ")
  1528. (string :tag "Scheduled previously")))
  1529. (defcustom org-agenda-inactive-leader "["
  1530. "Text preceding item pulled into the agenda by inactive time stamps.
  1531. These entries are added to the agenda when pressing \"[\"."
  1532. :group 'org-agenda-line-format
  1533. :version "24.1"
  1534. :type 'string)
  1535. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1536. "Text preceding deadline items in the agenda view.
  1537. This is a list with three strings. The first applies when the item has its
  1538. deadline on the current day. The second applies when the deadline is in the
  1539. future, the third one when it is in the past. The strings may contain %d
  1540. to capture the number of days."
  1541. :group 'org-agenda-line-format
  1542. :version "24.4"
  1543. :package-version '(Org . "8.0")
  1544. :type '(list
  1545. (string :tag "Deadline today ")
  1546. (string :tag "Deadline in the future ")
  1547. (string :tag "Deadline in the past ")))
  1548. (defcustom org-agenda-remove-times-when-in-prefix t
  1549. "Non-nil means remove duplicate time specifications in agenda items.
  1550. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1551. time-of-day specification in a headline or diary entry is extracted and
  1552. placed into the prefix. If this option is non-nil, the original specification
  1553. \(a timestamp or -range, or just a plain time(range) specification like
  1554. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1555. cluttered.
  1556. The option can be t or nil. It may also be the symbol `beg', indicating
  1557. that the time should only be removed when it is located at the beginning of
  1558. the headline/diary entry."
  1559. :group 'org-agenda-line-format
  1560. :type '(choice
  1561. (const :tag "Always" t)
  1562. (const :tag "Never" nil)
  1563. (const :tag "When at beginning of entry" beg)))
  1564. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1565. "Non-nil means remove time ranges specifications in agenda
  1566. items that span on several days."
  1567. :group 'org-agenda-line-format
  1568. :version "24.1"
  1569. :type 'boolean)
  1570. (defcustom org-agenda-default-appointment-duration nil
  1571. "Default duration for appointments that only have a starting time.
  1572. When nil, no duration is specified in such cases.
  1573. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1574. :group 'org-agenda-line-format
  1575. :type '(choice
  1576. (integer :tag "Minutes")
  1577. (const :tag "No default duration")))
  1578. (defcustom org-agenda-show-inherited-tags t
  1579. "Non-nil means show inherited tags in each agenda line.
  1580. When this option is set to 'always, it take precedences over
  1581. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1582. in every agenda.
  1583. When this option is set to t (the default), inherited tags are
  1584. shown when they are available, i.e. when the value of
  1585. `org-agenda-use-tag-inheritance' has been taken into account.
  1586. This can be set to a list of agenda types in which the agenda
  1587. must display the inherited tags. Available types are 'todo,
  1588. 'agenda, 'search and 'timeline.
  1589. When set to nil, never show inherited tags in agenda lines."
  1590. :group 'org-agenda-line-format
  1591. :group 'org-agenda
  1592. :version "24.3"
  1593. :type '(choice
  1594. (const :tag "Show inherited tags when available" t)
  1595. (const :tag "Always show inherited tags" always)
  1596. (repeat :tag "Show inherited tags only in selected agenda types"
  1597. (symbol :tag "Agenda type"))))
  1598. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1599. "List of agenda view types where to use tag inheritance.
  1600. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1601. controlled by `org-use-tag-inheritance'. In other agenda types,
  1602. `org-use-tag-inheritance' is not used for the selection of the
  1603. agenda entries. Still, you may want the agenda to be aware of
  1604. the inherited tags anyway, e.g. for later tag filtering.
  1605. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1606. This variable has no effect if `org-agenda-show-inherited-tags'
  1607. is set to 'always. In that case, the agenda is aware of those
  1608. tags.
  1609. The default value sets tags in every agenda type. Setting this
  1610. option to nil will speed up non-tags agenda view a lot."
  1611. :group 'org-agenda
  1612. :version "24.3"
  1613. :type '(choice
  1614. (const :tag "Use tag inheritance in all agenda types" t)
  1615. (repeat :tag "Use tag inheritance in selected agenda types"
  1616. (symbol :tag "Agenda type"))))
  1617. (defcustom org-agenda-hide-tags-regexp nil
  1618. "Regular expression used to filter away specific tags in agenda views.
  1619. This means that these tags will be present, but not be shown in the agenda
  1620. line. Secondary filtering will still work on the hidden tags.
  1621. Nil means don't hide any tags."
  1622. :group 'org-agenda-line-format
  1623. :type '(choice
  1624. (const :tag "Hide none" nil)
  1625. (string :tag "Regexp ")))
  1626. (defcustom org-agenda-remove-tags nil
  1627. "Non-nil means remove the tags from the headline copy in the agenda.
  1628. When this is the symbol `prefix', only remove tags when
  1629. `org-agenda-prefix-format' contains a `%T' specifier."
  1630. :group 'org-agenda-line-format
  1631. :type '(choice
  1632. (const :tag "Always" t)
  1633. (const :tag "Never" nil)
  1634. (const :tag "When prefix format contains %T" prefix)))
  1635. (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
  1636. 'org-agenda-remove-tags)
  1637. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1638. "Shift tags in agenda items to this column.
  1639. If this number is positive, it specifies the column. If it is negative,
  1640. it means that the tags should be flushright to that column. For example,
  1641. -80 works well for a normal 80 character screen."
  1642. :group 'org-agenda-line-format
  1643. :type 'integer)
  1644. (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1645. (defcustom org-agenda-fontify-priorities 'cookies
  1646. "Non-nil means highlight low and high priorities in agenda.
  1647. When t, the highest priority entries are bold, lowest priority italic.
  1648. However, settings in `org-priority-faces' will overrule these faces.
  1649. When this variable is the symbol `cookies', only fontify the
  1650. cookies, not the entire task.
  1651. This may also be an association list of priority faces, whose
  1652. keys are the character values of `org-highest-priority',
  1653. `org-default-priority', and `org-lowest-priority' (the default values
  1654. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1655. color as a string, or a list like `(:background \"Red\")'.
  1656. If it is a color, the variable `org-faces-easy-properties'
  1657. determines if it is a foreground or a background color."
  1658. :group 'org-agenda-line-format
  1659. :type '(choice
  1660. (const :tag "Never" nil)
  1661. (const :tag "Defaults" t)
  1662. (const :tag "Cookies only" cookies)
  1663. (repeat :tag "Specify"
  1664. (list (character :tag "Priority" :value ?A)
  1665. (choice :tag "Face "
  1666. (string :tag "Color")
  1667. (sexp :tag "Face"))))))
  1668. (defcustom org-agenda-day-face-function nil
  1669. "Function called to determine what face should be used to display a day.
  1670. The only argument passed to that function is the day. It should
  1671. returns a face, or nil if does not want to specify a face and let
  1672. the normal rules apply."
  1673. :group 'org-agenda-line-format
  1674. :version "24.1"
  1675. :type '(choice (const nil) (function)))
  1676. (defcustom org-agenda-category-icon-alist nil
  1677. "Alist of category icon to be displayed in agenda views.
  1678. Each entry should have the following format:
  1679. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1680. Where CATEGORY-REGEXP is a regexp matching the categories where
  1681. the icon should be displayed.
  1682. FILE-OR-DATA either a file path or a string containing image data.
  1683. The other fields can be omitted safely if not needed:
  1684. TYPE indicates the image type.
  1685. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1686. image data.
  1687. PROPS are additional image attributes to assign to the image,
  1688. like, e.g. `:ascent center'.
  1689. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1690. If you want to set the display properties yourself, just put a
  1691. list as second element:
  1692. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1693. For example, to display a 16px horizontal space for Emacs
  1694. category, you can use:
  1695. (\"Emacs\" '(space . (:width (16))))"
  1696. :group 'org-agenda-line-format
  1697. :version "24.1"
  1698. :type '(alist :key-type (string :tag "Regexp matching category")
  1699. :value-type (choice (list :tag "Icon"
  1700. (string :tag "File or data")
  1701. (symbol :tag "Type")
  1702. (boolean :tag "Data?")
  1703. (repeat :tag "Extra image properties" :inline t symbol))
  1704. (list :tag "Display properties" sexp))))
  1705. (defgroup org-agenda-column-view nil
  1706. "Options concerning column view in the agenda."
  1707. :tag "Org Agenda Column View"
  1708. :group 'org-agenda)
  1709. (defcustom org-agenda-columns-show-summaries t
  1710. "Non-nil means show summaries for columns displayed in the agenda view."
  1711. :group 'org-agenda-column-view
  1712. :type 'boolean)
  1713. (defcustom org-agenda-columns-compute-summary-properties t
  1714. "Non-nil means recompute all summary properties before column view.
  1715. When column view in the agenda is listing properties that have a summary
  1716. operator, it can go to all relevant buffers and recompute the summaries
  1717. there. This can mean overhead for the agenda column view, but is necessary
  1718. to have thing up to date.
  1719. As a special case, a CLOCKSUM property also makes sure that the clock
  1720. computations are current."
  1721. :group 'org-agenda-column-view
  1722. :type 'boolean)
  1723. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1724. "Non-nil means the duration of an appointment will add to day effort.
  1725. The property to which appointment durations will be added is the one given
  1726. in the option `org-effort-property'. If an appointment does not have
  1727. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1728. is not set, an appointment without end time will not contribute to the time
  1729. estimate."
  1730. :group 'org-agenda-column-view
  1731. :type 'boolean)
  1732. (defcustom org-agenda-auto-exclude-function nil
  1733. "A function called with a tag to decide if it is filtered on '/ RET'.
  1734. The sole argument to the function, which is called once for each
  1735. possible tag, is a string giving the name of the tag. The
  1736. function should return either nil if the tag should be included
  1737. as normal, or \"-<TAG>\" to exclude the tag.
  1738. Note that for the purpose of tag filtering, only the lower-case version of
  1739. all tags will be considered, so that this function will only ever see
  1740. the lower-case version of all tags."
  1741. :group 'org-agenda
  1742. :type '(choice (const nil) (function)))
  1743. (defcustom org-agenda-bulk-custom-functions nil
  1744. "Alist of characters and custom functions for bulk actions.
  1745. For example, this value makes those two functions available:
  1746. '((?R set-category)
  1747. (?C bulk-cut))
  1748. With selected entries in an agenda buffer, `B R' will call
  1749. the custom function `set-category' on the selected entries.
  1750. Note that functions in this alist don't need to be quoted."
  1751. :type 'alist
  1752. :version "24.1"
  1753. :group 'org-agenda)
  1754. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1755. "Execute BODY with point at location given by `org-hd-marker' property.
  1756. If STRING is non-nil, the text property will be fetched from position 0
  1757. in that string. If STRING is nil, it will be fetched from the beginning
  1758. of the current line."
  1759. (org-with-gensyms (marker)
  1760. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1761. 'org-hd-marker ,string)))
  1762. (with-current-buffer (marker-buffer ,marker)
  1763. (save-excursion
  1764. (goto-char ,marker)
  1765. ,@body)))))
  1766. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1767. (defun org-add-agenda-custom-command (entry)
  1768. "Replace or add a command in `org-agenda-custom-commands'.
  1769. This is mostly for hacking and trying a new command - once the command
  1770. works you probably want to add it to `org-agenda-custom-commands' for good."
  1771. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1772. (if ass
  1773. (setcdr ass (cdr entry))
  1774. (push entry org-agenda-custom-commands))))
  1775. ;;; Define the org-agenda-mode
  1776. (defvar org-agenda-mode-map (make-sparse-keymap)
  1777. "Keymap for `org-agenda-mode'.")
  1778. (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1779. (defvar org-agenda-menu) ; defined later in this file.
  1780. (defvar org-agenda-restrict nil) ; defined later in this file.
  1781. (defvar org-agenda-follow-mode nil)
  1782. (defvar org-agenda-entry-text-mode nil)
  1783. (defvar org-agenda-clockreport-mode nil)
  1784. (defvar org-agenda-show-log nil)
  1785. (defvar org-agenda-redo-command nil)
  1786. (defvar org-agenda-query-string nil)
  1787. (defvar org-agenda-mode-hook nil
  1788. "Hook run after `org-agenda-mode' is turned on.
  1789. The buffer is still writable when this hook is called.")
  1790. (defvar org-agenda-type nil)
  1791. (defvar org-agenda-force-single-file nil)
  1792. (defvar org-agenda-bulk-marked-entries nil
  1793. "List of markers that refer to marked entries in the agenda.")
  1794. ;;; Multiple agenda buffers support
  1795. (defcustom org-agenda-sticky nil
  1796. "Non-nil means agenda q key will bury agenda buffers.
  1797. Agenda commands will then show existing buffer instead of generating new ones.
  1798. When nil, `q' will kill the single agenda buffer."
  1799. :group 'org-agenda
  1800. :version "24.3"
  1801. :type 'boolean)
  1802. ;;;###autoload
  1803. (defun org-toggle-sticky-agenda (&optional arg)
  1804. "Toggle `org-agenda-sticky'."
  1805. (interactive "P")
  1806. (let ((new-value (if arg
  1807. (> (prefix-numeric-value arg) 0)
  1808. (not org-agenda-sticky))))
  1809. (if (equal new-value org-agenda-sticky)
  1810. (and (org-called-interactively-p 'interactive)
  1811. (message "Sticky agenda was already %s"
  1812. (if org-agenda-sticky "enabled" "disabled")))
  1813. (setq org-agenda-sticky new-value)
  1814. (org-agenda-kill-all-agenda-buffers)
  1815. (and (org-called-interactively-p 'interactive)
  1816. (message "Sticky agenda was %s"
  1817. (if org-agenda-sticky "enabled" "disabled"))))))
  1818. (defvar org-agenda-buffer nil
  1819. "Agenda buffer currently being generated.")
  1820. (defvar org-agenda-last-prefix-arg nil)
  1821. (defvar org-agenda-this-buffer-name nil)
  1822. (defvar org-agenda-doing-sticky-redo nil)
  1823. (defvar org-agenda-this-buffer-is-sticky nil)
  1824. (defvar org-agenda-last-indirect-buffer nil
  1825. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1826. (defconst org-agenda-local-vars
  1827. '(org-agenda-this-buffer-name
  1828. org-agenda-undo-list
  1829. org-agenda-pending-undo-list
  1830. org-agenda-follow-mode
  1831. org-agenda-entry-text-mode
  1832. org-agenda-clockreport-mode
  1833. org-agenda-show-log
  1834. org-agenda-redo-command
  1835. org-agenda-query-string
  1836. org-agenda-type
  1837. org-agenda-bulk-marked-entries
  1838. org-agenda-undo-has-started-in
  1839. org-agenda-info
  1840. org-agenda-pre-window-conf
  1841. org-agenda-columns-active
  1842. org-agenda-tag-filter
  1843. org-agenda-category-filter
  1844. org-agenda-top-headline-filter
  1845. org-agenda-regexp-filter
  1846. org-agenda-effort-filter
  1847. org-agenda-markers
  1848. org-agenda-last-search-view-search-was-boolean
  1849. org-agenda-last-indirect-buffer
  1850. org-agenda-filtered-by-category
  1851. org-agenda-filter-form
  1852. org-agenda-cycle-counter
  1853. org-agenda-last-prefix-arg)
  1854. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1855. (defun org-agenda-mode ()
  1856. "Mode for time-sorted view on action items in Org-mode files.
  1857. The following commands are available:
  1858. \\{org-agenda-mode-map}"
  1859. (interactive)
  1860. (cond (org-agenda-doing-sticky-redo
  1861. ;; Refreshing sticky agenda-buffer
  1862. ;;
  1863. ;; Preserve the value of `org-agenda-local-vars' variables,
  1864. ;; while letting `kill-all-local-variables' kill the rest
  1865. (let ((save (buffer-local-variables)))
  1866. (kill-all-local-variables)
  1867. (mapc 'make-local-variable org-agenda-local-vars)
  1868. (dolist (elem save)
  1869. (let ((var (car elem))
  1870. (val (cdr elem)))
  1871. (when (and val
  1872. (member var org-agenda-local-vars))
  1873. (set var val)))))
  1874. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1875. (org-agenda-sticky
  1876. ;; Creating a sticky Agenda buffer for the first time
  1877. (kill-all-local-variables)
  1878. (mapc 'make-local-variable org-agenda-local-vars)
  1879. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1880. (t
  1881. ;; Creating a non-sticky agenda buffer
  1882. (kill-all-local-variables)
  1883. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1884. (setq org-agenda-undo-list nil
  1885. org-agenda-pending-undo-list nil
  1886. org-agenda-bulk-marked-entries nil)
  1887. (setq major-mode 'org-agenda-mode)
  1888. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1889. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1890. (setq mode-name "Org-Agenda")
  1891. (setq indent-tabs-mode nil)
  1892. (use-local-map org-agenda-mode-map)
  1893. (easy-menu-add org-agenda-menu)
  1894. (if org-startup-truncated (setq truncate-lines t))
  1895. (org-set-local 'line-move-visual nil)
  1896. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1897. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1898. ;; Make sure properties are removed when copying text
  1899. (org-add-hook 'filter-buffer-substring-functions
  1900. (lambda (fun start end delete)
  1901. (substring-no-properties (funcall fun start end delete)))
  1902. nil t)
  1903. (unless org-agenda-keep-modes
  1904. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1905. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
  1906. (setq org-agenda-show-log org-agenda-start-with-log-mode)
  1907. (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
  1908. (add-to-invisibility-spec '(org-filtered))
  1909. (add-to-invisibility-spec '(org-link))
  1910. (easy-menu-change
  1911. '("Agenda") "Agenda Files"
  1912. (append
  1913. (list
  1914. (vector
  1915. (if (get 'org-agenda-files 'org-restrict)
  1916. "Restricted to single file"
  1917. "Edit File List")
  1918. '(org-edit-agenda-file-list)
  1919. (not (get 'org-agenda-files 'org-restrict)))
  1920. "--")
  1921. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1922. (org-agenda-set-mode-name)
  1923. (apply
  1924. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1925. (list 'org-agenda-mode-hook)))
  1926. (substitute-key-definition 'undo 'org-agenda-undo
  1927. org-agenda-mode-map global-map)
  1928. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1929. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1930. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1931. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1932. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1933. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1934. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1935. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1936. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1937. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1938. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1939. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1940. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1941. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1942. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1943. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1944. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1945. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1946. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1947. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1948. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1949. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1950. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1951. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1952. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1954. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1955. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1956. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1957. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1958. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1959. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1960. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1961. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1962. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1963. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1964. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1965. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1966. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1967. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1968. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1969. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1970. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1971. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1972. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1973. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1974. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1975. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1976. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1977. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1978. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1979. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1980. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1981. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1982. (while l (org-defkey org-agenda-mode-map
  1983. (int-to-string (pop l)) 'digit-argument)))
  1984. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1985. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1986. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1987. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1988. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1989. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1990. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1991. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1992. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1993. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1994. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1995. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1996. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1997. 'org-clock-modify-effort-estimate)
  1998. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1999. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2000. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2001. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2002. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2003. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2004. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2005. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2006. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2007. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2008. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2009. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2010. (substitute-key-definition 'next-line 'org-agenda-next-line
  2011. org-agenda-mode-map global-map)
  2012. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2013. org-agenda-mode-map global-map)
  2014. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2015. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2016. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2017. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2018. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2019. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2020. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2021. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2022. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2023. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2024. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2025. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2026. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2027. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2028. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2029. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2030. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2031. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2033. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2034. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2035. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2036. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2037. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2038. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2039. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2040. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2041. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2042. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2043. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2044. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2045. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2046. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2047. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2048. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2049. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2050. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2051. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2052. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  2053. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2054. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2055. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2056. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2057. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2059. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2060. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2061. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2062. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2063. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2064. (when org-agenda-mouse-1-follows-link
  2065. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2066. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2067. '("Agenda"
  2068. ("Agenda Files")
  2069. "--"
  2070. ("Agenda Dates"
  2071. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2072. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2073. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2074. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2075. "--"
  2076. ("View"
  2077. ["Day View" org-agenda-day-view
  2078. :active (org-agenda-check-type nil 'agenda)
  2079. :style radio :selected (eq org-agenda-current-span 'day)
  2080. :keys "v d (or just d)"]
  2081. ["Week View" org-agenda-week-view
  2082. :active (org-agenda-check-type nil 'agenda)
  2083. :style radio :selected (eq org-agenda-current-span 'week)
  2084. :keys "v w"]
  2085. ["Fortnight View" org-agenda-fortnight-view
  2086. :active (org-agenda-check-type nil 'agenda)
  2087. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2088. :keys "v f"]
  2089. ["Month View" org-agenda-month-view
  2090. :active (org-agenda-check-type nil 'agenda)
  2091. :style radio :selected (eq org-agenda-current-span 'month)
  2092. :keys "v m"]
  2093. ["Year View" org-agenda-year-view
  2094. :active (org-agenda-check-type nil 'agenda)
  2095. :style radio :selected (eq org-agenda-current-span 'year)
  2096. :keys "v y"]
  2097. "--"
  2098. ["Include Diary" org-agenda-toggle-diary
  2099. :style toggle :selected org-agenda-include-diary
  2100. :active (org-agenda-check-type nil 'agenda)]
  2101. ["Include Deadlines" org-agenda-toggle-deadlines
  2102. :style toggle :selected org-agenda-include-deadlines
  2103. :active (org-agenda-check-type nil 'agenda)]
  2104. ["Use Time Grid" org-agenda-toggle-time-grid
  2105. :style toggle :selected org-agenda-use-time-grid
  2106. :active (org-agenda-check-type nil 'agenda)]
  2107. "--"
  2108. ["Show clock report" org-agenda-clockreport-mode
  2109. :style toggle :selected org-agenda-clockreport-mode
  2110. :active (org-agenda-check-type nil 'agenda)]
  2111. ["Show some entry text" org-agenda-entry-text-mode
  2112. :style toggle :selected org-agenda-entry-text-mode
  2113. :active t]
  2114. "--"
  2115. ["Show Logbook entries" org-agenda-log-mode
  2116. :style toggle :selected org-agenda-show-log
  2117. :active (org-agenda-check-type nil 'agenda 'timeline)
  2118. :keys "v l (or just l)"]
  2119. ["Include archived trees" org-agenda-archives-mode
  2120. :style toggle :selected org-agenda-archives-mode :active t
  2121. :keys "v a"]
  2122. ["Include archive files" (org-agenda-archives-mode t)
  2123. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2124. :keys "v A"]
  2125. "--"
  2126. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2127. ["Write view to file" org-agenda-write t]
  2128. ["Rebuild buffer" org-agenda-redo t]
  2129. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2130. "--"
  2131. ["Show original entry" org-agenda-show t]
  2132. ["Go To (other window)" org-agenda-goto t]
  2133. ["Go To (this window)" org-agenda-switch-to t]
  2134. ["Capture with cursor date" org-agenda-capture t]
  2135. ["Follow Mode" org-agenda-follow-mode
  2136. :style toggle :selected org-agenda-follow-mode :active t]
  2137. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2138. "--"
  2139. ("TODO"
  2140. ["Cycle TODO" org-agenda-todo t]
  2141. ["Next TODO set" org-agenda-todo-nextset t]
  2142. ["Previous TODO set" org-agenda-todo-previousset t]
  2143. ["Add note" org-agenda-add-note t])
  2144. ("Archive/Refile/Delete"
  2145. ["Archive default" org-agenda-archive-default t]
  2146. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2147. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2148. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2149. ["Archive subtree" org-agenda-archive t]
  2150. "--"
  2151. ["Refile" org-agenda-refile t]
  2152. "--"
  2153. ["Delete subtree" org-agenda-kill t])
  2154. ("Bulk action"
  2155. ["Mark entry" org-agenda-bulk-mark t]
  2156. ["Mark all" org-agenda-bulk-mark-all t]
  2157. ["Unmark entry" org-agenda-bulk-unmark t]
  2158. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2159. ["Toggle mark" org-agenda-bulk-toggle t]
  2160. ["Toggle all" org-agenda-bulk-toggle-all t]
  2161. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2162. ["Act on all marked" org-agenda-bulk-action t]
  2163. "--"
  2164. ("Tags and Properties"
  2165. ["Show all Tags" org-agenda-show-tags t]
  2166. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2167. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2168. "--"
  2169. ["Column View" org-columns t])
  2170. ("Deadline/Schedule"
  2171. ["Schedule" org-agenda-schedule t]
  2172. ["Set Deadline" org-agenda-deadline t]
  2173. "--"
  2174. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2175. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2176. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2177. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2178. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2179. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2180. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2181. ("Clock and Effort"
  2182. ["Clock in" org-agenda-clock-in t]
  2183. ["Clock out" org-agenda-clock-out t]
  2184. ["Clock cancel" org-agenda-clock-cancel t]
  2185. ["Goto running clock" org-clock-goto t]
  2186. "--"
  2187. ["Set Effort" org-agenda-set-effort t]
  2188. ["Change clocked effort" org-clock-modify-effort-estimate
  2189. (org-clock-is-active)])
  2190. ("Priority"
  2191. ["Set Priority" org-agenda-priority t]
  2192. ["Increase Priority" org-agenda-priority-up t]
  2193. ["Decrease Priority" org-agenda-priority-down t]
  2194. ["Show Priority" org-show-priority t])
  2195. ("Calendar/Diary"
  2196. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2197. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2198. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2199. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2200. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2201. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2202. "--"
  2203. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2204. "--"
  2205. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2206. "--"
  2207. ("MobileOrg"
  2208. ["Push Files and Views" org-mobile-push t]
  2209. ["Get Captured and Flagged" org-mobile-pull t]
  2210. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2211. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2212. "--"
  2213. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2214. "--"
  2215. ["Quit" org-agenda-quit t]
  2216. ["Exit and Release Buffers" org-agenda-exit t]
  2217. ))
  2218. ;;; Agenda undo
  2219. (defvar org-agenda-allow-remote-undo t
  2220. "Non-nil means allow remote undo from the agenda buffer.")
  2221. (defvar org-agenda-undo-has-started-in nil
  2222. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2223. (defun org-agenda-undo ()
  2224. "Undo a remote editing step in the agenda.
  2225. This undoes changes both in the agenda buffer and in the remote buffer
  2226. that have been changed along."
  2227. (interactive)
  2228. (or org-agenda-allow-remote-undo
  2229. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2230. (if (not (eq this-command last-command))
  2231. (setq org-agenda-undo-has-started-in nil
  2232. org-agenda-pending-undo-list org-agenda-undo-list))
  2233. (if (not org-agenda-pending-undo-list)
  2234. (user-error "No further undo information"))
  2235. (let* ((entry (pop org-agenda-pending-undo-list))
  2236. buf line cmd rembuf)
  2237. (setq cmd (pop entry) line (pop entry))
  2238. (setq rembuf (nth 2 entry))
  2239. (org-with-remote-undo rembuf
  2240. (while (bufferp (setq buf (pop entry)))
  2241. (if (pop entry)
  2242. (with-current-buffer buf
  2243. (let ((last-undo-buffer buf)
  2244. (inhibit-read-only t))
  2245. (unless (memq buf org-agenda-undo-has-started-in)
  2246. (push buf org-agenda-undo-has-started-in)
  2247. (make-local-variable 'pending-undo-list)
  2248. (undo-start))
  2249. (while (and pending-undo-list
  2250. (listp pending-undo-list)
  2251. (not (car pending-undo-list)))
  2252. (pop pending-undo-list))
  2253. (undo-more 1))))))
  2254. (org-goto-line line)
  2255. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2256. (defun org-verify-change-for-undo (l1 l2)
  2257. "Verify that a real change occurred between the undo lists L1 and L2."
  2258. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2259. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2260. (not (eq l1 l2)))
  2261. ;;; Agenda dispatch
  2262. (defvar org-agenda-restrict-begin (make-marker))
  2263. (defvar org-agenda-restrict-end (make-marker))
  2264. (defvar org-agenda-last-dispatch-buffer nil)
  2265. (defvar org-agenda-overriding-restriction nil)
  2266. (defcustom org-agenda-custom-commands-contexts nil
  2267. "Alist of custom agenda keys and contextual rules.
  2268. For example, if you have a custom agenda command \"p\" and you
  2269. want this command to be accessible only from plain text files,
  2270. use this:
  2271. '((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2272. Here are the available contexts definitions:
  2273. in-file: command displayed only in matching files
  2274. in-mode: command displayed only in matching modes
  2275. not-in-file: command not displayed in matching files
  2276. not-in-mode: command not displayed in matching modes
  2277. in-buffer: command displayed only in matching buffers
  2278. not-in-buffer: command not displayed in matching buffers
  2279. [function]: a custom function taking no argument
  2280. If you define several checks, the agenda command will be
  2281. accessible if there is at least one valid check.
  2282. You can also bind a key to another agenda custom command
  2283. depending on contextual rules.
  2284. '((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2285. Here it means: in .txt files, use \"p\" as the key for the
  2286. agenda command otherwise associated with \"q\". (The command
  2287. originally associated with \"q\" is not displayed to avoid
  2288. duplicates.)"
  2289. :version "24.3"
  2290. :group 'org-agenda-custom-commands
  2291. :type '(repeat (list :tag "Rule"
  2292. (string :tag " Agenda key")
  2293. (string :tag "Replace by command")
  2294. (repeat :tag "Available when"
  2295. (choice
  2296. (cons :tag "Condition"
  2297. (choice
  2298. (const :tag "In file" in-file)
  2299. (const :tag "Not in file" not-in-file)
  2300. (const :tag "In buffer" in-buffer)
  2301. (const :tag "Not in buffer" not-in-buffer)
  2302. (const :tag "In mode" in-mode)
  2303. (const :tag "Not in mode" not-in-mode))
  2304. (regexp))
  2305. (function :tag "Custom function"))))))
  2306. (defcustom org-agenda-max-entries nil
  2307. "Maximum number of entries to display in an agenda.
  2308. This can be nil (no limit) or an integer or an alist of agenda
  2309. types with an associated number of entries to display in this
  2310. type."
  2311. :version "24.4"
  2312. :package-version '(Org . "8.0")
  2313. :group 'org-agenda-custom-commands
  2314. :type '(choice (symbol :tag "No limit" nil)
  2315. (integer :tag "Max number of entries")
  2316. (repeat
  2317. (cons (choice :tag "Agenda type"
  2318. (const agenda)
  2319. (const todo)
  2320. (const tags)
  2321. (const search)
  2322. (const timeline))
  2323. (integer :tag "Max number of entries")))))
  2324. (defcustom org-agenda-max-todos nil
  2325. "Maximum number of TODOs to display in an agenda.
  2326. This can be nil (no limit) or an integer or an alist of agenda
  2327. types with an associated number of entries to display in this
  2328. type."
  2329. :version "24.4"
  2330. :package-version '(Org . "8.0")
  2331. :group 'org-agenda-custom-commands
  2332. :type '(choice (symbol :tag "No limit" nil)
  2333. (integer :tag "Max number of TODOs")
  2334. (repeat
  2335. (cons (choice :tag "Agenda type"
  2336. (const agenda)
  2337. (const todo)
  2338. (const tags)
  2339. (const search)
  2340. (const timeline))
  2341. (integer :tag "Max number of TODOs")))))
  2342. (defcustom org-agenda-max-tags nil
  2343. "Maximum number of tagged entries to display in an agenda.
  2344. This can be nil (no limit) or an integer or an alist of agenda
  2345. types with an associated number of entries to display in this
  2346. type."
  2347. :version "24.4"
  2348. :package-version '(Org . "8.0")
  2349. :group 'org-agenda-custom-commands
  2350. :type '(choice (symbol :tag "No limit" nil)
  2351. (integer :tag "Max number of tagged entries")
  2352. (repeat
  2353. (cons (choice :tag "Agenda type"
  2354. (const agenda)
  2355. (const todo)
  2356. (const tags)
  2357. (const search)
  2358. (const timeline))
  2359. (integer :tag "Max number of tagged entries")))))
  2360. (defcustom org-agenda-max-effort nil
  2361. "Maximum cumulated effort duration for the agenda.
  2362. This can be nil (no limit) or a number of minutes (as an integer)
  2363. or an alist of agenda types with an associated number of minutes
  2364. to limit entries to in this type."
  2365. :version "24.4"
  2366. :package-version '(Org . "8.0")
  2367. :group 'org-agenda-custom-commands
  2368. :type '(choice (symbol :tag "No limit" nil)
  2369. (integer :tag "Max number of minutes")
  2370. (repeat
  2371. (cons (choice :tag "Agenda type"
  2372. (const agenda)
  2373. (const todo)
  2374. (const tags)
  2375. (const search)
  2376. (const timeline))
  2377. (integer :tag "Max number of minutes")))))
  2378. (defvar org-keys nil)
  2379. (defvar org-match nil)
  2380. ;;;###autoload
  2381. (defun org-agenda (&optional arg org-keys restriction)
  2382. "Dispatch agenda commands to collect entries to the agenda buffer.
  2383. Prompts for a command to execute. Any prefix arg will be passed
  2384. on to the selected command. The default selections are:
  2385. a Call `org-agenda-list' to display the agenda for current day or week.
  2386. t Call `org-todo-list' to display the global todo list.
  2387. T Call `org-todo-list' to display the global todo list, select only
  2388. entries with a specific TODO keyword (the user gets a prompt).
  2389. m Call `org-tags-view' to display headlines with tags matching
  2390. a condition (the user is prompted for the condition).
  2391. M Like `m', but select only TODO entries, no ordinary headlines.
  2392. L Create a timeline for the current buffer.
  2393. e Export views to associated files.
  2394. s Search entries for keywords.
  2395. S Search entries for keywords, only with TODO keywords.
  2396. / Multi occur across all agenda files and also files listed
  2397. in `org-agenda-text-search-extra-files'.
  2398. < Restrict agenda commands to buffer, subtree, or region.
  2399. Press several times to get the desired effect.
  2400. > Remove a previous restriction.
  2401. # List \"stuck\" projects.
  2402. ! Configure what \"stuck\" means.
  2403. C Configure custom agenda commands.
  2404. More commands can be added by configuring the variable
  2405. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2406. searches can be pre-defined in this way.
  2407. If the current buffer is in Org-mode and visiting a file, you can also
  2408. first press `<' once to indicate that the agenda should be temporarily
  2409. \(until the next use of \\[org-agenda]) restricted to the current file.
  2410. Pressing `<' twice means to restrict to the current subtree or region
  2411. \(if active)."
  2412. (interactive "P")
  2413. (catch 'exit
  2414. (let* ((prefix-descriptions nil)
  2415. (org-agenda-buffer-name org-agenda-buffer-name)
  2416. (org-agenda-window-setup (if (equal (buffer-name)
  2417. org-agenda-buffer-name)
  2418. 'current-window
  2419. org-agenda-window-setup))
  2420. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2421. (org-agenda-custom-commands
  2422. ;; normalize different versions
  2423. (delq nil
  2424. (mapcar
  2425. (lambda (x)
  2426. (cond ((stringp (cdr x))
  2427. (push x prefix-descriptions)
  2428. nil)
  2429. ((stringp (nth 1 x)) x)
  2430. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2431. (t (cons (car x) (cons "" (cdr x))))))
  2432. org-agenda-custom-commands)))
  2433. (org-agenda-custom-commands
  2434. (org-contextualize-keys
  2435. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2436. (buf (current-buffer))
  2437. (bfn (buffer-file-name (buffer-base-buffer)))
  2438. entry key type org-match lprops ans)
  2439. ;; Turn off restriction unless there is an overriding one,
  2440. (unless org-agenda-overriding-restriction
  2441. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2442. ;; There is a request to keep the file list in place
  2443. (put 'org-agenda-files 'org-restrict nil))
  2444. (setq org-agenda-restrict nil)
  2445. (move-marker org-agenda-restrict-begin nil)
  2446. (move-marker org-agenda-restrict-end nil))
  2447. ;; Delete old local properties
  2448. (put 'org-agenda-redo-command 'org-lprops nil)
  2449. ;; Delete previously set last-arguments
  2450. (put 'org-agenda-redo-command 'last-args nil)
  2451. ;; Remember where this call originated
  2452. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2453. (unless org-keys
  2454. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2455. org-keys (car ans)
  2456. restriction (cdr ans)))
  2457. ;; If we have sticky agenda buffers, set a name for the buffer,
  2458. ;; depending on the invoking keys. The user may still set this
  2459. ;; as a command option, which will overwrite what we do here.
  2460. (if org-agenda-sticky
  2461. (setq org-agenda-buffer-name
  2462. (format "*Org Agenda(%s)*" org-keys)))
  2463. ;; Establish the restriction, if any
  2464. (when (and (not org-agenda-overriding-restriction) restriction)
  2465. (put 'org-agenda-files 'org-restrict (list bfn))
  2466. (cond
  2467. ((eq restriction 'region)
  2468. (setq org-agenda-restrict (current-buffer))
  2469. (move-marker org-agenda-restrict-begin (region-beginning))
  2470. (move-marker org-agenda-restrict-end (region-end)))
  2471. ((eq restriction 'subtree)
  2472. (save-excursion
  2473. (setq org-agenda-restrict (current-buffer))
  2474. (org-back-to-heading t)
  2475. (move-marker org-agenda-restrict-begin (point))
  2476. (move-marker org-agenda-restrict-end
  2477. (progn (org-end-of-subtree t)))))))
  2478. ;; For example the todo list should not need it (but does...)
  2479. (cond
  2480. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2481. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2482. (progn
  2483. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2484. lprops (nth 4 entry))
  2485. (if org-agenda-sticky
  2486. (setq org-agenda-buffer-name
  2487. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2488. (format "*Org Agenda(%s)*" org-keys))))
  2489. (put 'org-agenda-redo-command 'org-lprops lprops)
  2490. (cond
  2491. ((eq type 'agenda)
  2492. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2493. ((eq type 'agenda*)
  2494. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2495. ((eq type 'alltodo)
  2496. (org-let lprops '(org-todo-list current-prefix-arg)))
  2497. ((eq type 'search)
  2498. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2499. ((eq type 'stuck)
  2500. (org-let lprops '(org-agenda-list-stuck-projects
  2501. current-prefix-arg)))
  2502. ((eq type 'tags)
  2503. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2504. ((eq type 'tags-todo)
  2505. (org-let lprops '(org-tags-view '(4) org-match)))
  2506. ((eq type 'todo)
  2507. (org-let lprops '(org-todo-list org-match)))
  2508. ((eq type 'tags-tree)
  2509. (org-check-for-org-mode)
  2510. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2511. ((eq type 'todo-tree)
  2512. (org-check-for-org-mode)
  2513. (org-let lprops
  2514. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2515. (regexp-quote org-match) "\\>"))))
  2516. ((eq type 'occur-tree)
  2517. (org-check-for-org-mode)
  2518. (org-let lprops '(org-occur org-match)))
  2519. ((functionp type)
  2520. (org-let lprops '(funcall type org-match)))
  2521. ((fboundp type)
  2522. (org-let lprops '(funcall type org-match)))
  2523. (t (user-error "Invalid custom agenda command type %s" type))))
  2524. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2525. ((equal org-keys "C")
  2526. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2527. (customize-variable 'org-agenda-custom-commands))
  2528. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2529. ((equal org-keys "s") (call-interactively 'org-search-view))
  2530. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2531. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2532. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2533. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2534. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2535. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2536. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2537. (org-add-hook
  2538. 'post-command-hook
  2539. (lambda ()
  2540. (unless (current-message)
  2541. (let* ((m (org-agenda-get-any-marker))
  2542. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2543. (when note
  2544. (message (concat
  2545. "FLAGGING-NOTE ([?] for more info): "
  2546. (org-add-props
  2547. (replace-regexp-in-string
  2548. "\\\\n" "//"
  2549. (copy-sequence note))
  2550. nil 'face 'org-warning)))))))
  2551. t t))
  2552. ((equal org-keys "L")
  2553. (unless (derived-mode-p 'org-mode)
  2554. (user-error "This is not an Org-mode file"))
  2555. (unless restriction
  2556. (put 'org-agenda-files 'org-restrict (list bfn))
  2557. (org-call-with-arg 'org-timeline arg)))
  2558. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2559. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2560. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2561. (t (user-error "Invalid agenda key"))))))
  2562. (defvar org-agenda-multi)
  2563. (defun org-agenda-append-agenda ()
  2564. "Append another agenda view to the current one.
  2565. This function allows interactive building of block agendas.
  2566. Agenda views are separated by `org-agenda-block-separator'."
  2567. (interactive)
  2568. (unless (derived-mode-p 'org-agenda-mode)
  2569. (user-error "Can only append from within agenda buffer"))
  2570. (let ((org-agenda-multi t))
  2571. (org-agenda)
  2572. (widen)
  2573. (org-agenda-finalize)
  2574. (setq buffer-read-only t)
  2575. (org-agenda-fit-window-to-buffer)))
  2576. (defun org-agenda-normalize-custom-commands (cmds)
  2577. "Normalize custom commands CMDS."
  2578. (delq nil
  2579. (mapcar
  2580. (lambda (x)
  2581. (cond ((stringp (cdr x)) nil)
  2582. ((stringp (nth 1 x)) x)
  2583. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2584. (t (cons (car x) (cons "" (cdr x))))))
  2585. cmds)))
  2586. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2587. "The user interface for selecting an agenda command."
  2588. (catch 'exit
  2589. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2590. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2591. (region-p (org-region-active-p))
  2592. (custom org-agenda-custom-commands)
  2593. (selstring "")
  2594. restriction second-time
  2595. c entry key type match prefixes rmheader header-end custom1 desc
  2596. line lines left right n n1)
  2597. (save-window-excursion
  2598. (delete-other-windows)
  2599. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2600. (erase-buffer)
  2601. (insert (eval-when-compile
  2602. (let ((header
  2603. "Press key for an agenda command: < Buffer, subtree/region restriction
  2604. -------------------------------- > Remove restriction
  2605. a Agenda for current week or day e Export agenda views
  2606. t List of all TODO entries T Entries with special TODO kwd
  2607. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2608. s Search for keywords S Like s, but only TODO entries
  2609. L Timeline for current buffer # List stuck projects (!=configure)
  2610. / Multi-occur C Configure custom agenda commands
  2611. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2612. ")
  2613. (start 0))
  2614. (while (string-match
  2615. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2616. header start)
  2617. (setq start (match-end 0))
  2618. (add-text-properties (match-beginning 2) (match-end 2)
  2619. '(face bold) header))
  2620. header)))
  2621. (setq header-end (point-marker))
  2622. (while t
  2623. (setq custom1 custom)
  2624. (when (eq rmheader t)
  2625. (org-goto-line 1)
  2626. (re-search-forward ":" nil t)
  2627. (delete-region (match-end 0) (point-at-eol))
  2628. (forward-char 1)
  2629. (looking-at "-+")
  2630. (delete-region (match-end 0) (point-at-eol))
  2631. (move-marker header-end (match-end 0)))
  2632. (goto-char header-end)
  2633. (delete-region (point) (point-max))
  2634. ;; Produce all the lines that describe custom commands and prefixes
  2635. (setq lines nil)
  2636. (while (setq entry (pop custom1))
  2637. (setq key (car entry) desc (nth 1 entry)
  2638. type (nth 2 entry)
  2639. match (nth 3 entry))
  2640. (if (> (length key) 1)
  2641. (add-to-list 'prefixes (string-to-char key))
  2642. (setq line
  2643. (format
  2644. "%-4s%-14s"
  2645. (org-add-props (copy-sequence key)
  2646. '(face bold))
  2647. (cond
  2648. ((string-match "\\S-" desc) desc)
  2649. ((eq type 'agenda) "Agenda for current week or day")
  2650. ((eq type 'agenda*) "Appointments for current week or day")
  2651. ((eq type 'alltodo) "List of all TODO entries")
  2652. ((eq type 'search) "Word search")
  2653. ((eq type 'stuck) "List of stuck projects")
  2654. ((eq type 'todo) "TODO keyword")
  2655. ((eq type 'tags) "Tags query")
  2656. ((eq type 'tags-todo) "Tags (TODO)")
  2657. ((eq type 'tags-tree) "Tags tree")
  2658. ((eq type 'todo-tree) "TODO kwd tree")
  2659. ((eq type 'occur-tree) "Occur tree")
  2660. ((functionp type) (if (symbolp type)
  2661. (symbol-name type)
  2662. "Lambda expression"))
  2663. (t "???"))))
  2664. (if org-agenda-menu-show-matcher
  2665. (setq line
  2666. (concat line ": "
  2667. (cond
  2668. ((stringp match)
  2669. (setq match (copy-sequence match))
  2670. (org-add-props match nil 'face 'org-warning))
  2671. ((listp type)
  2672. (format "set of %d commands" (length type))))))
  2673. (if (org-string-nw-p match)
  2674. (add-text-properties
  2675. 0 (length line) (list 'help-echo
  2676. (concat "Matcher: " match)) line)))
  2677. (push line lines)))
  2678. (setq lines (nreverse lines))
  2679. (when prefixes
  2680. (mapc (lambda (x)
  2681. (push
  2682. (format "%s %s"
  2683. (org-add-props (char-to-string x)
  2684. nil 'face 'bold)
  2685. (or (cdr (assoc (concat selstring
  2686. (char-to-string x))
  2687. prefix-descriptions))
  2688. "Prefix key"))
  2689. lines))
  2690. prefixes))
  2691. ;; Check if we should display in two columns
  2692. (if org-agenda-menu-two-columns
  2693. (progn
  2694. (setq n (length lines)
  2695. n1 (+ (/ n 2) (mod n 2))
  2696. right (nthcdr n1 lines)
  2697. left (copy-sequence lines))
  2698. (setcdr (nthcdr (1- n1) left) nil))
  2699. (setq left lines right nil))
  2700. (while left
  2701. (insert "\n" (pop left))
  2702. (when right
  2703. (if (< (current-column) 40)
  2704. (move-to-column 40 t)
  2705. (insert " "))
  2706. (insert (pop right))))
  2707. ;; Make the window the right size
  2708. (goto-char (point-min))
  2709. (if second-time
  2710. (if (not (pos-visible-in-window-p (point-max)))
  2711. (org-fit-window-to-buffer))
  2712. (setq second-time t)
  2713. (org-fit-window-to-buffer))
  2714. ;; Ask for selection
  2715. (message "Press key for agenda command%s:"
  2716. (if (or restrict-ok org-agenda-overriding-restriction)
  2717. (if org-agenda-overriding-restriction
  2718. " (restriction lock active)"
  2719. (if restriction
  2720. (format " (restricted to %s)" restriction)
  2721. " (unrestricted)"))
  2722. ""))
  2723. (setq c (read-char-exclusive))
  2724. (message "")
  2725. (cond
  2726. ((assoc (char-to-string c) custom)
  2727. (setq selstring (concat selstring (char-to-string c)))
  2728. (throw 'exit (cons selstring restriction)))
  2729. ((memq c prefixes)
  2730. (setq selstring (concat selstring (char-to-string c))
  2731. prefixes nil
  2732. rmheader (or rmheader t)
  2733. custom (delq nil (mapcar
  2734. (lambda (x)
  2735. (if (or (= (length (car x)) 1)
  2736. (/= (string-to-char (car x)) c))
  2737. nil
  2738. (cons (substring (car x) 1) (cdr x))))
  2739. custom))))
  2740. ((eq c ?*)
  2741. (call-interactively 'org-toggle-sticky-agenda)
  2742. (sit-for 2))
  2743. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2744. (message "Restriction is only possible in Org-mode buffers")
  2745. (ding) (sit-for 1))
  2746. ((eq c ?1)
  2747. (org-agenda-remove-restriction-lock 'noupdate)
  2748. (setq restriction 'buffer))
  2749. ((eq c ?0)
  2750. (org-agenda-remove-restriction-lock 'noupdate)
  2751. (setq restriction (if region-p 'region 'subtree)))
  2752. ((eq c ?<)
  2753. (org-agenda-remove-restriction-lock 'noupdate)
  2754. (setq restriction
  2755. (cond
  2756. ((eq restriction 'buffer)
  2757. (if region-p 'region 'subtree))
  2758. ((memq restriction '(subtree region))
  2759. nil)
  2760. (t 'buffer))))
  2761. ((eq c ?>)
  2762. (org-agenda-remove-restriction-lock 'noupdate)
  2763. (setq restriction nil))
  2764. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2765. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2766. ((and (> (length selstring) 0) (eq c ?\d))
  2767. (delete-window)
  2768. (org-agenda-get-restriction-and-command prefix-descriptions))
  2769. ((equal c ?q) (error "Abort"))
  2770. (t (user-error "Invalid key %c" c))))))))
  2771. (defun org-agenda-fit-window-to-buffer ()
  2772. "Fit the window to the buffer size."
  2773. (and (memq org-agenda-window-setup '(reorganize-frame))
  2774. (fboundp 'fit-window-to-buffer)
  2775. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2776. (= (car org-agenda-window-frame-fractions) 1.0))
  2777. (delete-other-windows)
  2778. (org-fit-window-to-buffer
  2779. nil
  2780. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2781. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2782. (defvar org-cmd nil)
  2783. (defvar org-agenda-overriding-cmd nil)
  2784. (defvar org-agenda-overriding-arguments nil)
  2785. (defvar org-agenda-overriding-cmd-arguments nil)
  2786. (defun org-agenda-run-series (name series)
  2787. "Run agenda NAME as a SERIES of agenda commands."
  2788. (org-let (nth 1 series) '(org-agenda-prepare name))
  2789. ;; We need to reset agenda markers here, because when constructing a
  2790. ;; block agenda, the individual blocks do not do that.
  2791. (org-agenda-reset-markers)
  2792. (let* ((org-agenda-multi t)
  2793. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2794. (cmds (car series))
  2795. (gprops (nth 1 series))
  2796. match ;; The byte compiler incorrectly complains about this. Keep it!
  2797. org-cmd type lprops)
  2798. (while (setq org-cmd (pop cmds))
  2799. (setq type (car org-cmd)
  2800. match (eval (nth 1 org-cmd))
  2801. lprops (nth 2 org-cmd))
  2802. (let ((org-agenda-overriding-arguments
  2803. (if (eq org-agenda-overriding-cmd org-cmd)
  2804. (or org-agenda-overriding-arguments
  2805. org-agenda-overriding-cmd-arguments))))
  2806. (cond
  2807. ((eq type 'agenda)
  2808. (org-let2 gprops lprops
  2809. '(call-interactively 'org-agenda-list)))
  2810. ((eq type 'agenda*)
  2811. (org-let2 gprops lprops
  2812. '(funcall 'org-agenda-list nil nil t)))
  2813. ((eq type 'alltodo)
  2814. (org-let2 gprops lprops
  2815. '(call-interactively 'org-todo-list)))
  2816. ((eq type 'search)
  2817. (org-let2 gprops lprops
  2818. '(org-search-view current-prefix-arg match nil)))
  2819. ((eq type 'stuck)
  2820. (org-let2 gprops lprops
  2821. '(call-interactively 'org-agenda-list-stuck-projects)))
  2822. ((eq type 'tags)
  2823. (org-let2 gprops lprops
  2824. '(org-tags-view current-prefix-arg match)))
  2825. ((eq type 'tags-todo)
  2826. (org-let2 gprops lprops
  2827. '(org-tags-view '(4) match)))
  2828. ((eq type 'todo)
  2829. (org-let2 gprops lprops
  2830. '(org-todo-list match)))
  2831. ((fboundp type)
  2832. (org-let2 gprops lprops
  2833. '(funcall type match)))
  2834. (t (error "Invalid type in command series")))))
  2835. (widen)
  2836. (let ((inhibit-read-only t))
  2837. (add-text-properties (point-min) (point-max)
  2838. `(org-series t org-series-redo-cmd ,redo)))
  2839. (setq org-agenda-redo-command redo)
  2840. (goto-char (point-min)))
  2841. (org-agenda-fit-window-to-buffer)
  2842. (org-let (nth 1 series) '(org-agenda-finalize)))
  2843. ;;;###autoload
  2844. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2845. "Run an agenda command in batch mode and send the result to STDOUT.
  2846. If CMD-KEY is a string of length 1, it is used as a key in
  2847. `org-agenda-custom-commands' and triggers this command. If it is a
  2848. longer string it is used as a tags/todo match string.
  2849. Parameters are alternating variable names and values that will be bound
  2850. before running the agenda command."
  2851. (org-eval-in-environment (org-make-parameter-alist parameters)
  2852. (let (org-agenda-sticky)
  2853. (if (> (length cmd-key) 2)
  2854. (org-tags-view nil cmd-key)
  2855. (org-agenda nil cmd-key))))
  2856. (set-buffer org-agenda-buffer-name)
  2857. (princ (buffer-string)))
  2858. (defvar org-agenda-info nil)
  2859. ;;;###autoload
  2860. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2861. "Run an agenda command in batch mode and send the result to STDOUT.
  2862. If CMD-KEY is a string of length 1, it is used as a key in
  2863. `org-agenda-custom-commands' and triggers this command. If it is a
  2864. longer string it is used as a tags/todo match string.
  2865. Parameters are alternating variable names and values that will be bound
  2866. before running the agenda command.
  2867. The output gives a line for each selected agenda item. Each
  2868. item is a list of comma-separated values, like this:
  2869. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2870. category The category of the item
  2871. head The headline, without TODO kwd, TAGS and PRIORITY
  2872. type The type of the agenda entry, can be
  2873. todo selected in TODO match
  2874. tagsmatch selected in tags match
  2875. diary imported from diary
  2876. deadline a deadline on given date
  2877. scheduled scheduled on given date
  2878. timestamp entry has timestamp on given date
  2879. closed entry was closed on given date
  2880. upcoming-deadline warning about deadline
  2881. past-scheduled forwarded scheduled item
  2882. block entry has date block including g. date
  2883. todo The todo keyword, if any
  2884. tags All tags including inherited ones, separated by colons
  2885. date The relevant date, like 2007-2-14
  2886. time The time, like 15:00-16:50
  2887. extra Sting with extra planning info
  2888. priority-l The priority letter if any was given
  2889. priority-n The computed numerical priority
  2890. agenda-day The day in the agenda where this is listed"
  2891. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2892. (org-make-parameter-alist parameters))
  2893. (if (> (length cmd-key) 2)
  2894. (org-tags-view nil cmd-key)
  2895. (org-agenda nil cmd-key)))
  2896. (set-buffer org-agenda-buffer-name)
  2897. (let* ((lines (org-split-string (buffer-string) "\n"))
  2898. line)
  2899. (while (setq line (pop lines))
  2900. (catch 'next
  2901. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2902. (setq org-agenda-info
  2903. (org-fix-agenda-info (text-properties-at 0 line)))
  2904. (princ
  2905. (mapconcat 'org-agenda-export-csv-mapper
  2906. '(org-category txt type todo tags date time extra
  2907. priority-letter priority agenda-day)
  2908. ","))
  2909. (princ "\n")))))
  2910. (defun org-fix-agenda-info (props)
  2911. "Make sure all properties on an agenda item have a canonical form.
  2912. This ensures the export commands can easily use it."
  2913. (let (tmp re)
  2914. (when (setq tmp (plist-get props 'tags))
  2915. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2916. (when (setq tmp (plist-get props 'date))
  2917. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2918. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2919. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2920. (setq tmp (calendar-date-string tmp)))
  2921. (setq props (plist-put props 'date tmp)))
  2922. (when (setq tmp (plist-get props 'day))
  2923. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2924. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2925. (setq tmp (calendar-date-string tmp)))
  2926. (setq props (plist-put props 'day tmp))
  2927. (setq props (plist-put props 'agenda-day tmp)))
  2928. (when (setq tmp (plist-get props 'txt))
  2929. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2930. (plist-put props 'priority-letter (match-string 1 tmp))
  2931. (setq tmp (replace-match "" t t tmp)))
  2932. (when (and (setq re (plist-get props 'org-todo-regexp))
  2933. (setq re (concat "\\`\\.*" re " ?"))
  2934. (string-match re tmp))
  2935. (plist-put props 'todo (match-string 1 tmp))
  2936. (setq tmp (replace-match "" t t tmp)))
  2937. (plist-put props 'txt tmp)))
  2938. props)
  2939. (defun org-agenda-export-csv-mapper (prop)
  2940. (let ((res (plist-get org-agenda-info prop)))
  2941. (setq res
  2942. (cond
  2943. ((not res) "")
  2944. ((stringp res) res)
  2945. (t (prin1-to-string res))))
  2946. (while (string-match "," res)
  2947. (setq res (replace-match ";" t t res)))
  2948. (org-trim res)))
  2949. ;;;###autoload
  2950. (defun org-store-agenda-views (&rest parameters)
  2951. "Store agenda views."
  2952. (interactive)
  2953. (eval (list 'org-batch-store-agenda-views)))
  2954. ;;;###autoload
  2955. (defmacro org-batch-store-agenda-views (&rest parameters)
  2956. "Run all custom agenda commands that have a file argument."
  2957. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2958. (pop-up-frames nil)
  2959. (dir default-directory)
  2960. (pars (org-make-parameter-alist parameters))
  2961. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2962. (save-window-excursion
  2963. (while cmds
  2964. (setq cmd (pop cmds)
  2965. thiscmdkey (car cmd)
  2966. thiscmdcmd (cdr cmd)
  2967. match (nth 2 thiscmdcmd)
  2968. bufname (if org-agenda-sticky
  2969. (or (and (stringp match)
  2970. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2971. (format "*Org Agenda(%s)*" thiscmdkey))
  2972. org-agenda-buffer-name)
  2973. cmd-or-set (nth 2 cmd)
  2974. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2975. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2976. (if (stringp files) (setq files (list files)))
  2977. (when files
  2978. (org-eval-in-environment (append org-agenda-exporter-settings
  2979. opts pars)
  2980. (org-agenda nil thiscmdkey))
  2981. (set-buffer bufname)
  2982. (while files
  2983. (org-eval-in-environment (append org-agenda-exporter-settings
  2984. opts pars)
  2985. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2986. (and (get-buffer bufname)
  2987. (kill-buffer bufname)))))))
  2988. (defvar org-agenda-current-span nil
  2989. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2990. (defun org-agenda-mark-header-line (pos)
  2991. "Mark the line at POS as an agenda structure header."
  2992. (save-excursion
  2993. (goto-char pos)
  2994. (put-text-property (point-at-bol) (point-at-eol)
  2995. 'org-agenda-structural-header t)
  2996. (when org-agenda-title-append
  2997. (put-text-property (point-at-bol) (point-at-eol)
  2998. 'org-agenda-title-append org-agenda-title-append))))
  2999. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3000. (defvar org-agenda-write-buffer-name "Agenda View")
  3001. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3002. "Write the current buffer (an agenda view) as a file.
  3003. Depending on the extension of the file name, plain text (.txt),
  3004. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3005. If the extension is .ics, translate visible agenda into iCalendar
  3006. format. If the extension is .org, collect all subtrees
  3007. corresponding to the agenda entries and add them in an .org file.
  3008. With prefix argument OPEN, open the new file immediately. If
  3009. NOSETTINGS is given, do not scope the settings of
  3010. `org-agenda-exporter-settings' into the export commands. This is
  3011. used when the settings have already been scoped and we do not
  3012. wish to overrule other, higher priority settings. If
  3013. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3014. the agenda to write."
  3015. (interactive "FWrite agenda to file: \nP")
  3016. (if (or (not (file-writable-p file))
  3017. (and (file-exists-p file)
  3018. (if (org-called-interactively-p 'any)
  3019. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3020. (user-error "Cannot write agenda to file %s" file))
  3021. (org-let (if nosettings nil org-agenda-exporter-settings)
  3022. '(save-excursion
  3023. (save-window-excursion
  3024. (let ((bs (copy-sequence (buffer-string))) beg content)
  3025. (with-temp-buffer
  3026. (rename-buffer org-agenda-write-buffer-name t)
  3027. (set-buffer-modified-p nil)
  3028. (insert bs)
  3029. (org-agenda-remove-marked-text 'org-filtered)
  3030. (run-hooks 'org-agenda-before-write-hook)
  3031. (cond
  3032. ((org-bound-and-true-p org-mobile-creating-agendas)
  3033. (org-mobile-write-agenda-for-mobile file))
  3034. ((string-match "\\.org\\'" file)
  3035. (let (content p m message-log-max)
  3036. (goto-char (point-min))
  3037. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3038. (goto-char p)
  3039. (setq m (get-text-property (point) 'org-hd-marker))
  3040. (when m
  3041. (push (save-excursion
  3042. (set-buffer (marker-buffer m))
  3043. (goto-char m)
  3044. (org-copy-subtree 1 nil t t)
  3045. org-subtree-clip)
  3046. content)))
  3047. (find-file file)
  3048. (erase-buffer)
  3049. (dolist (s content) (org-paste-subtree 1 s))
  3050. (write-file file)
  3051. (kill-buffer (current-buffer))
  3052. (message "Org file written to %s" file)))
  3053. ((string-match "\\.html?\\'" file)
  3054. (require 'htmlize)
  3055. (set-buffer (htmlize-buffer (current-buffer)))
  3056. (when org-agenda-export-html-style
  3057. ;; replace <style> section with org-agenda-export-html-style
  3058. (goto-char (point-min))
  3059. (kill-region (- (search-forward "<style") 6)
  3060. (search-forward "</style>"))
  3061. (insert org-agenda-export-html-style))
  3062. (write-file file)
  3063. (kill-buffer (current-buffer))
  3064. (message "HTML written to %s" file))
  3065. ((string-match "\\.ps\\'" file)
  3066. (require 'ps-print)
  3067. (ps-print-buffer-with-faces file)
  3068. (message "Postscript written to %s" file))
  3069. ((string-match "\\.pdf\\'" file)
  3070. (require 'ps-print)
  3071. (ps-print-buffer-with-faces
  3072. (concat (file-name-sans-extension file) ".ps"))
  3073. (call-process "ps2pdf" nil nil nil
  3074. (expand-file-name
  3075. (concat (file-name-sans-extension file) ".ps"))
  3076. (expand-file-name file))
  3077. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3078. (message "PDF written to %s" file))
  3079. ((string-match "\\.ics\\'" file)
  3080. (require 'ox-icalendar)
  3081. (org-icalendar-export-current-agenda (expand-file-name file)))
  3082. (t
  3083. (let ((bs (buffer-string)))
  3084. (find-file file)
  3085. (erase-buffer)
  3086. (insert bs)
  3087. (save-buffer 0)
  3088. (kill-buffer (current-buffer))
  3089. (message "Plain text written to %s" file))))))))
  3090. (set-buffer (or agenda-bufname
  3091. (and (org-called-interactively-p 'any) (buffer-name))
  3092. org-agenda-buffer-name)))
  3093. (when open (org-open-file file)))
  3094. (defun org-agenda-remove-marked-text (property &optional value)
  3095. "Delete all text marked with VALUE of PROPERTY.
  3096. VALUE defaults to t."
  3097. (let (beg)
  3098. (setq value (or value t))
  3099. (while (setq beg (text-property-any (point-min) (point-max)
  3100. property value))
  3101. (delete-region
  3102. beg (or (next-single-property-change beg property)
  3103. (point-max))))))
  3104. (defun org-agenda-add-entry-text ()
  3105. "Add entry text to agenda lines.
  3106. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3107. entry text following headings shown in the agenda.
  3108. Drawers will be excluded, also the line with scheduling/deadline info."
  3109. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3110. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3111. (let (m txt)
  3112. (goto-char (point-min))
  3113. (while (not (eobp))
  3114. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3115. (beginning-of-line 2)
  3116. (setq txt (org-agenda-get-some-entry-text
  3117. m org-agenda-add-entry-text-maxlines " > "))
  3118. (end-of-line 1)
  3119. (if (string-match "\\S-" txt)
  3120. (insert "\n" txt)
  3121. (or (eobp) (forward-char 1))))))))
  3122. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3123. &rest keep)
  3124. "Extract entry text from MARKER, at most N-LINES lines.
  3125. This will ignore drawers etc, just get the text.
  3126. If INDENT is given, prefix every line with this string. If KEEP is
  3127. given, it is a list of symbols, defining stuff that should not be
  3128. removed from the entry content. Currently only `planning' is allowed here."
  3129. (let (txt drawer-re kwd-time-re ind)
  3130. (save-excursion
  3131. (with-current-buffer (marker-buffer marker)
  3132. (if (not (derived-mode-p 'org-mode))
  3133. (setq txt "")
  3134. (save-excursion
  3135. (save-restriction
  3136. (widen)
  3137. (goto-char marker)
  3138. (end-of-line 1)
  3139. (setq txt (buffer-substring
  3140. (min (1+ (point)) (point-max))
  3141. (progn (outline-next-heading) (point)))
  3142. drawer-re org-drawer-regexp
  3143. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3144. ".*\n?"))
  3145. (with-temp-buffer
  3146. (insert txt)
  3147. (when org-agenda-add-entry-text-descriptive-links
  3148. (goto-char (point-min))
  3149. (while (org-activate-bracket-links (point-max))
  3150. (add-text-properties (match-beginning 0) (match-end 0)
  3151. '(face org-link))))
  3152. (goto-char (point-min))
  3153. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3154. (set-text-properties (match-beginning 0) (match-end 0)
  3155. nil))
  3156. (goto-char (point-min))
  3157. (while (re-search-forward drawer-re nil t)
  3158. (delete-region
  3159. (match-beginning 0)
  3160. (progn (re-search-forward
  3161. "^[ \t]*:END:.*\n?" nil 'move)
  3162. (point))))
  3163. (unless (member 'planning keep)
  3164. (goto-char (point-min))
  3165. (while (re-search-forward kwd-time-re nil t)
  3166. (replace-match "")))
  3167. (goto-char (point-min))
  3168. (when org-agenda-entry-text-exclude-regexps
  3169. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3170. (while (setq re (pop re-list))
  3171. (goto-char (point-min))
  3172. (while (re-search-forward re nil t)
  3173. (replace-match "")))))
  3174. (goto-char (point-max))
  3175. (skip-chars-backward " \t\n")
  3176. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3177. ;; find and remove min common indentation
  3178. (goto-char (point-min))
  3179. (untabify (point-min) (point-max))
  3180. (setq ind (org-get-indentation))
  3181. (while (not (eobp))
  3182. (unless (looking-at "[ \t]*$")
  3183. (setq ind (min ind (org-get-indentation))))
  3184. (beginning-of-line 2))
  3185. (goto-char (point-min))
  3186. (while (not (eobp))
  3187. (unless (looking-at "[ \t]*$")
  3188. (move-to-column ind)
  3189. (delete-region (point-at-bol) (point)))
  3190. (beginning-of-line 2))
  3191. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3192. (goto-char (point-min))
  3193. (when indent
  3194. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3195. (replace-match indent t t)))
  3196. (goto-char (point-min))
  3197. (while (looking-at "[ \t]*\n") (replace-match ""))
  3198. (goto-char (point-max))
  3199. (when (> (org-current-line)
  3200. n-lines)
  3201. (org-goto-line (1+ n-lines))
  3202. (backward-char 1))
  3203. (setq txt (buffer-substring (point-min) (point)))))))))
  3204. txt))
  3205. (defun org-check-for-org-mode ()
  3206. "Make sure current buffer is in org-mode. Error if not."
  3207. (or (derived-mode-p 'org-mode)
  3208. (error "Cannot execute org-mode agenda command on buffer in %s"
  3209. major-mode)))
  3210. ;;; Agenda prepare and finalize
  3211. (defvar org-agenda-multi nil) ; dynamically scoped
  3212. (defvar org-agenda-pre-window-conf nil)
  3213. (defvar org-agenda-columns-active nil)
  3214. (defvar org-agenda-name nil)
  3215. (defvar org-agenda-tag-filter nil)
  3216. (defvar org-agenda-category-filter nil)
  3217. (defvar org-agenda-regexp-filter nil)
  3218. (defvar org-agenda-effort-filter nil)
  3219. (defvar org-agenda-top-headline-filter nil)
  3220. (defvar org-agenda-tag-filter-preset nil
  3221. "A preset of the tags filter used for secondary agenda filtering.
  3222. This must be a list of strings, each string must be a single tag preceded
  3223. by \"+\" or \"-\".
  3224. This variable should not be set directly, but agenda custom commands can
  3225. bind it in the options section. The preset filter is a global property of
  3226. the entire agenda view. In a block agenda, it will not work reliably to
  3227. define a filter for one of the individual blocks. You need to set it in
  3228. the global options and expect it to be applied to the entire view.")
  3229. (defvar org-agenda-category-filter-preset nil
  3230. "A preset of the category filter used for secondary agenda filtering.
  3231. This must be a list of strings, each string must be a single category
  3232. preceded by \"+\" or \"-\".
  3233. This variable should not be set directly, but agenda custom commands can
  3234. bind it in the options section. The preset filter is a global property of
  3235. the entire agenda view. In a block agenda, it will not work reliably to
  3236. define a filter for one of the individual blocks. You need to set it in
  3237. the global options and expect it to be applied to the entire view.")
  3238. (defvar org-agenda-regexp-filter-preset nil
  3239. "A preset of the regexp filter used for secondary agenda filtering.
  3240. This must be a list of strings, each string must be a single regexp
  3241. preceded by \"+\" or \"-\".
  3242. This variable should not be set directly, but agenda custom commands can
  3243. bind it in the options section. The preset filter is a global property of
  3244. the entire agenda view. In a block agenda, it will not work reliably to
  3245. define a filter for one of the individual blocks. You need to set it in
  3246. the global options and expect it to be applied to the entire view.")
  3247. (defvar org-agenda-effort-filter-preset nil
  3248. "A preset of the effort condition used for secondary agenda filtering.
  3249. This must be a list of strings, each string must be a single regexp
  3250. preceded by \"+\" or \"-\".
  3251. This variable should not be set directly, but agenda custom commands can
  3252. bind it in the options section. The preset filter is a global property of
  3253. the entire agenda view. In a block agenda, it will not work reliably to
  3254. define a filter for one of the individual blocks. You need to set it in
  3255. the global options and expect it to be applied to the entire view.")
  3256. (defun org-agenda-use-sticky-p ()
  3257. "Return non-nil if an agenda buffer named
  3258. `org-agenda-buffer-name' exists and should be shown instead of
  3259. generating a new one."
  3260. (and
  3261. ;; turned off by user
  3262. org-agenda-sticky
  3263. ;; For multi-agenda buffer already exists
  3264. (not org-agenda-multi)
  3265. ;; buffer found
  3266. (get-buffer org-agenda-buffer-name)
  3267. ;; C-u parameter is same as last call
  3268. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3269. (and
  3270. (equal current-prefix-arg
  3271. org-agenda-last-prefix-arg)
  3272. ;; In case user turned stickiness on, while having existing
  3273. ;; Agenda buffer active, don't reuse that buffer, because it
  3274. ;; does not have org variables local
  3275. org-agenda-this-buffer-is-sticky))))
  3276. (defun org-agenda-prepare-window (abuf filter-alist)
  3277. "Setup agenda buffer in the window.
  3278. ABUF is the buffer for the agenda window.
  3279. FILTER-ALIST is an alist of filters we need to apply when
  3280. `org-agenda-persistent-filter' is non-nil."
  3281. (let* ((awin (get-buffer-window abuf)) wconf)
  3282. (cond
  3283. ((equal (current-buffer) abuf) nil)
  3284. (awin (select-window awin))
  3285. ((not (setq wconf (current-window-configuration))))
  3286. ((equal org-agenda-window-setup 'current-window)
  3287. (org-pop-to-buffer-same-window abuf))
  3288. ((equal org-agenda-window-setup 'other-window)
  3289. (org-switch-to-buffer-other-window abuf))
  3290. ((equal org-agenda-window-setup 'other-frame)
  3291. (switch-to-buffer-other-frame abuf))
  3292. ((eq org-agenda-window-setup 'only-window)
  3293. (delete-other-windows)
  3294. (org-pop-to-buffer-same-window abuf))
  3295. ((equal org-agenda-window-setup 'reorganize-frame)
  3296. (delete-other-windows)
  3297. (org-switch-to-buffer-other-window abuf)))
  3298. (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
  3299. (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
  3300. (setq org-agenda-effort-filter (cdr (assoc 'effort filter-alist)))
  3301. (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
  3302. ;; Additional test in case agenda is invoked from within agenda
  3303. ;; buffer via elisp link.
  3304. (unless (equal (current-buffer) abuf)
  3305. (org-pop-to-buffer-same-window abuf))
  3306. (setq org-agenda-pre-window-conf
  3307. (or wconf org-agenda-pre-window-conf))))
  3308. (defun org-agenda-prepare (&optional name)
  3309. (let ((filter-alist (if org-agenda-persistent-filter
  3310. (list `(tag . ,org-agenda-tag-filter)
  3311. `(re . ,org-agenda-regexp-filter)
  3312. `(effort . ,org-agenda-effort-filter)
  3313. `(car . ,org-agenda-category-filter)))))
  3314. (if (org-agenda-use-sticky-p)
  3315. (progn
  3316. (put 'org-agenda-tag-filter :preset-filter nil)
  3317. (put 'org-agenda-category-filter :preset-filter nil)
  3318. (put 'org-agenda-regexp-filter :preset-filter nil)
  3319. ;; Popup existing buffer
  3320. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3321. filter-alist)
  3322. (message "Sticky Agenda buffer, use `r' to refresh")
  3323. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3324. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3325. (setq org-todo-keywords-for-agenda nil)
  3326. (put 'org-agenda-tag-filter :preset-filter
  3327. org-agenda-tag-filter-preset)
  3328. (put 'org-agenda-category-filter :preset-filter
  3329. org-agenda-category-filter-preset)
  3330. (put 'org-agenda-regexp-filter :preset-filter
  3331. org-agenda-regexp-filter-preset)
  3332. (put 'org-agenda-effort-filter :preset-filter
  3333. org-agenda-effort-filter-preset)
  3334. (if org-agenda-multi
  3335. (progn
  3336. (setq buffer-read-only nil)
  3337. (goto-char (point-max))
  3338. (unless (or (bobp) org-agenda-compact-blocks
  3339. (not org-agenda-block-separator))
  3340. (insert "\n"
  3341. (if (stringp org-agenda-block-separator)
  3342. org-agenda-block-separator
  3343. (make-string (window-width) org-agenda-block-separator))
  3344. "\n"))
  3345. (narrow-to-region (point) (point-max)))
  3346. (setq org-done-keywords-for-agenda nil)
  3347. ;; Setting any org variables that are in org-agenda-local-vars
  3348. ;; list need to be done after the prepare call
  3349. (org-agenda-prepare-window
  3350. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3351. (setq buffer-read-only nil)
  3352. (org-agenda-reset-markers)
  3353. (let ((inhibit-read-only t)) (erase-buffer))
  3354. (org-agenda-mode)
  3355. (setq org-agenda-buffer (current-buffer))
  3356. (setq org-agenda-contributing-files nil)
  3357. (setq org-agenda-columns-active nil)
  3358. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3359. (setq org-todo-keywords-for-agenda
  3360. (org-uniquify org-todo-keywords-for-agenda))
  3361. (setq org-done-keywords-for-agenda
  3362. (org-uniquify org-done-keywords-for-agenda))
  3363. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3364. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3365. (and name (not org-agenda-name)
  3366. (org-set-local 'org-agenda-name name)))
  3367. (setq buffer-read-only nil))))
  3368. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3369. (defun org-agenda-finalize ()
  3370. "Finishing touch for the agenda buffer, called just before displaying it."
  3371. (unless org-agenda-multi
  3372. (save-excursion
  3373. (let ((inhibit-read-only t))
  3374. (goto-char (point-min))
  3375. (save-excursion
  3376. (while (org-activate-bracket-links (point-max))
  3377. (add-text-properties (match-beginning 0) (match-end 0)
  3378. '(face org-link))))
  3379. (save-excursion
  3380. (while (org-activate-plain-links (point-max))
  3381. (add-text-properties (match-beginning 0) (match-end 0)
  3382. '(face org-link))))
  3383. (unless (eq org-agenda-remove-tags t)
  3384. (org-agenda-align-tags))
  3385. (unless org-agenda-with-colors
  3386. (remove-text-properties (point-min) (point-max) '(face nil)))
  3387. (if (and (boundp 'org-agenda-overriding-columns-format)
  3388. org-agenda-overriding-columns-format)
  3389. (org-set-local 'org-agenda-overriding-columns-format
  3390. org-agenda-overriding-columns-format))
  3391. (if (and (boundp 'org-agenda-view-columns-initially)
  3392. org-agenda-view-columns-initially)
  3393. (org-agenda-columns))
  3394. (when org-agenda-fontify-priorities
  3395. (org-agenda-fontify-priorities))
  3396. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3397. (org-agenda-dim-blocked-tasks))
  3398. (org-agenda-mark-clocking-task)
  3399. (when org-agenda-entry-text-mode
  3400. (org-agenda-entry-text-hide)
  3401. (org-agenda-entry-text-show))
  3402. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3403. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3404. (org-habit-insert-consistency-graphs))
  3405. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3406. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3407. (and (listp org-agenda-show-inherited-tags)
  3408. (memq org-agenda-type org-agenda-show-inherited-tags))
  3409. (and (eq org-agenda-show-inherited-tags t)
  3410. (or (eq org-agenda-use-tag-inheritance t)
  3411. (and (listp org-agenda-use-tag-inheritance)
  3412. (not (memq org-agenda-type
  3413. org-agenda-use-tag-inheritance))))))
  3414. (let (mrk)
  3415. (save-excursion
  3416. (goto-char (point-min))
  3417. (while (equal (forward-line) 0)
  3418. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3419. (put-text-property (point-at-bol) (point-at-eol)
  3420. 'tags (org-with-point-at mrk
  3421. (delete-dups
  3422. (mapcar 'downcase (org-get-tags-at))))))))))
  3423. (run-hooks 'org-agenda-finalize-hook)
  3424. (when org-agenda-top-headline-filter
  3425. (org-agenda-filter-top-headline-apply
  3426. org-agenda-top-headline-filter))
  3427. (when org-agenda-tag-filter
  3428. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3429. (when (get 'org-agenda-tag-filter :preset-filter)
  3430. (org-agenda-filter-apply
  3431. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3432. (when org-agenda-category-filter
  3433. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3434. (when (get 'org-agenda-category-filter :preset-filter)
  3435. (org-agenda-filter-apply
  3436. (get 'org-agenda-category-filter :preset-filter) 'category))
  3437. (when org-agenda-regexp-filter
  3438. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3439. (when (get 'org-agenda-regexp-filter :preset-filter)
  3440. (org-agenda-filter-apply
  3441. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3442. (when org-agenda-effort-filter
  3443. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3444. (when (get 'org-agenda-effort-filter :preset-filter)
  3445. (org-agenda-filter-apply
  3446. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3447. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3448. (defun org-agenda-mark-clocking-task ()
  3449. "Mark the current clock entry in the agenda if it is present."
  3450. ;; We need to widen when `org-agenda-finalize' is called from
  3451. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3452. (when org-clock-current-task
  3453. (save-restriction
  3454. (widen)
  3455. (org-agenda-unmark-clocking-task)
  3456. (when (marker-buffer org-clock-hd-marker)
  3457. (save-excursion
  3458. (goto-char (point-min))
  3459. (let (s ov)
  3460. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3461. (goto-char s)
  3462. (when (equal (org-get-at-bol 'org-hd-marker)
  3463. org-clock-hd-marker)
  3464. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3465. (overlay-put ov 'type 'org-agenda-clocking)
  3466. (overlay-put ov 'face 'org-agenda-clocking)
  3467. (overlay-put ov 'help-echo
  3468. "The clock is running in this item")))))))))
  3469. (defun org-agenda-unmark-clocking-task ()
  3470. "Unmark the current clocking task."
  3471. (mapc (lambda (o)
  3472. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3473. (delete-overlay o)))
  3474. (overlays-in (point-min) (point-max))))
  3475. (defun org-agenda-fontify-priorities ()
  3476. "Make highest priority lines bold, and lowest italic."
  3477. (interactive)
  3478. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3479. (delete-overlay o)))
  3480. (overlays-in (point-min) (point-max)))
  3481. (save-excursion
  3482. (let (b e p ov h l)
  3483. (goto-char (point-min))
  3484. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3485. (setq h (or (get-char-property (point) 'org-highest-priority)
  3486. org-highest-priority)
  3487. l (or (get-char-property (point) 'org-lowest-priority)
  3488. org-lowest-priority)
  3489. p (string-to-char (match-string 1))
  3490. b (match-beginning 0)
  3491. e (if (eq org-agenda-fontify-priorities 'cookies)
  3492. (match-end 0)
  3493. (point-at-eol))
  3494. ov (make-overlay b e))
  3495. (overlay-put
  3496. ov 'face
  3497. (cons (cond ((org-face-from-face-or-color
  3498. 'priority nil
  3499. (cdr (assoc p org-priority-faces))))
  3500. ((and (listp org-agenda-fontify-priorities)
  3501. (org-face-from-face-or-color
  3502. 'priority nil
  3503. (cdr (assoc p org-agenda-fontify-priorities)))))
  3504. ((equal p l) 'italic)
  3505. ((equal p h) 'bold))
  3506. 'org-priority))
  3507. (overlay-put ov 'org-type 'org-priority)))))
  3508. (defvar org-depend-tag-blocked)
  3509. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3510. "Dim currently blocked TODO's in the agenda display.
  3511. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3512. dimming them."
  3513. (interactive "P")
  3514. (when (org-called-interactively-p 'interactive)
  3515. (message "Dim or hide blocked tasks..."))
  3516. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3517. (delete-overlay o)))
  3518. (overlays-in (point-min) (point-max)))
  3519. (save-excursion
  3520. (let ((inhibit-read-only t)
  3521. (org-depend-tag-blocked nil)
  3522. (invis (or (not (null invisible))
  3523. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3524. org-blocked-by-checkboxes
  3525. invis1 b e p ov h l)
  3526. (goto-char (point-min))
  3527. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3528. (and pos (goto-char (1+ pos))))
  3529. (setq org-blocked-by-checkboxes nil invis1 invis)
  3530. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3531. (when (and marker
  3532. (with-current-buffer (marker-buffer marker)
  3533. (save-excursion (goto-char marker)
  3534. (org-entry-blocked-p))))
  3535. (if org-blocked-by-checkboxes (setq invis1 nil))
  3536. (setq b (if invis1
  3537. (max (point-min) (1- (point-at-bol)))
  3538. (point-at-bol))
  3539. e (point-at-eol)
  3540. ov (make-overlay b e))
  3541. (if invis1
  3542. (overlay-put ov 'invisible t)
  3543. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3544. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3545. (when (org-called-interactively-p 'interactive)
  3546. (message "Dim or hide blocked tasks...done")))
  3547. (defvar org-agenda-skip-function nil
  3548. "Function to be called at each match during agenda construction.
  3549. If this function returns nil, the current match should not be skipped.
  3550. Otherwise, the function must return a position from where the search
  3551. should be continued.
  3552. This may also be a Lisp form, it will be evaluated.
  3553. Never set this variable using `setq' or so, because then it will apply
  3554. to all future agenda commands. If you do want a global skipping condition,
  3555. use the option `org-agenda-skip-function-global' instead.
  3556. The correct usage for `org-agenda-skip-function' is to bind it with
  3557. `let' to scope it dynamically into the agenda-constructing command.
  3558. A good way to set it is through options in `org-agenda-custom-commands'.")
  3559. (defun org-agenda-skip ()
  3560. "Throw to `:skip' in places that should be skipped.
  3561. Also moves point to the end of the skipped region, so that search can
  3562. continue from there."
  3563. (let ((p (point-at-bol)) to)
  3564. (when (or
  3565. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3566. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3567. (get-text-property p :org-archived)
  3568. (org-end-of-subtree t))
  3569. (and org-agenda-skip-comment-trees
  3570. (get-text-property p :org-comment)
  3571. (org-end-of-subtree t))
  3572. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3573. (org-agenda-skip-eval org-agenda-skip-function)))
  3574. (goto-char to))
  3575. (org-in-src-block-p t))
  3576. (throw :skip t))))
  3577. (defun org-agenda-skip-eval (form)
  3578. "If FORM is a function or a list, call (or eval) it and return the result.
  3579. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3580. and match data are returned to the previous state no matter what these
  3581. functions do."
  3582. (let (fp)
  3583. (and form
  3584. (or (setq fp (functionp form))
  3585. (consp form))
  3586. (save-excursion
  3587. (save-match-data
  3588. (if fp
  3589. (funcall form)
  3590. (eval form)))))))
  3591. (defvar org-agenda-markers nil
  3592. "List of all currently active markers created by `org-agenda'.")
  3593. (defvar org-agenda-last-marker-time (org-float-time)
  3594. "Creation time of the last agenda marker.")
  3595. (defun org-agenda-new-marker (&optional pos)
  3596. "Return a new agenda marker.
  3597. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3598. these markers and resets them when they are no longer in use."
  3599. (let ((m (copy-marker (or pos (point)) t)))
  3600. (setq org-agenda-last-marker-time (org-float-time))
  3601. (if org-agenda-buffer
  3602. (with-current-buffer org-agenda-buffer
  3603. (push m org-agenda-markers))
  3604. (push m org-agenda-markers))
  3605. m))
  3606. (defun org-agenda-reset-markers ()
  3607. "Reset markers created by `org-agenda'."
  3608. (while org-agenda-markers
  3609. (move-marker (pop org-agenda-markers) nil)))
  3610. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3611. "Save relative positions of markers in region.
  3612. This check for agenda markers in all agenda buffers currently active."
  3613. (dolist (buf (buffer-list))
  3614. (with-current-buffer buf
  3615. (when (eq major-mode 'org-agenda-mode)
  3616. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3617. org-agenda-markers)))))
  3618. ;;; Entry text mode
  3619. (defun org-agenda-entry-text-show-here ()
  3620. "Add some text from the entry as context to the current line."
  3621. (let (m txt o)
  3622. (setq m (org-get-at-bol 'org-hd-marker))
  3623. (unless (marker-buffer m)
  3624. (error "No marker points to an entry here"))
  3625. (setq txt (concat "\n" (org-no-properties
  3626. (org-agenda-get-some-entry-text
  3627. m org-agenda-entry-text-maxlines
  3628. org-agenda-entry-text-leaders))))
  3629. (when (string-match "\\S-" txt)
  3630. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3631. (overlay-put o 'evaporate t)
  3632. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3633. (overlay-put o 'after-string txt))))
  3634. (defun org-agenda-entry-text-show ()
  3635. "Add entry context for all agenda lines."
  3636. (interactive)
  3637. (save-excursion
  3638. (goto-char (point-max))
  3639. (beginning-of-line 1)
  3640. (while (not (bobp))
  3641. (when (org-get-at-bol 'org-hd-marker)
  3642. (org-agenda-entry-text-show-here))
  3643. (beginning-of-line 0))))
  3644. (defun org-agenda-entry-text-hide ()
  3645. "Remove any shown entry context."
  3646. (delq nil
  3647. (mapcar (lambda (o)
  3648. (if (eq (overlay-get o 'org-overlay-type)
  3649. 'agenda-entry-content)
  3650. (progn (delete-overlay o) t)))
  3651. (overlays-in (point-min) (point-max)))))
  3652. (defun org-agenda-get-day-face (date)
  3653. "Return the face DATE should be displayed with."
  3654. (or (and (functionp org-agenda-day-face-function)
  3655. (funcall org-agenda-day-face-function date))
  3656. (cond ((org-agenda-todayp date)
  3657. 'org-agenda-date-today)
  3658. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3659. 'org-agenda-date-weekend)
  3660. (t 'org-agenda-date))))
  3661. ;;; Agenda timeline
  3662. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3663. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3664. (defun org-timeline (&optional dotodo)
  3665. "Show a time-sorted view of the entries in the current org file.
  3666. Only entries with a time stamp of today or later will be listed. With
  3667. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3668. under the current date.
  3669. If the buffer contains an active region, only check the region for
  3670. dates."
  3671. (interactive "P")
  3672. (let* ((dopast t)
  3673. (org-agenda-show-log-scoped org-agenda-show-log)
  3674. (org-agenda-show-log org-agenda-show-log-scoped)
  3675. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3676. (current-buffer))))
  3677. (date (calendar-current-date))
  3678. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3679. (end (if (org-region-active-p) (region-end) (point-max)))
  3680. (day-numbers (org-get-all-dates
  3681. beg end 'no-ranges
  3682. t org-agenda-show-log-scoped ; always include today
  3683. org-timeline-show-empty-dates))
  3684. (org-deadline-warning-days 0)
  3685. (org-agenda-only-exact-dates t)
  3686. (today (org-today))
  3687. (past t)
  3688. args
  3689. s e rtn d emptyp)
  3690. (setq org-agenda-redo-command
  3691. (list 'let
  3692. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3693. (list 'org-switch-to-buffer-other-window (current-buffer))
  3694. (list 'org-timeline (list 'quote dotodo))))
  3695. (put 'org-agenda-redo-command 'org-lprops nil)
  3696. (if (not dopast)
  3697. ;; Remove past dates from the list of dates.
  3698. (setq day-numbers (delq nil (mapcar (lambda(x)
  3699. (if (>= x today) x nil))
  3700. day-numbers))))
  3701. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3702. (org-compile-prefix-format 'timeline)
  3703. (org-set-sorting-strategy 'timeline)
  3704. (if org-agenda-show-log-scoped (push :closed args))
  3705. (push :timestamp args)
  3706. (push :deadline args)
  3707. (push :scheduled args)
  3708. (push :sexp args)
  3709. (if dotodo (push :todo args))
  3710. (insert "Timeline of file " entry "\n")
  3711. (add-text-properties (point-min) (point)
  3712. (list 'face 'org-agenda-structure))
  3713. (org-agenda-mark-header-line (point-min))
  3714. (while (setq d (pop day-numbers))
  3715. (if (and (listp d) (eq (car d) :omitted))
  3716. (progn
  3717. (setq s (point))
  3718. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3719. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3720. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3721. (if (and (>= d today)
  3722. dopast
  3723. past)
  3724. (progn
  3725. (setq past nil)
  3726. (insert (make-string 79 ?-) "\n")))
  3727. (setq date (calendar-gregorian-from-absolute d))
  3728. (setq s (point))
  3729. (setq rtn (and (not emptyp)
  3730. (apply 'org-agenda-get-day-entries entry
  3731. date args)))
  3732. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3733. (progn
  3734. (insert
  3735. (if (stringp org-agenda-format-date)
  3736. (format-time-string org-agenda-format-date
  3737. (org-time-from-absolute date))
  3738. (funcall org-agenda-format-date date))
  3739. "\n")
  3740. (put-text-property s (1- (point)) 'face
  3741. (org-agenda-get-day-face date))
  3742. (put-text-property s (1- (point)) 'org-date-line t)
  3743. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3744. (if (equal d today)
  3745. (put-text-property s (1- (point)) 'org-today t))
  3746. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3747. (put-text-property s (1- (point)) 'day d)))))
  3748. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3749. (point-min)))
  3750. (add-text-properties
  3751. (point-min) (point-max)
  3752. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3753. (org-agenda-finalize)
  3754. (setq buffer-read-only t)))
  3755. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3756. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3757. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3758. not every single day in the range. If FORCE-TODAY is non-nil, make
  3759. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3760. inactive time stamps (those in square brackets) are included.
  3761. When EMPTY is non-nil, also include days without any entries."
  3762. (let ((re (concat
  3763. (if pre-re pre-re "")
  3764. (if inactive org-ts-regexp-both org-ts-regexp)))
  3765. dates dates1 date day day1 day2 ts1 ts2 pos)
  3766. (if force-today
  3767. (setq dates (list (org-today))))
  3768. (save-excursion
  3769. (goto-char beg)
  3770. (while (re-search-forward re end t)
  3771. (setq day (time-to-days (org-time-string-to-time
  3772. (substring (match-string 1) 0 10)
  3773. (current-buffer) (match-beginning 0))))
  3774. (or (memq day dates) (push day dates)))
  3775. (unless no-ranges
  3776. (goto-char beg)
  3777. (while (re-search-forward org-tr-regexp end t)
  3778. (setq pos (match-beginning 0))
  3779. (setq ts1 (substring (match-string 1) 0 10)
  3780. ts2 (substring (match-string 2) 0 10)
  3781. day1 (time-to-days (org-time-string-to-time
  3782. ts1 (current-buffer) pos))
  3783. day2 (time-to-days (org-time-string-to-time
  3784. ts2 (current-buffer) pos)))
  3785. (while (< (setq day1 (1+ day1)) day2)
  3786. (or (memq day1 dates) (push day1 dates)))))
  3787. (setq dates (sort dates '<))
  3788. (when empty
  3789. (while (setq day (pop dates))
  3790. (setq day2 (car dates))
  3791. (push day dates1)
  3792. (when (and day2 empty)
  3793. (if (or (eq empty t)
  3794. (and (numberp empty) (<= (- day2 day) empty)))
  3795. (while (< (setq day (1+ day)) day2)
  3796. (push (list day) dates1))
  3797. (push (cons :omitted (- day2 day)) dates1))))
  3798. (setq dates (nreverse dates1)))
  3799. dates)))
  3800. ;;; Agenda Daily/Weekly
  3801. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3802. "Start day for the agenda view.
  3803. Custom commands can set this variable in the options section.
  3804. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3805. input allowed when reading a date through the Org calendar.
  3806. See the docstring of `org-read-date' for details.")
  3807. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3808. (defvar org-arg-loc nil) ; local variable
  3809. (defvar org-agenda-buffer-tmp-name nil)
  3810. ;;;###autoload
  3811. (defun org-agenda-list (&optional arg start-day span with-hour)
  3812. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3813. The view will be for the current day or week, but from the overview buffer
  3814. you will be able to go to other days/weeks.
  3815. With a numeric prefix argument in an interactive call, the agenda will
  3816. span ARG days. Lisp programs should instead specify SPAN to change
  3817. the number of days. SPAN defaults to `org-agenda-span'.
  3818. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3819. given in `org-agenda-start-on-weekday'.
  3820. When WITH-HOUR is non-nil, only include scheduled and deadline
  3821. items if they have an hour specification like [h]h:mm."
  3822. (interactive "P")
  3823. (if org-agenda-overriding-arguments
  3824. (setq arg (car org-agenda-overriding-arguments)
  3825. start-day (nth 1 org-agenda-overriding-arguments)
  3826. span (nth 2 org-agenda-overriding-arguments)))
  3827. (if (and (integerp arg) (> arg 0))
  3828. (setq span arg arg nil))
  3829. (catch 'exit
  3830. (setq org-agenda-buffer-name
  3831. (or org-agenda-buffer-tmp-name
  3832. (if org-agenda-sticky
  3833. (cond ((and org-keys (stringp org-match))
  3834. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3835. (org-keys
  3836. (format "*Org Agenda(%s)*" org-keys))
  3837. (t "*Org Agenda(a)*")))
  3838. org-agenda-buffer-name))
  3839. (org-agenda-prepare "Day/Week")
  3840. (setq start-day (or start-day org-agenda-start-day))
  3841. (if (stringp start-day)
  3842. ;; Convert to an absolute day number
  3843. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3844. (org-compile-prefix-format 'agenda)
  3845. (org-set-sorting-strategy 'agenda)
  3846. (let* ((span (org-agenda-ndays-to-span
  3847. (or span org-agenda-ndays org-agenda-span)))
  3848. (today (org-today))
  3849. (sd (or start-day today))
  3850. (ndays (org-agenda-span-to-ndays span sd))
  3851. (org-agenda-start-on-weekday
  3852. (if (or (eq ndays 7) (eq ndays 14))
  3853. org-agenda-start-on-weekday))
  3854. (thefiles (org-agenda-files nil 'ifmode))
  3855. (files thefiles)
  3856. (start (if (or (null org-agenda-start-on-weekday)
  3857. (< ndays 7))
  3858. sd
  3859. (let* ((nt (calendar-day-of-week
  3860. (calendar-gregorian-from-absolute sd)))
  3861. (n1 org-agenda-start-on-weekday)
  3862. (d (- nt n1)))
  3863. (- sd (+ (if (< d 0) 7 0) d)))))
  3864. (day-numbers (list start))
  3865. (day-cnt 0)
  3866. (inhibit-redisplay (not debug-on-error))
  3867. (org-agenda-show-log-scoped org-agenda-show-log)
  3868. s e rtn rtnall file date d start-pos end-pos todayp
  3869. clocktable-start clocktable-end filter)
  3870. (setq org-agenda-redo-command
  3871. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3872. (dotimes (n (1- ndays))
  3873. (push (1+ (car day-numbers)) day-numbers))
  3874. (setq day-numbers (nreverse day-numbers))
  3875. (setq clocktable-start (car day-numbers)
  3876. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3877. (org-set-local 'org-starting-day (car day-numbers))
  3878. (org-set-local 'org-arg-loc arg)
  3879. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3880. (unless org-agenda-compact-blocks
  3881. (let* ((d1 (car day-numbers))
  3882. (d2 (org-last day-numbers))
  3883. (w1 (org-days-to-iso-week d1))
  3884. (w2 (org-days-to-iso-week d2)))
  3885. (setq s (point))
  3886. (if org-agenda-overriding-header
  3887. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3888. nil 'face 'org-agenda-structure) "\n")
  3889. (insert (org-agenda-span-name span)
  3890. "-agenda"
  3891. (if (< (- d2 d1) 350)
  3892. (if (= w1 w2)
  3893. (format " (W%02d)" w1)
  3894. (format " (W%02d-W%02d)" w1 w2))
  3895. "")
  3896. ":\n")))
  3897. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3898. 'org-date-line t))
  3899. (org-agenda-mark-header-line s))
  3900. (while (setq d (pop day-numbers))
  3901. (setq date (calendar-gregorian-from-absolute d)
  3902. s (point))
  3903. (if (or (setq todayp (= d today))
  3904. (and (not start-pos) (= d sd)))
  3905. (setq start-pos (point))
  3906. (if (and start-pos (not end-pos))
  3907. (setq end-pos (point))))
  3908. (setq files thefiles
  3909. rtnall nil)
  3910. (while (setq file (pop files))
  3911. (catch 'nextfile
  3912. (org-check-agenda-file file)
  3913. (let ((org-agenda-entry-types org-agenda-entry-types))
  3914. ;; Starred types override non-starred equivalents
  3915. (when (member :deadline* org-agenda-entry-types)
  3916. (setq org-agenda-entry-types
  3917. (delq :deadline org-agenda-entry-types)))
  3918. (when (member :scheduled* org-agenda-entry-types)
  3919. (setq org-agenda-entry-types
  3920. (delq :scheduled org-agenda-entry-types)))
  3921. ;; Honor with-hour
  3922. (when with-hour
  3923. (when (member :deadline org-agenda-entry-types)
  3924. (setq org-agenda-entry-types
  3925. (delq :deadline org-agenda-entry-types))
  3926. (push :deadline* org-agenda-entry-types))
  3927. (when (member :scheduled org-agenda-entry-types)
  3928. (setq org-agenda-entry-types
  3929. (delq :scheduled org-agenda-entry-types))
  3930. (push :scheduled* org-agenda-entry-types)))
  3931. (unless org-agenda-include-deadlines
  3932. (setq org-agenda-entry-types
  3933. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3934. (cond
  3935. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3936. (setq rtn (org-agenda-get-day-entries
  3937. file date :closed)))
  3938. (org-agenda-show-log-scoped
  3939. (setq rtn (apply 'org-agenda-get-day-entries
  3940. file date
  3941. (append '(:closed) org-agenda-entry-types))))
  3942. (t
  3943. (setq rtn (apply 'org-agenda-get-day-entries
  3944. file date
  3945. org-agenda-entry-types)))))
  3946. (setq rtnall (append rtnall rtn)))) ;; all entries
  3947. (if org-agenda-include-diary
  3948. (let ((org-agenda-search-headline-for-time t))
  3949. (require 'diary-lib)
  3950. (setq rtn (org-get-entries-from-diary date))
  3951. (setq rtnall (append rtnall rtn))))
  3952. (if (or rtnall org-agenda-show-all-dates)
  3953. (progn
  3954. (setq day-cnt (1+ day-cnt))
  3955. (insert
  3956. (if (stringp org-agenda-format-date)
  3957. (format-time-string org-agenda-format-date
  3958. (org-time-from-absolute date))
  3959. (funcall org-agenda-format-date date))
  3960. "\n")
  3961. (put-text-property s (1- (point)) 'face
  3962. (org-agenda-get-day-face date))
  3963. (put-text-property s (1- (point)) 'org-date-line t)
  3964. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3965. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3966. (when todayp
  3967. (put-text-property s (1- (point)) 'org-today t))
  3968. (setq rtnall
  3969. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3970. (if rtnall (insert ;; all entries
  3971. (org-agenda-finalize-entries rtnall 'agenda)
  3972. "\n"))
  3973. (put-text-property s (1- (point)) 'day d)
  3974. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3975. (when (and org-agenda-clockreport-mode clocktable-start)
  3976. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3977. ;; the above line is to ensure the restricted range!
  3978. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3979. tbl)
  3980. (setq p (org-plist-delete p :block))
  3981. (setq p (plist-put p :tstart clocktable-start))
  3982. (setq p (plist-put p :tend clocktable-end))
  3983. (setq p (plist-put p :scope 'agenda))
  3984. (setq tbl (apply 'org-clock-get-clocktable p))
  3985. (insert tbl)))
  3986. (goto-char (point-min))
  3987. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3988. (unless (and (pos-visible-in-window-p (point-min))
  3989. (pos-visible-in-window-p (point-max)))
  3990. (goto-char (1- (point-max)))
  3991. (recenter -1)
  3992. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3993. (progn
  3994. (goto-char (or start-pos 1))
  3995. (recenter 1))))
  3996. (goto-char (or start-pos 1))
  3997. (add-text-properties (point-min) (point-max)
  3998. `(org-agenda-type agenda
  3999. org-last-args (,arg ,start-day ,span)
  4000. org-redo-cmd ,org-agenda-redo-command
  4001. org-series-cmd ,org-cmd))
  4002. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4003. (org-agenda-show-clocking-issues))
  4004. (org-agenda-finalize)
  4005. (setq buffer-read-only t)
  4006. (message ""))))
  4007. (defun org-agenda-ndays-to-span (n)
  4008. "Return a span symbol for a span of N days, or N if none matches."
  4009. (cond ((symbolp n) n)
  4010. ((= n 1) 'day)
  4011. ((= n 7) 'week)
  4012. ((= n 14) 'fortnight)
  4013. (t n)))
  4014. (defun org-agenda-span-to-ndays (span &optional start-day)
  4015. "Return ndays from SPAN, possibly starting at START-DAY.
  4016. START-DAY is an absolute time value."
  4017. (cond ((numberp span) span)
  4018. ((eq span 'day) 1)
  4019. ((eq span 'week) 7)
  4020. ((eq span 'fortnight) 14)
  4021. ((eq span 'month)
  4022. (let ((date (calendar-gregorian-from-absolute start-day)))
  4023. (calendar-last-day-of-month (car date) (caddr date))))
  4024. ((eq span 'year)
  4025. (let ((date (calendar-gregorian-from-absolute start-day)))
  4026. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4027. (defun org-agenda-span-name (span)
  4028. "Return a SPAN name."
  4029. (if (null span)
  4030. ""
  4031. (if (symbolp span)
  4032. (capitalize (symbol-name span))
  4033. (format "%d days" span))))
  4034. ;;; Agenda word search
  4035. (defvar org-agenda-search-history nil)
  4036. (defvar org-search-syntax-table nil
  4037. "Special syntax table for org-mode search.
  4038. In this table, we have single quotes not as word constituents, to
  4039. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4040. (defvar org-mode-syntax-table) ; From org.el
  4041. (defun org-search-syntax-table ()
  4042. (unless org-search-syntax-table
  4043. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4044. (modify-syntax-entry ?' "." org-search-syntax-table)
  4045. (modify-syntax-entry ?` "." org-search-syntax-table))
  4046. org-search-syntax-table)
  4047. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4048. ;;;###autoload
  4049. (defun org-search-view (&optional todo-only string edit-at)
  4050. "Show all entries that contain a phrase or words or regular expressions.
  4051. With optional prefix argument TODO-ONLY, only consider entries that are
  4052. TODO entries. The argument STRING can be used to pass a default search
  4053. string into this function. If EDIT-AT is non-nil, it means that the
  4054. user should get a chance to edit this string, with cursor at position
  4055. EDIT-AT.
  4056. The search string can be viewed either as a phrase that should be found as
  4057. is, or it can be broken into a number of snippets, each of which must match
  4058. in a Boolean way to select an entry. The default depends on the variable
  4059. `org-agenda-search-view-always-boolean'.
  4060. Even if this is turned off (the default) you can always switch to
  4061. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4062. The default is a direct search of the whole phrase, where each space in
  4063. the search string can expand to an arbitrary amount of whitespace,
  4064. including newlines.
  4065. If using a Boolean search, the search string is split on whitespace and
  4066. each snippet is searched separately, with logical AND to select an entry.
  4067. Words prefixed with a minus must *not* occur in the entry. Words without
  4068. a prefix or prefixed with a plus must occur in the entry. Matching is
  4069. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4070. match whole words, not parts of a word) if
  4071. `org-agenda-search-view-force-full-words' is set (default is nil).
  4072. Boolean search snippets enclosed by curly braces are interpreted as
  4073. regular expressions that must or (when preceded with \"-\") must not
  4074. match in the entry. Snippets enclosed into double quotes will be taken
  4075. as a whole, to include whitespace.
  4076. - If the search string starts with an asterisk, search only in headlines.
  4077. - If (possibly after the leading star) the search string starts with an
  4078. exclamation mark, this also means to look at TODO entries only, an effect
  4079. that can also be achieved with a prefix argument.
  4080. - If (possibly after star and exclamation mark) the search string starts
  4081. with a colon, this will mean that the (non-regexp) snippets of the
  4082. Boolean search must match as full words.
  4083. This command searches the agenda files, and in addition the files listed
  4084. in `org-agenda-text-search-extra-files'."
  4085. (interactive "P")
  4086. (if org-agenda-overriding-arguments
  4087. (setq todo-only (car org-agenda-overriding-arguments)
  4088. string (nth 1 org-agenda-overriding-arguments)
  4089. edit-at (nth 2 org-agenda-overriding-arguments)))
  4090. (let* ((props (list 'face nil
  4091. 'done-face 'org-agenda-done
  4092. 'org-not-done-regexp org-not-done-regexp
  4093. 'org-todo-regexp org-todo-regexp
  4094. 'org-complex-heading-regexp org-complex-heading-regexp
  4095. 'mouse-face 'highlight
  4096. 'help-echo (format "mouse-2 or RET jump to location")))
  4097. (full-words org-agenda-search-view-force-full-words)
  4098. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4099. regexp rtn rtnall files file pos inherited-tags
  4100. marker category level tags c neg re boolean
  4101. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4102. (unless (and (not edit-at)
  4103. (stringp string)
  4104. (string-match "\\S-" string))
  4105. (setq string (read-string
  4106. (if org-agenda-search-view-always-boolean
  4107. "[+-]Word/{Regexp} ...: "
  4108. "Phrase or [+-]Word/{Regexp} ...: ")
  4109. (cond
  4110. ((integerp edit-at) (cons string edit-at))
  4111. (edit-at string))
  4112. 'org-agenda-search-history)))
  4113. (catch 'exit
  4114. (if org-agenda-sticky
  4115. (setq org-agenda-buffer-name
  4116. (if (stringp string)
  4117. (format "*Org Agenda(%s:%s)*"
  4118. (or org-keys (or (and todo-only "S") "s")) string)
  4119. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4120. (org-agenda-prepare "SEARCH")
  4121. (org-compile-prefix-format 'search)
  4122. (org-set-sorting-strategy 'search)
  4123. (setq org-agenda-redo-command
  4124. (list 'org-search-view (if todo-only t nil)
  4125. (list 'if 'current-prefix-arg nil string)))
  4126. (setq org-agenda-query-string string)
  4127. (if (equal (string-to-char string) ?*)
  4128. (setq hdl-only t
  4129. words (substring string 1))
  4130. (setq words string))
  4131. (when (equal (string-to-char words) ?!)
  4132. (setq todo-only t
  4133. words (substring words 1)))
  4134. (when (equal (string-to-char words) ?:)
  4135. (setq full-words t
  4136. words (substring words 1)))
  4137. (if (or org-agenda-search-view-always-boolean
  4138. (member (string-to-char words) '(?- ?+ ?\{)))
  4139. (setq boolean t))
  4140. (setq words (org-split-string words))
  4141. (let (www w)
  4142. (while (setq w (pop words))
  4143. (while (and (string-match "\\\\\\'" w) words)
  4144. (setq w (concat (substring w 0 -1) " " (pop words))))
  4145. (push w www))
  4146. (setq words (nreverse www) www nil)
  4147. (while (setq w (pop words))
  4148. (when (and (string-match "\\`[-+]?{" w)
  4149. (not (string-match "}\\'" w)))
  4150. (while (and words (not (string-match "}\\'" (car words))))
  4151. (setq w (concat w " " (pop words))))
  4152. (setq w (concat w " " (pop words))))
  4153. (push w www))
  4154. (setq words (nreverse www)))
  4155. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4156. (when boolean
  4157. (let (wds w)
  4158. (while (setq w (pop words))
  4159. (if (or (equal (substring w 0 1) "\"")
  4160. (and (> (length w) 1)
  4161. (member (substring w 0 1) '("+" "-"))
  4162. (equal (substring w 1 2) "\"")))
  4163. (while (and words (not (equal (substring w -1) "\"")))
  4164. (setq w (concat w " " (pop words)))))
  4165. (and (string-match "\\`\\([-+]?\\)\"" w)
  4166. (setq w (replace-match "\\1" nil nil w)))
  4167. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4168. (push w wds))
  4169. (setq words (nreverse wds))))
  4170. (if boolean
  4171. (mapc (lambda (w)
  4172. (setq c (string-to-char w))
  4173. (if (equal c ?-)
  4174. (setq neg t w (substring w 1))
  4175. (if (equal c ?+)
  4176. (setq neg nil w (substring w 1))
  4177. (setq neg nil)))
  4178. (if (string-match "\\`{.*}\\'" w)
  4179. (setq re (substring w 1 -1))
  4180. (if full-words
  4181. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4182. (setq re (regexp-quote (downcase w)))))
  4183. (if neg (push re regexps-) (push re regexps+)))
  4184. words)
  4185. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4186. regexps+))
  4187. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4188. (if (not regexps+)
  4189. (setq regexp org-outline-regexp-bol)
  4190. (setq regexp (pop regexps+))
  4191. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4192. regexp))))
  4193. (setq files (org-agenda-files nil 'ifmode))
  4194. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4195. (pop org-agenda-text-search-extra-files)
  4196. (setq files (org-add-archive-files files)))
  4197. (setq files (append files org-agenda-text-search-extra-files)
  4198. rtnall nil)
  4199. (while (setq file (pop files))
  4200. (setq ee nil)
  4201. (catch 'nextfile
  4202. (org-check-agenda-file file)
  4203. (setq buffer (if (file-exists-p file)
  4204. (org-get-agenda-file-buffer file)
  4205. (error "No such file %s" file)))
  4206. (if (not buffer)
  4207. ;; If file does not exist, make sure an error message is sent
  4208. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4209. file))))
  4210. (with-current-buffer buffer
  4211. (with-syntax-table (org-search-syntax-table)
  4212. (unless (derived-mode-p 'org-mode)
  4213. (error "Agenda file %s is not in `org-mode'" file))
  4214. (let ((case-fold-search t))
  4215. (save-excursion
  4216. (save-restriction
  4217. (if (eq buffer org-agenda-restrict)
  4218. (narrow-to-region org-agenda-restrict-begin
  4219. org-agenda-restrict-end)
  4220. (widen))
  4221. (goto-char (point-min))
  4222. (unless (or (org-at-heading-p)
  4223. (outline-next-heading))
  4224. (throw 'nextfile t))
  4225. (goto-char (max (point-min) (1- (point))))
  4226. (while (re-search-forward regexp nil t)
  4227. (org-back-to-heading t)
  4228. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4229. (> (org-reduced-level (org-outline-level))
  4230. org-agenda-search-view-max-outline-level)
  4231. (forward-line -1)
  4232. (outline-back-to-heading t)))
  4233. (skip-chars-forward "* ")
  4234. (setq beg (point-at-bol)
  4235. beg1 (point)
  4236. end (progn
  4237. (outline-next-heading)
  4238. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4239. (> (org-reduced-level (org-outline-level))
  4240. org-agenda-search-view-max-outline-level)
  4241. (forward-line 1)
  4242. (outline-next-heading)))
  4243. (point)))
  4244. (catch :skip
  4245. (goto-char beg)
  4246. (org-agenda-skip)
  4247. (setq str (buffer-substring-no-properties
  4248. (point-at-bol)
  4249. (if hdl-only (point-at-eol) end)))
  4250. (mapc (lambda (wr) (when (string-match wr str)
  4251. (goto-char (1- end))
  4252. (throw :skip t)))
  4253. regexps-)
  4254. (mapc (lambda (wr) (unless (string-match wr str)
  4255. (goto-char (1- end))
  4256. (throw :skip t)))
  4257. (if todo-only
  4258. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  4259. regexps+)
  4260. regexps+))
  4261. (goto-char beg)
  4262. (setq marker (org-agenda-new-marker (point))
  4263. category (org-get-category)
  4264. level (make-string (org-reduced-level (org-outline-level)) ? )
  4265. inherited-tags
  4266. (or (eq org-agenda-show-inherited-tags 'always)
  4267. (and (listp org-agenda-show-inherited-tags)
  4268. (memq 'todo org-agenda-show-inherited-tags))
  4269. (and (eq org-agenda-show-inherited-tags t)
  4270. (or (eq org-agenda-use-tag-inheritance t)
  4271. (memq 'todo org-agenda-use-tag-inheritance))))
  4272. tags (org-get-tags-at nil (not inherited-tags))
  4273. txt (org-agenda-format-item
  4274. ""
  4275. (buffer-substring-no-properties
  4276. beg1 (point-at-eol))
  4277. level category tags t))
  4278. (org-add-props txt props
  4279. 'org-marker marker 'org-hd-marker marker
  4280. 'org-todo-regexp org-todo-regexp
  4281. 'level level
  4282. 'org-complex-heading-regexp org-complex-heading-regexp
  4283. 'priority 1000
  4284. 'type "search")
  4285. (push txt ee)
  4286. (goto-char (1- end))))))))))
  4287. (setq rtn (nreverse ee))
  4288. (setq rtnall (append rtnall rtn)))
  4289. (if org-agenda-overriding-header
  4290. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4291. nil 'face 'org-agenda-structure) "\n")
  4292. (insert "Search words: ")
  4293. (add-text-properties (point-min) (1- (point))
  4294. (list 'face 'org-agenda-structure))
  4295. (setq pos (point))
  4296. (insert string "\n")
  4297. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4298. (setq pos (point))
  4299. (unless org-agenda-multi
  4300. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  4301. (add-text-properties pos (1- (point))
  4302. (list 'face 'org-agenda-structure))))
  4303. (org-agenda-mark-header-line (point-min))
  4304. (when rtnall
  4305. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4306. (goto-char (point-min))
  4307. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4308. (add-text-properties (point-min) (point-max)
  4309. `(org-agenda-type search
  4310. org-last-args (,todo-only ,string ,edit-at)
  4311. org-redo-cmd ,org-agenda-redo-command
  4312. org-series-cmd ,org-cmd))
  4313. (org-agenda-finalize)
  4314. (setq buffer-read-only t))))
  4315. ;;; Agenda TODO list
  4316. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4317. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4318. (concat
  4319. (if (or (equal keywords "ALL") (not keywords))
  4320. (propertize "ALL" 'face 'warning)
  4321. (mapconcat
  4322. (lambda (kw)
  4323. (propertize kw 'face (org-get-todo-face kw)))
  4324. (org-split-string keywords "|")
  4325. "|"))
  4326. "\n"))
  4327. (defvar org-select-this-todo-keyword nil)
  4328. (defvar org-last-arg nil)
  4329. ;;;###autoload
  4330. (defun org-todo-list (&optional arg)
  4331. "Show all (not done) TODO entries from all agenda file in a single list.
  4332. The prefix arg can be used to select a specific TODO keyword and limit
  4333. the list to these. When using \\[universal-argument], you will be prompted
  4334. for a keyword. A numeric prefix directly selects the Nth keyword in
  4335. `org-todo-keywords-1'."
  4336. (interactive "P")
  4337. (if org-agenda-overriding-arguments
  4338. (setq arg org-agenda-overriding-arguments))
  4339. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4340. (let* ((today (org-today))
  4341. (date (calendar-gregorian-from-absolute today))
  4342. (kwds org-todo-keywords-for-agenda)
  4343. (completion-ignore-case t)
  4344. (org-select-this-todo-keyword
  4345. (if (stringp arg) arg
  4346. (and arg (integerp arg) (> arg 0)
  4347. (nth (1- arg) kwds))))
  4348. rtn rtnall files file pos)
  4349. (when (equal arg '(4))
  4350. (setq org-select-this-todo-keyword
  4351. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4352. (mapcar 'list kwds) nil nil)))
  4353. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4354. (catch 'exit
  4355. (if org-agenda-sticky
  4356. (setq org-agenda-buffer-name
  4357. (if (stringp org-select-this-todo-keyword)
  4358. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4359. org-select-this-todo-keyword)
  4360. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4361. (org-agenda-prepare "TODO")
  4362. (org-compile-prefix-format 'todo)
  4363. (org-set-sorting-strategy 'todo)
  4364. (setq org-agenda-redo-command
  4365. `(org-todo-list (or (and (numberp current-prefix-arg)
  4366. current-prefix-arg)
  4367. ,org-select-this-todo-keyword
  4368. current-prefix-arg ,arg)))
  4369. (setq files (org-agenda-files nil 'ifmode)
  4370. rtnall nil)
  4371. (while (setq file (pop files))
  4372. (catch 'nextfile
  4373. (org-check-agenda-file file)
  4374. (setq rtn (org-agenda-get-day-entries file date :todo))
  4375. (setq rtnall (append rtnall rtn))))
  4376. (if org-agenda-overriding-header
  4377. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4378. nil 'face 'org-agenda-structure) "\n")
  4379. (insert "Global list of TODO items of type: ")
  4380. (add-text-properties (point-min) (1- (point))
  4381. (list 'face 'org-agenda-structure
  4382. 'short-heading
  4383. (concat "ToDo: "
  4384. (or org-select-this-todo-keyword "ALL"))))
  4385. (org-agenda-mark-header-line (point-min))
  4386. (insert (org-agenda-propertize-selected-todo-keywords
  4387. org-select-this-todo-keyword))
  4388. (setq pos (point))
  4389. (unless org-agenda-multi
  4390. (insert "Available with `N r': (0)[ALL]")
  4391. (let ((n 0) s)
  4392. (mapc (lambda (x)
  4393. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4394. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4395. (insert "\n "))
  4396. (insert " " s))
  4397. kwds))
  4398. (insert "\n"))
  4399. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4400. (org-agenda-mark-header-line (point-min))
  4401. (when rtnall
  4402. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4403. (goto-char (point-min))
  4404. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4405. (add-text-properties (point-min) (point-max)
  4406. `(org-agenda-type todo
  4407. org-last-args ,arg
  4408. org-redo-cmd ,org-agenda-redo-command
  4409. org-series-cmd ,org-cmd))
  4410. (org-agenda-finalize)
  4411. (setq buffer-read-only t))))
  4412. ;;; Agenda tags match
  4413. ;;;###autoload
  4414. (defun org-tags-view (&optional todo-only match)
  4415. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4416. The prefix arg TODO-ONLY limits the search to TODO entries."
  4417. (interactive "P")
  4418. (if org-agenda-overriding-arguments
  4419. (setq todo-only (car org-agenda-overriding-arguments)
  4420. match (nth 1 org-agenda-overriding-arguments)))
  4421. (let* ((org-tags-match-list-sublevels
  4422. org-tags-match-list-sublevels)
  4423. (completion-ignore-case t)
  4424. rtn rtnall files file pos matcher
  4425. buffer)
  4426. (when (and (stringp match) (not (string-match "\\S-" match)))
  4427. (setq match nil))
  4428. (catch 'exit
  4429. (if org-agenda-sticky
  4430. (setq org-agenda-buffer-name
  4431. (if (stringp match)
  4432. (format "*Org Agenda(%s:%s)*"
  4433. (or org-keys (or (and todo-only "M") "m")) match)
  4434. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4435. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4436. ;; expanding tags within `org-make-tags-matcher'
  4437. (org-agenda-prepare (concat "TAGS " match))
  4438. (setq matcher (org-make-tags-matcher match)
  4439. match (car matcher) matcher (cdr matcher))
  4440. (org-compile-prefix-format 'tags)
  4441. (org-set-sorting-strategy 'tags)
  4442. (setq org-agenda-query-string match)
  4443. (setq org-agenda-redo-command
  4444. (list 'org-tags-view `(quote ,todo-only)
  4445. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4446. (setq files (org-agenda-files nil 'ifmode)
  4447. rtnall nil)
  4448. (while (setq file (pop files))
  4449. (catch 'nextfile
  4450. (org-check-agenda-file file)
  4451. (setq buffer (if (file-exists-p file)
  4452. (org-get-agenda-file-buffer file)
  4453. (error "No such file %s" file)))
  4454. (if (not buffer)
  4455. ;; If file does not exist, error message to agenda
  4456. (setq rtn (list
  4457. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4458. rtnall (append rtnall rtn))
  4459. (with-current-buffer buffer
  4460. (unless (derived-mode-p 'org-mode)
  4461. (error "Agenda file %s is not in `org-mode'" file))
  4462. (save-excursion
  4463. (save-restriction
  4464. (if (eq buffer org-agenda-restrict)
  4465. (narrow-to-region org-agenda-restrict-begin
  4466. org-agenda-restrict-end)
  4467. (widen))
  4468. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4469. (setq rtnall (append rtnall rtn))))))))
  4470. (if org-agenda-overriding-header
  4471. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4472. nil 'face 'org-agenda-structure) "\n")
  4473. (insert "Headlines with TAGS match: ")
  4474. (add-text-properties (point-min) (1- (point))
  4475. (list 'face 'org-agenda-structure
  4476. 'short-heading
  4477. (concat "Match: " match)))
  4478. (setq pos (point))
  4479. (insert match "\n")
  4480. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4481. (setq pos (point))
  4482. (unless org-agenda-multi
  4483. (insert "Press `C-u r' to search again with new search string\n"))
  4484. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4485. (org-agenda-mark-header-line (point-min))
  4486. (when rtnall
  4487. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4488. (goto-char (point-min))
  4489. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4490. (add-text-properties (point-min) (point-max)
  4491. `(org-agenda-type tags
  4492. org-last-args (,todo-only ,match)
  4493. org-redo-cmd ,org-agenda-redo-command
  4494. org-series-cmd ,org-cmd))
  4495. (org-agenda-finalize)
  4496. (setq buffer-read-only t))))
  4497. ;;; Agenda Finding stuck projects
  4498. (defvar org-agenda-skip-regexp nil
  4499. "Regular expression used in skipping subtrees for the agenda.
  4500. This is basically a temporary global variable that can be set and then
  4501. used by user-defined selections using `org-agenda-skip-function'.")
  4502. (defvar org-agenda-overriding-header nil
  4503. "When set during agenda, todo and tags searches it replaces the header.
  4504. This variable should not be set directly, but custom commands can bind it
  4505. in the options section.")
  4506. (defun org-agenda-skip-entry-when-regexp-matches ()
  4507. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4508. If yes, it returns the end position of this entry, causing agenda commands
  4509. to skip the entry but continuing the search in the subtree. This is a
  4510. function that can be put into `org-agenda-skip-function' for the duration
  4511. of a command."
  4512. (let ((end (save-excursion (org-end-of-subtree t)))
  4513. skip)
  4514. (save-excursion
  4515. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4516. (and skip end)))
  4517. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4518. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4519. If yes, it returns the end position of this tree, causing agenda commands
  4520. to skip this subtree. This is a function that can be put into
  4521. `org-agenda-skip-function' for the duration of a command."
  4522. (let ((end (save-excursion (org-end-of-subtree t)))
  4523. skip)
  4524. (save-excursion
  4525. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4526. (and skip end)))
  4527. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4528. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4529. If yes, it returns the end position of the current entry (NOT the tree),
  4530. causing agenda commands to skip the entry but continuing the search in
  4531. the subtree. This is a function that can be put into
  4532. `org-agenda-skip-function' for the duration of a command. An important
  4533. use of this function is for the stuck project list."
  4534. (let ((end (save-excursion (org-end-of-subtree t)))
  4535. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4536. skip)
  4537. (save-excursion
  4538. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4539. (and skip entry-end)))
  4540. (defun org-agenda-skip-entry-if (&rest conditions)
  4541. "Skip entry if any of CONDITIONS is true.
  4542. See `org-agenda-skip-if' for details."
  4543. (org-agenda-skip-if nil conditions))
  4544. (defun org-agenda-skip-subtree-if (&rest conditions)
  4545. "Skip subtree if any of CONDITIONS is true.
  4546. See `org-agenda-skip-if' for details."
  4547. (org-agenda-skip-if t conditions))
  4548. (defun org-agenda-skip-if (subtree conditions)
  4549. "Checks current entity for CONDITIONS.
  4550. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4551. the entry (i.e. the text before the next heading) is checked.
  4552. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4553. from different tests. Valid conditions are:
  4554. scheduled Check if there is a scheduled cookie
  4555. notscheduled Check if there is no scheduled cookie
  4556. deadline Check if there is a deadline
  4557. notdeadline Check if there is no deadline
  4558. timestamp Check if there is a timestamp (also deadline or scheduled)
  4559. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4560. regexp Check if regexp matches
  4561. notregexp Check if regexp does not match.
  4562. todo Check if TODO keyword matches
  4563. nottodo Check if TODO keyword does not match
  4564. The regexp is taken from the conditions list, it must come right after
  4565. the `regexp' or `notregexp' element.
  4566. `todo' and `nottodo' accept as an argument a list of todo
  4567. keywords, which may include \"*\" to match any todo keyword.
  4568. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4569. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4570. Instead of a list, a keyword class may be given. For example:
  4571. (org-agenda-skip-entry-if 'nottodo 'done)
  4572. would skip entries that haven't been marked with any of \"DONE\"
  4573. keywords. Possible classes are: `todo', `done', `any'.
  4574. If any of these conditions is met, this function returns the end point of
  4575. the entity, causing the search to continue from there. This is a function
  4576. that can be put into `org-agenda-skip-function' for the duration of a command."
  4577. (let (beg end m)
  4578. (org-back-to-heading t)
  4579. (setq beg (point)
  4580. end (if subtree
  4581. (progn (org-end-of-subtree t) (point))
  4582. (progn (outline-next-heading) (1- (point)))))
  4583. (goto-char beg)
  4584. (and
  4585. (or
  4586. (and (memq 'scheduled conditions)
  4587. (re-search-forward org-scheduled-time-regexp end t))
  4588. (and (memq 'notscheduled conditions)
  4589. (not (re-search-forward org-scheduled-time-regexp end t)))
  4590. (and (memq 'deadline conditions)
  4591. (re-search-forward org-deadline-time-regexp end t))
  4592. (and (memq 'notdeadline conditions)
  4593. (not (re-search-forward org-deadline-time-regexp end t)))
  4594. (and (memq 'timestamp conditions)
  4595. (re-search-forward org-ts-regexp end t))
  4596. (and (memq 'nottimestamp conditions)
  4597. (not (re-search-forward org-ts-regexp end t)))
  4598. (and (setq m (memq 'regexp conditions))
  4599. (stringp (nth 1 m))
  4600. (re-search-forward (nth 1 m) end t))
  4601. (and (setq m (memq 'notregexp conditions))
  4602. (stringp (nth 1 m))
  4603. (not (re-search-forward (nth 1 m) end t)))
  4604. (and (or
  4605. (setq m (memq 'nottodo conditions))
  4606. (setq m (memq 'todo-unblocked conditions))
  4607. (setq m (memq 'nottodo-unblocked conditions))
  4608. (setq m (memq 'todo conditions)))
  4609. (org-agenda-skip-if-todo m end)))
  4610. end)))
  4611. (defun org-agenda-skip-if-todo (args end)
  4612. "Helper function for `org-agenda-skip-if', do not use it directly.
  4613. ARGS is a list with first element either `todo', `nottodo',
  4614. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4615. a list of TODO keywords, or a state symbol `todo' or `done' or
  4616. `any'."
  4617. (let ((kw (car args))
  4618. (arg (cadr args))
  4619. todo-wds todo-re)
  4620. (setq todo-wds
  4621. (org-uniquify
  4622. (cond
  4623. ((listp arg) ;; list of keywords
  4624. (if (member "*" arg)
  4625. (mapcar 'substring-no-properties org-todo-keywords-1)
  4626. arg))
  4627. ((symbolp arg) ;; keyword class name
  4628. (cond
  4629. ((eq arg 'todo)
  4630. (org-delete-all org-done-keywords
  4631. (mapcar 'substring-no-properties
  4632. org-todo-keywords-1)))
  4633. ((eq arg 'done) org-done-keywords)
  4634. ((eq arg 'any)
  4635. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4636. (setq todo-re
  4637. (concat "^\\*+[ \t]+\\<\\("
  4638. (mapconcat 'identity todo-wds "\\|")
  4639. "\\)\\>"))
  4640. (cond
  4641. ((eq kw 'todo) (re-search-forward todo-re end t))
  4642. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4643. ((eq kw 'todo-unblocked)
  4644. (catch 'unblocked
  4645. (while (re-search-forward todo-re end t)
  4646. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4647. nil))
  4648. ((eq kw 'nottodo-unblocked)
  4649. (catch 'unblocked
  4650. (while (re-search-forward todo-re end t)
  4651. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4652. t))
  4653. )))
  4654. ;;;###autoload
  4655. (defun org-agenda-list-stuck-projects (&rest ignore)
  4656. "Create agenda view for projects that are stuck.
  4657. Stuck projects are project that have no next actions. For the definitions
  4658. of what a project is and how to check if it stuck, customize the variable
  4659. `org-stuck-projects'."
  4660. (interactive)
  4661. (let* ((org-agenda-skip-function
  4662. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4663. ;; We could have used org-agenda-skip-if here.
  4664. (org-agenda-overriding-header
  4665. (or org-agenda-overriding-header "List of stuck projects: "))
  4666. (matcher (nth 0 org-stuck-projects))
  4667. (todo (nth 1 org-stuck-projects))
  4668. (todo-wds (if (member "*" todo)
  4669. (progn
  4670. (org-agenda-prepare-buffers (org-agenda-files
  4671. nil 'ifmode))
  4672. (org-delete-all
  4673. org-done-keywords-for-agenda
  4674. (copy-sequence org-todo-keywords-for-agenda)))
  4675. todo))
  4676. (todo-re (concat "^\\*+[ \t]+\\("
  4677. (mapconcat 'identity todo-wds "\\|")
  4678. "\\)\\>"))
  4679. (tags (nth 2 org-stuck-projects))
  4680. (tags-re (if (member "*" tags)
  4681. (concat org-outline-regexp-bol
  4682. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4683. (if tags
  4684. (concat org-outline-regexp-bol
  4685. ".*:\\("
  4686. (mapconcat 'identity tags "\\|")
  4687. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4688. (gen-re (nth 3 org-stuck-projects))
  4689. (re-list
  4690. (delq nil
  4691. (list
  4692. (if todo todo-re)
  4693. (if tags tags-re)
  4694. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4695. gen-re)))))
  4696. (setq org-agenda-skip-regexp
  4697. (if re-list
  4698. (mapconcat 'identity re-list "\\|")
  4699. (error "No information how to identify unstuck projects")))
  4700. (org-tags-view nil matcher)
  4701. (setq org-agenda-buffer-name (buffer-name))
  4702. (with-current-buffer org-agenda-buffer-name
  4703. (setq org-agenda-redo-command
  4704. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4705. ;;; Diary integration
  4706. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4707. (defvar diary-list-entries-hook)
  4708. (defvar diary-time-regexp)
  4709. (defun org-get-entries-from-diary (date)
  4710. "Get the (Emacs Calendar) diary entries for DATE."
  4711. (require 'diary-lib)
  4712. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4713. (diary-display-function 'diary-fancy-display)
  4714. (pop-up-frames nil)
  4715. (diary-list-entries-hook
  4716. (cons 'org-diary-default-entry diary-list-entries-hook))
  4717. (diary-file-name-prefix nil) ; turn this feature off
  4718. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4719. entries
  4720. (org-disable-agenda-to-diary t))
  4721. (save-excursion
  4722. (save-window-excursion
  4723. (funcall (if (fboundp 'diary-list-entries)
  4724. 'diary-list-entries 'list-diary-entries)
  4725. date 1)))
  4726. (if (not (get-buffer diary-fancy-buffer))
  4727. (setq entries nil)
  4728. (with-current-buffer diary-fancy-buffer
  4729. (setq buffer-read-only nil)
  4730. (if (zerop (buffer-size))
  4731. ;; No entries
  4732. (setq entries nil)
  4733. ;; Omit the date and other unnecessary stuff
  4734. (org-agenda-cleanup-fancy-diary)
  4735. ;; Add prefix to each line and extend the text properties
  4736. (if (zerop (buffer-size))
  4737. (setq entries nil)
  4738. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4739. (setq entries
  4740. (with-temp-buffer
  4741. (insert entries) (goto-char (point-min))
  4742. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4743. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4744. (replace-match (concat "; " (match-string 1)))))
  4745. (buffer-string)))))
  4746. (set-buffer-modified-p nil)
  4747. (kill-buffer diary-fancy-buffer)))
  4748. (when entries
  4749. (setq entries (org-split-string entries "\n"))
  4750. (setq entries
  4751. (mapcar
  4752. (lambda (x)
  4753. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4754. ;; Extend the text properties to the beginning of the line
  4755. (org-add-props x (text-properties-at (1- (length x)) x)
  4756. 'type "diary" 'date date 'face 'org-agenda-diary))
  4757. entries)))))
  4758. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4759. "Hook run when the fancy diary buffer is cleaned up.")
  4760. (defun org-agenda-cleanup-fancy-diary ()
  4761. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4762. This gets rid of the date, the underline under the date, and
  4763. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4764. date. It also removes lines that contain only whitespace."
  4765. (goto-char (point-min))
  4766. (if (looking-at ".*?:[ \t]*")
  4767. (progn
  4768. (replace-match "")
  4769. (re-search-forward "\n=+$" nil t)
  4770. (replace-match "")
  4771. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4772. (re-search-forward "\n=+$" nil t)
  4773. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4774. (goto-char (point-min))
  4775. (while (re-search-forward "^ +\n" nil t)
  4776. (replace-match ""))
  4777. (goto-char (point-min))
  4778. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4779. (replace-match ""))
  4780. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4781. ;; Make sure entries from the diary have the right text properties.
  4782. (eval-after-load "diary-lib"
  4783. '(if (boundp 'diary-modify-entry-list-string-function)
  4784. ;; We can rely on the hook, nothing to do
  4785. nil
  4786. ;; Hook not available, must use advice to make this work
  4787. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4788. "Make the position visible."
  4789. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4790. (stringp string)
  4791. buffer-file-name)
  4792. (setq string (org-modify-diary-entry-string string))))))
  4793. (defun org-modify-diary-entry-string (string)
  4794. "Add text properties to string, allowing org-mode to act on it."
  4795. (org-add-props string nil
  4796. 'mouse-face 'highlight
  4797. 'help-echo (if buffer-file-name
  4798. (format "mouse-2 or RET jump to diary file %s"
  4799. (abbreviate-file-name buffer-file-name))
  4800. "")
  4801. 'org-agenda-diary-link t
  4802. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4803. (defun org-diary-default-entry ()
  4804. "Add a dummy entry to the diary.
  4805. Needed to avoid empty dates which mess up holiday display."
  4806. ;; Catch the error if dealing with the new add-to-diary-alist
  4807. (when org-disable-agenda-to-diary
  4808. (condition-case nil
  4809. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4810. (error
  4811. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4812. (defun org-add-to-diary-list (&rest args)
  4813. (if (fboundp 'diary-add-to-list)
  4814. (apply 'diary-add-to-list args)
  4815. (apply 'add-to-diary-list args)))
  4816. (defvar org-diary-last-run-time nil)
  4817. ;;;###autoload
  4818. (defun org-diary (&rest args)
  4819. "Return diary information from org files.
  4820. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4821. It accesses org files and extracts information from those files to be
  4822. listed in the diary. The function accepts arguments specifying what
  4823. items should be listed. For a list of arguments allowed here, see the
  4824. variable `org-agenda-entry-types'.
  4825. The call in the diary file should look like this:
  4826. &%%(org-diary) ~/path/to/some/orgfile.org
  4827. Use a separate line for each org file to check. Or, if you omit the file name,
  4828. all files listed in `org-agenda-files' will be checked automatically:
  4829. &%%(org-diary)
  4830. If you don't give any arguments (as in the example above), the default value
  4831. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4832. So the example above may also be written as
  4833. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4834. The function expects the lisp variables `entry' and `date' to be provided
  4835. by the caller, because this is how the calendar works. Don't use this
  4836. function from a program - use `org-agenda-get-day-entries' instead."
  4837. (when (> (- (org-float-time)
  4838. org-agenda-last-marker-time)
  4839. 5)
  4840. ;; I am not sure if this works with sticky agendas, because the marker
  4841. ;; list is then no longer a global variable.
  4842. (org-agenda-reset-markers))
  4843. (org-compile-prefix-format 'agenda)
  4844. (org-set-sorting-strategy 'agenda)
  4845. (setq args (or args org-agenda-entry-types))
  4846. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4847. (list entry)
  4848. (org-agenda-files t)))
  4849. (time (org-float-time))
  4850. file rtn results)
  4851. (when (or (not org-diary-last-run-time)
  4852. (> (- time
  4853. org-diary-last-run-time)
  4854. 3))
  4855. (org-agenda-prepare-buffers files))
  4856. (setq org-diary-last-run-time time)
  4857. ;; If this is called during org-agenda, don't return any entries to
  4858. ;; the calendar. Org Agenda will list these entries itself.
  4859. (if org-disable-agenda-to-diary (setq files nil))
  4860. (while (setq file (pop files))
  4861. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4862. (setq results (append results rtn)))
  4863. (when results
  4864. (setq results
  4865. (mapcar (lambda (i) (replace-regexp-in-string
  4866. org-bracket-link-regexp "\\3" i)) results))
  4867. (concat (org-agenda-finalize-entries results) "\n"))))
  4868. ;;; Agenda entry finders
  4869. (defun org-agenda-get-day-entries (file date &rest args)
  4870. "Does the work for `org-diary' and `org-agenda'.
  4871. FILE is the path to a file to be checked for entries. DATE is date like
  4872. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4873. which kind of entries should be extracted. For details about these, see
  4874. the documentation of `org-diary'."
  4875. (setq args (or args org-agenda-entry-types))
  4876. (let* ((org-startup-folded nil)
  4877. (org-startup-align-all-tables nil)
  4878. (buffer (if (file-exists-p file)
  4879. (org-get-agenda-file-buffer file)
  4880. (error "No such file %s" file)))
  4881. arg results rtn deadline-results)
  4882. (if (not buffer)
  4883. ;; If file does not exist, make sure an error message ends up in diary
  4884. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4885. (with-current-buffer buffer
  4886. (unless (derived-mode-p 'org-mode)
  4887. (error "Agenda file %s is not in `org-mode'" file))
  4888. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4889. (let ((case-fold-search nil))
  4890. (save-excursion
  4891. (save-restriction
  4892. (if (eq buffer org-agenda-restrict)
  4893. (narrow-to-region org-agenda-restrict-begin
  4894. org-agenda-restrict-end)
  4895. (widen))
  4896. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4897. (while (setq arg (pop args))
  4898. (cond
  4899. ((and (eq arg :todo)
  4900. (equal date (calendar-gregorian-from-absolute
  4901. (org-today))))
  4902. (setq rtn (org-agenda-get-todos))
  4903. (setq results (append results rtn)))
  4904. ((eq arg :timestamp)
  4905. (setq rtn (org-agenda-get-blocks))
  4906. (setq results (append results rtn))
  4907. (setq rtn (org-agenda-get-timestamps deadline-results))
  4908. (setq results (append results rtn)))
  4909. ((eq arg :sexp)
  4910. (setq rtn (org-agenda-get-sexps))
  4911. (setq results (append results rtn)))
  4912. ((eq arg :scheduled)
  4913. (setq rtn (org-agenda-get-scheduled deadline-results))
  4914. (setq results (append results rtn)))
  4915. ((eq arg :scheduled*)
  4916. (setq rtn (org-agenda-get-scheduled deadline-results t))
  4917. (setq results (append results rtn)))
  4918. ((eq arg :closed)
  4919. (setq rtn (org-agenda-get-progress))
  4920. (setq results (append results rtn)))
  4921. ((eq arg :deadline)
  4922. (setq rtn (org-agenda-get-deadlines))
  4923. (setq deadline-results (copy-sequence rtn))
  4924. (setq results (append results rtn)))
  4925. ((eq arg :deadline*)
  4926. (setq rtn (org-agenda-get-deadlines t))
  4927. (setq deadline-results (copy-sequence rtn))
  4928. (setq results (append results rtn))))))))
  4929. results))))
  4930. (defsubst org-em (x y list)
  4931. "Is X or Y a member of LIST?"
  4932. (or (memq x list) (memq y list)))
  4933. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4934. (defvar org-agenda-sorting-strategy-selected nil)
  4935. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4936. "Retrieve timestamp information for sorting agenda views.
  4937. Given a point or marker POM, returns a cons cell of the timestamp
  4938. and the timestamp type relevant for the sorting strategy in
  4939. `org-agenda-sorting-strategy-selected'."
  4940. (let (ts ts-date-type)
  4941. (save-match-data
  4942. (cond ((org-em 'scheduled-up 'scheduled-down
  4943. org-agenda-sorting-strategy-selected)
  4944. (setq ts (org-entry-get pom "SCHEDULED")
  4945. ts-date-type " scheduled"))
  4946. ((org-em 'deadline-up 'deadline-down
  4947. org-agenda-sorting-strategy-selected)
  4948. (setq ts (org-entry-get pom "DEADLINE")
  4949. ts-date-type " deadline"))
  4950. ((org-em 'ts-up 'ts-down
  4951. org-agenda-sorting-strategy-selected)
  4952. (setq ts (org-entry-get pom "TIMESTAMP")
  4953. ts-date-type " timestamp"))
  4954. ((org-em 'tsia-up 'tsia-down
  4955. org-agenda-sorting-strategy-selected)
  4956. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4957. ts-date-type " timestamp_ia"))
  4958. ((org-em 'timestamp-up 'timestamp-down
  4959. org-agenda-sorting-strategy-selected)
  4960. (setq ts (or (org-entry-get pom "SCHEDULED")
  4961. (org-entry-get pom "DEADLINE")
  4962. (org-entry-get pom "TIMESTAMP")
  4963. (org-entry-get pom "TIMESTAMP_IA"))
  4964. ts-date-type ""))
  4965. (t (setq ts-date-type "")))
  4966. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4967. ts-date-type))))
  4968. (defun org-agenda-get-todos ()
  4969. "Return the TODO information for agenda display."
  4970. (let* ((props (list 'face nil
  4971. 'done-face 'org-agenda-done
  4972. 'org-not-done-regexp org-not-done-regexp
  4973. 'org-todo-regexp org-todo-regexp
  4974. 'org-complex-heading-regexp org-complex-heading-regexp
  4975. 'mouse-face 'highlight
  4976. 'help-echo
  4977. (format "mouse-2 or RET jump to org file %s"
  4978. (abbreviate-file-name buffer-file-name))))
  4979. (regexp (format org-heading-keyword-regexp-format
  4980. (cond
  4981. ((and org-select-this-todo-keyword
  4982. (equal org-select-this-todo-keyword "*"))
  4983. org-todo-regexp)
  4984. (org-select-this-todo-keyword
  4985. (concat "\\("
  4986. (mapconcat 'identity
  4987. (org-split-string
  4988. org-select-this-todo-keyword
  4989. "|")
  4990. "\\|") "\\)"))
  4991. (t org-not-done-regexp))))
  4992. marker priority category level tags todo-state
  4993. ts-date ts-date-type ts-date-pair
  4994. ee txt beg end inherited-tags todo-state-end-pos)
  4995. (goto-char (point-min))
  4996. (while (re-search-forward regexp nil t)
  4997. (catch :skip
  4998. (save-match-data
  4999. (beginning-of-line)
  5000. (org-agenda-skip)
  5001. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5002. (unless (and (setq todo-state (org-get-todo-state))
  5003. (setq todo-state-end-pos (match-end 2)))
  5004. (goto-char end)
  5005. (throw :skip nil))
  5006. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5007. (goto-char (1+ beg))
  5008. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5009. (throw :skip nil)))
  5010. (goto-char (match-beginning 2))
  5011. (setq marker (org-agenda-new-marker (match-beginning 0))
  5012. category (org-get-category)
  5013. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5014. ts-date (car ts-date-pair)
  5015. ts-date-type (cdr ts-date-pair)
  5016. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5017. inherited-tags
  5018. (or (eq org-agenda-show-inherited-tags 'always)
  5019. (and (listp org-agenda-show-inherited-tags)
  5020. (memq 'todo org-agenda-show-inherited-tags))
  5021. (and (eq org-agenda-show-inherited-tags t)
  5022. (or (eq org-agenda-use-tag-inheritance t)
  5023. (memq 'todo org-agenda-use-tag-inheritance))))
  5024. tags (org-get-tags-at nil (not inherited-tags))
  5025. level (make-string (org-reduced-level (org-outline-level)) ? )
  5026. txt (org-agenda-format-item "" txt level category tags t)
  5027. priority (1+ (org-get-priority txt)))
  5028. (org-add-props txt props
  5029. 'org-marker marker 'org-hd-marker marker
  5030. 'priority priority
  5031. 'level level
  5032. 'ts-date ts-date
  5033. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5034. (push txt ee)
  5035. (if org-agenda-todo-list-sublevels
  5036. (goto-char todo-state-end-pos)
  5037. (org-end-of-subtree 'invisible))))
  5038. (nreverse ee)))
  5039. (defun org-agenda-todo-custom-ignore-p (time n)
  5040. "Check whether timestamp is farther away than n number of days.
  5041. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5042. `org-agenda-todo-ignore-scheduled' or
  5043. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5044. (let ((days (org-time-stamp-to-now
  5045. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5046. (if (>= n 0)
  5047. (>= days n)
  5048. (<= days n))))
  5049. ;;;###autoload
  5050. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5051. (&optional end)
  5052. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5053. (when (or org-agenda-todo-ignore-with-date
  5054. org-agenda-todo-ignore-scheduled
  5055. org-agenda-todo-ignore-deadlines
  5056. org-agenda-todo-ignore-timestamp)
  5057. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5058. (save-excursion
  5059. (or (and org-agenda-todo-ignore-with-date
  5060. (re-search-forward org-ts-regexp end t))
  5061. (and org-agenda-todo-ignore-scheduled
  5062. (re-search-forward org-scheduled-time-regexp end t)
  5063. (cond
  5064. ((eq org-agenda-todo-ignore-scheduled 'future)
  5065. (> (org-time-stamp-to-now
  5066. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5067. ((eq org-agenda-todo-ignore-scheduled 'past)
  5068. (<= (org-time-stamp-to-now
  5069. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5070. ((numberp org-agenda-todo-ignore-scheduled)
  5071. (org-agenda-todo-custom-ignore-p
  5072. (match-string 1) org-agenda-todo-ignore-scheduled))
  5073. (t)))
  5074. (and org-agenda-todo-ignore-deadlines
  5075. (re-search-forward org-deadline-time-regexp end t)
  5076. (cond
  5077. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5078. ((eq org-agenda-todo-ignore-deadlines 'far)
  5079. (not (org-deadline-close (match-string 1))))
  5080. ((eq org-agenda-todo-ignore-deadlines 'future)
  5081. (> (org-time-stamp-to-now
  5082. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5083. ((eq org-agenda-todo-ignore-deadlines 'past)
  5084. (<= (org-time-stamp-to-now
  5085. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5086. ((numberp org-agenda-todo-ignore-deadlines)
  5087. (org-agenda-todo-custom-ignore-p
  5088. (match-string 1) org-agenda-todo-ignore-deadlines))
  5089. (t (org-deadline-close (match-string 1)))))
  5090. (and org-agenda-todo-ignore-timestamp
  5091. (let ((buffer (current-buffer))
  5092. (regexp
  5093. (concat
  5094. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5095. (start (point)))
  5096. ;; Copy current buffer into a temporary one
  5097. (with-temp-buffer
  5098. (insert-buffer-substring buffer start end)
  5099. (goto-char (point-min))
  5100. ;; Delete SCHEDULED and DEADLINE items
  5101. (while (re-search-forward regexp end t)
  5102. (delete-region (match-beginning 0) (match-end 0)))
  5103. (goto-char (point-min))
  5104. ;; No search for timestamp left
  5105. (when (re-search-forward org-ts-regexp nil t)
  5106. (cond
  5107. ((eq org-agenda-todo-ignore-timestamp '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-timestamp '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-timestamp)
  5114. (org-agenda-todo-custom-ignore-p
  5115. (match-string 1) org-agenda-todo-ignore-timestamp))
  5116. (t))))))))))
  5117. (defun org-agenda-get-timestamps (&optional deadline-results)
  5118. "Return the date stamp information for agenda display."
  5119. (let* ((props (list 'face 'org-agenda-calendar-event
  5120. 'org-not-done-regexp org-not-done-regexp
  5121. 'org-todo-regexp org-todo-regexp
  5122. 'org-complex-heading-regexp org-complex-heading-regexp
  5123. 'mouse-face 'highlight
  5124. 'help-echo
  5125. (format "mouse-2 or RET jump to org file %s"
  5126. (abbreviate-file-name buffer-file-name))))
  5127. (d1 (calendar-absolute-from-gregorian date))
  5128. mm
  5129. (deadline-position-alist
  5130. (mapcar (lambda (a) (and (setq mm (get-text-property
  5131. 0 'org-hd-marker a))
  5132. (cons (marker-position mm) a)))
  5133. deadline-results))
  5134. (remove-re org-ts-regexp)
  5135. (regexp
  5136. (concat
  5137. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5138. (regexp-quote
  5139. (substring
  5140. (format-time-string
  5141. (car org-time-stamp-formats)
  5142. (apply 'encode-time ; DATE bound by calendar
  5143. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5144. 1 11))
  5145. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5146. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5147. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5148. donep tmp priority category level ee txt timestr tags
  5149. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5150. inherited-tags ts-date)
  5151. (goto-char (point-min))
  5152. (while (setq end-of-match (re-search-forward regexp nil t))
  5153. (setq b0 (match-beginning 0)
  5154. b3 (match-beginning 3) e3 (match-end 3)
  5155. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5156. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5157. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5158. (member todo-state
  5159. org-agenda-repeating-timestamp-show-all)))
  5160. (catch :skip
  5161. (and (org-at-date-range-p) (throw :skip nil))
  5162. (org-agenda-skip)
  5163. (if (and (match-end 1)
  5164. (not (= d1 (org-time-string-to-absolute
  5165. (match-string 1) d1 nil show-all
  5166. (current-buffer) b0))))
  5167. (throw :skip nil))
  5168. (if (and e3
  5169. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5170. (throw :skip nil))
  5171. (setq tmp (buffer-substring (max (point-min)
  5172. (- b0 org-ds-keyword-length))
  5173. b0)
  5174. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5175. inactivep (= (char-after b0) ?\[)
  5176. deadlinep (string-match org-deadline-regexp tmp)
  5177. scheduledp (string-match org-scheduled-regexp tmp)
  5178. closedp (and org-agenda-include-inactive-timestamps
  5179. (string-match org-closed-string tmp))
  5180. clockp (and org-agenda-include-inactive-timestamps
  5181. (or (string-match org-clock-string tmp)
  5182. (string-match "]-+\\'" tmp)))
  5183. warntime (get-text-property (point) 'org-appt-warntime)
  5184. donep (member todo-state org-done-keywords))
  5185. (if (or scheduledp deadlinep closedp clockp
  5186. (and donep org-agenda-skip-timestamp-if-done))
  5187. (throw :skip t))
  5188. (if (string-match ">" timestr)
  5189. ;; substring should only run to end of time stamp
  5190. (setq timestr (substring timestr 0 (match-end 0))))
  5191. (setq marker (org-agenda-new-marker b0)
  5192. category (org-get-category b0))
  5193. (save-excursion
  5194. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5195. (throw :skip nil)
  5196. (goto-char (match-beginning 0))
  5197. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5198. (assoc (point) deadline-position-alist))
  5199. (throw :skip nil))
  5200. (setq hdmarker (org-agenda-new-marker)
  5201. inherited-tags
  5202. (or (eq org-agenda-show-inherited-tags 'always)
  5203. (and (listp org-agenda-show-inherited-tags)
  5204. (memq 'agenda org-agenda-show-inherited-tags))
  5205. (and (eq org-agenda-show-inherited-tags t)
  5206. (or (eq org-agenda-use-tag-inheritance t)
  5207. (memq 'agenda org-agenda-use-tag-inheritance))))
  5208. tags (org-get-tags-at nil (not inherited-tags))
  5209. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5210. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5211. (setq head (or (match-string 1) ""))
  5212. (setq txt (org-agenda-format-item
  5213. (if inactivep org-agenda-inactive-leader nil)
  5214. head level category tags timestr
  5215. remove-re habitp)))
  5216. (setq priority (org-get-priority txt))
  5217. (org-add-props txt props 'priority priority
  5218. 'org-marker marker 'org-hd-marker hdmarker
  5219. 'date date
  5220. 'level level
  5221. 'ts-date
  5222. (ignore-errors (org-time-string-to-absolute timestr))
  5223. 'todo-state todo-state
  5224. 'warntime warntime
  5225. 'type "timestamp")
  5226. (push txt ee))
  5227. (if org-agenda-skip-additional-timestamps-same-entry
  5228. (outline-next-heading)
  5229. (goto-char end-of-match))))
  5230. (nreverse ee)))
  5231. (defun org-agenda-get-sexps ()
  5232. "Return the sexp information for agenda display."
  5233. (require 'diary-lib)
  5234. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5235. 'mouse-face 'highlight
  5236. 'help-echo
  5237. (format "mouse-2 or RET jump to org file %s"
  5238. (abbreviate-file-name buffer-file-name))))
  5239. (regexp "^&?%%(")
  5240. marker category extra level ee txt tags entry
  5241. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5242. (goto-char (point-min))
  5243. (while (re-search-forward regexp nil t)
  5244. (catch :skip
  5245. (org-agenda-skip)
  5246. (setq beg (match-beginning 0))
  5247. (goto-char (1- (match-end 0)))
  5248. (setq b (point))
  5249. (forward-sexp 1)
  5250. (setq sexp (buffer-substring b (point)))
  5251. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5252. (org-trim (match-string 1))
  5253. ""))
  5254. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5255. (when result
  5256. (setq marker (org-agenda-new-marker beg)
  5257. level (make-string (org-reduced-level (org-outline-level)) ? )
  5258. category (org-get-category beg)
  5259. inherited-tags
  5260. (or (eq org-agenda-show-inherited-tags 'always)
  5261. (and (listp org-agenda-show-inherited-tags)
  5262. (memq 'agenda org-agenda-show-inherited-tags))
  5263. (and (eq org-agenda-show-inherited-tags t)
  5264. (or (eq org-agenda-use-tag-inheritance t)
  5265. (memq 'agenda org-agenda-use-tag-inheritance))))
  5266. tags (org-get-tags-at nil (not inherited-tags))
  5267. todo-state (org-get-todo-state)
  5268. warntime (get-text-property (point) 'org-appt-warntime)
  5269. extra nil)
  5270. (dolist (r (if (stringp result)
  5271. (list result)
  5272. result)) ;; we expect a list here
  5273. (when (and org-agenda-diary-sexp-prefix
  5274. (string-match org-agenda-diary-sexp-prefix r))
  5275. (setq extra (match-string 0 r)
  5276. r (replace-match "" nil nil r)))
  5277. (if (string-match "\\S-" r)
  5278. (setq txt r)
  5279. (setq txt "SEXP entry returned empty string"))
  5280. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5281. (org-add-props txt props 'org-marker marker
  5282. 'date date 'todo-state todo-state
  5283. 'level level 'type "sexp" 'warntime warntime)
  5284. (push txt ee)))))
  5285. (nreverse ee)))
  5286. ;; Calendar sanity: define some functions that are independent of
  5287. ;; `calendar-date-style'.
  5288. ;; Normally I would like to use ISO format when calling the diary functions,
  5289. ;; but to make sure we still have Emacs 22 compatibility we bind
  5290. ;; also `european-calendar-style' and use european format
  5291. (defun org-anniversary (year month day &optional mark)
  5292. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5293. (org-no-warnings
  5294. (let ((calendar-date-style 'european) (european-calendar-style t))
  5295. (diary-anniversary day month year mark))))
  5296. (defun org-cyclic (N year month day &optional mark)
  5297. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5298. (org-no-warnings
  5299. (let ((calendar-date-style 'european) (european-calendar-style t))
  5300. (diary-cyclic N day month year mark))))
  5301. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5302. "Like `diary-block', but with fixed (ISO) order of arguments."
  5303. (org-no-warnings
  5304. (let ((calendar-date-style 'european) (european-calendar-style t))
  5305. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5306. (defun org-date (year month day &optional mark)
  5307. "Like `diary-date', but with fixed (ISO) order of arguments."
  5308. (org-no-warnings
  5309. (let ((calendar-date-style 'european) (european-calendar-style t))
  5310. (diary-date day month year mark))))
  5311. ;; Define the` org-class' function
  5312. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5313. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5314. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5315. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5316. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5317. `holidays', then any date that is known by the Emacs calendar to be a
  5318. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5319. then those holidays will be skipped."
  5320. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5321. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5322. (d (calendar-absolute-from-gregorian date))
  5323. (h (when skip-weeks (calendar-check-holidays date))))
  5324. (and
  5325. (<= date1 d)
  5326. (<= d date2)
  5327. (= (calendar-day-of-week date) dayname)
  5328. (or (not skip-weeks)
  5329. (progn
  5330. (require 'cal-iso)
  5331. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5332. (not (or (and h (memq 'holidays skip-weeks))
  5333. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5334. entry)))
  5335. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5336. "Like `org-class', but honor `calendar-date-style'.
  5337. The order of the first 2 times 3 arguments depends on the variable
  5338. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5339. So for American calendars, give this as MONTH DAY YEAR, for European as
  5340. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5341. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5342. is any number of ISO weeks in the block period for which the item should
  5343. be skipped.
  5344. This function is here only for backward compatibility and it is deprecated,
  5345. please use `org-class' instead."
  5346. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5347. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5348. (org-class
  5349. (nth 2 date1) (car date1) (nth 1 date1)
  5350. (nth 2 date2) (car date2) (nth 1 date2)
  5351. dayname skip-weeks)))
  5352. (make-obsolete 'org-diary-class 'org-class "")
  5353. (defalias 'org-get-closed 'org-agenda-get-progress)
  5354. (defun org-agenda-get-progress ()
  5355. "Return the logged TODO entries for agenda display."
  5356. (let* ((props (list 'mouse-face 'highlight
  5357. 'org-not-done-regexp org-not-done-regexp
  5358. 'org-todo-regexp org-todo-regexp
  5359. 'org-complex-heading-regexp org-complex-heading-regexp
  5360. 'help-echo
  5361. (format "mouse-2 or RET jump to org file %s"
  5362. (abbreviate-file-name buffer-file-name))))
  5363. (items (if (consp org-agenda-show-log-scoped)
  5364. org-agenda-show-log-scoped
  5365. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5366. '(clock)
  5367. org-agenda-log-mode-items)))
  5368. (parts
  5369. (delq nil
  5370. (list
  5371. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5372. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5373. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5374. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5375. (error "`org-agenda-log-mode-items' is empty")))
  5376. (regexp (concat
  5377. "\\(" parts-re "\\)"
  5378. " *\\["
  5379. (regexp-quote
  5380. (substring
  5381. (format-time-string
  5382. (car org-time-stamp-formats)
  5383. (apply 'encode-time ; DATE bound by calendar
  5384. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5385. 1 11))))
  5386. (org-agenda-search-headline-for-time nil)
  5387. marker hdmarker priority category level tags closedp
  5388. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5389. (goto-char (point-min))
  5390. (while (re-search-forward regexp nil t)
  5391. (catch :skip
  5392. (org-agenda-skip)
  5393. (setq marker (org-agenda-new-marker (match-beginning 0))
  5394. closedp (equal (match-string 1) org-closed-string)
  5395. statep (equal (string-to-char (match-string 1)) ?-)
  5396. clockp (not (or closedp statep))
  5397. state (and statep (match-string 2))
  5398. category (org-get-category (match-beginning 0))
  5399. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5400. (when (string-match "\\]" timestr)
  5401. ;; substring should only run to end of time stamp
  5402. (setq rest (substring timestr (match-end 0))
  5403. timestr (substring timestr 0 (match-end 0)))
  5404. (if (and (not closedp) (not statep)
  5405. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5406. rest))
  5407. (progn (setq timestr (concat (substring timestr 0 -1)
  5408. "-" (match-string 1 rest) "]"))
  5409. (setq clocked (match-string 2 rest)))
  5410. (setq clocked "-")))
  5411. (save-excursion
  5412. (setq extra
  5413. (cond
  5414. ((not org-agenda-log-mode-add-notes) nil)
  5415. (statep
  5416. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5417. (match-string 1)))
  5418. (clockp
  5419. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5420. (match-string 1)))))
  5421. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5422. (throw :skip nil)
  5423. (goto-char (match-beginning 0))
  5424. (setq hdmarker (org-agenda-new-marker)
  5425. inherited-tags
  5426. (or (eq org-agenda-show-inherited-tags 'always)
  5427. (and (listp org-agenda-show-inherited-tags)
  5428. (memq 'todo org-agenda-show-inherited-tags))
  5429. (and (eq org-agenda-show-inherited-tags t)
  5430. (or (eq org-agenda-use-tag-inheritance t)
  5431. (memq 'todo org-agenda-use-tag-inheritance))))
  5432. tags (org-get-tags-at nil (not inherited-tags))
  5433. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5434. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5435. (setq txt (match-string 1))
  5436. (when extra
  5437. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5438. (setq txt (concat (substring txt 0 (match-beginning 1))
  5439. " - " extra " " (match-string 2 txt)))
  5440. (setq txt (concat txt " - " extra))))
  5441. (setq txt (org-agenda-format-item
  5442. (cond
  5443. (closedp "Closed: ")
  5444. (statep (concat "State: (" state ")"))
  5445. (t (concat "Clocked: (" clocked ")")))
  5446. txt level category tags timestr)))
  5447. (setq priority 100000)
  5448. (org-add-props txt props
  5449. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5450. 'priority priority 'level level
  5451. 'type "closed" 'date date
  5452. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5453. (push txt ee))
  5454. (goto-char (point-at-eol))))
  5455. (nreverse ee)))
  5456. (defun org-agenda-show-clocking-issues ()
  5457. "Add overlays, showing issues with clocking.
  5458. See also the user option `org-agenda-clock-consistency-checks'."
  5459. (interactive)
  5460. (let* ((org-time-clocksum-use-effort-durations nil)
  5461. (pl org-agenda-clock-consistency-checks)
  5462. (re (concat "^[ \t]*"
  5463. org-clock-string
  5464. "[ \t]+"
  5465. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5466. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5467. (tlstart 0.)
  5468. (tlend 0.)
  5469. (maxtime (org-hh:mm-string-to-minutes
  5470. (or (plist-get pl :max-duration) "24:00")))
  5471. (mintime (org-hh:mm-string-to-minutes
  5472. (or (plist-get pl :min-duration) 0)))
  5473. (maxgap (org-hh:mm-string-to-minutes
  5474. ;; default 30:00 means never complain
  5475. (or (plist-get pl :max-gap) "30:00")))
  5476. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5477. (plist-get pl :gap-ok-around)))
  5478. (def-face (or (plist-get pl :default-face)
  5479. '((:background "DarkRed") (:foreground "white"))))
  5480. issue face m te ts dt ov)
  5481. (goto-char (point-min))
  5482. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5483. (setq issue nil face def-face)
  5484. (catch 'next
  5485. (setq m (org-get-at-bol 'org-marker)
  5486. te nil ts nil)
  5487. (unless (and m (markerp m))
  5488. (setq issue "No valid clock line") (throw 'next t))
  5489. (org-with-point-at m
  5490. (save-excursion
  5491. (goto-char (point-at-bol))
  5492. (unless (looking-at re)
  5493. (error "No valid Clock line")
  5494. (throw 'next t))
  5495. (unless (match-end 3)
  5496. (setq issue "No end time"
  5497. face (or (plist-get pl :no-end-time-face) face))
  5498. (throw 'next t))
  5499. (setq ts (match-string 1)
  5500. te (match-string 3)
  5501. ts (org-float-time
  5502. (apply 'encode-time (org-parse-time-string ts)))
  5503. te (org-float-time
  5504. (apply 'encode-time (org-parse-time-string te)))
  5505. dt (- te ts))))
  5506. (cond
  5507. ((> dt (* 60 maxtime))
  5508. ;; a very long clocking chunk
  5509. (setq issue (format "Clocking interval is very long: %s"
  5510. (org-minutes-to-clocksum-string
  5511. (floor (/ (float dt) 60.))))
  5512. face (or (plist-get pl :long-face) face)))
  5513. ((< dt (* 60 mintime))
  5514. ;; a very short clocking chunk
  5515. (setq issue (format "Clocking interval is very short: %s"
  5516. (org-minutes-to-clocksum-string
  5517. (floor (/ (float dt) 60.))))
  5518. face (or (plist-get pl :short-face) face)))
  5519. ((and (> tlend 0) (< ts tlend))
  5520. ;; Two clock entries are overlapping
  5521. (setq issue (format "Clocking overlap: %d minutes"
  5522. (/ (- tlend ts) 60))
  5523. face (or (plist-get pl :overlap-face) face)))
  5524. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5525. ;; There is a gap, lets see if we need to report it
  5526. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5527. (setq issue (format "Clocking gap: %d minutes"
  5528. (/ (- ts tlend) 60))
  5529. face (or (plist-get pl :gap-face) face))))
  5530. (t nil)))
  5531. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5532. (when issue
  5533. ;; OK, there was some issue, add an overlay to show the issue
  5534. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5535. (overlay-put ov 'before-string
  5536. (concat
  5537. (org-add-props
  5538. (format "%-43s" (concat " " issue))
  5539. nil
  5540. 'face face)
  5541. "\n"))
  5542. (overlay-put ov 'evaporate t)))))
  5543. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5544. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5545. (catch 'exit
  5546. (unless ok-list
  5547. ;; there are no OK times for gaps...
  5548. (throw 'exit nil))
  5549. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5550. ;; This is more than 24 hours, so it is OK.
  5551. ;; because we have at least one OK time, that must be in the
  5552. ;; 24 hour interval.
  5553. (throw 'exit t))
  5554. ;; We have a shorter gap.
  5555. ;; Now we have to get the minute of the day when these times are
  5556. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5557. (t2dec (decode-time (seconds-to-time t2)))
  5558. ;; compute the minute on the day
  5559. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5560. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5561. (when (< min2 min1)
  5562. ;; if min2 is smaller than min1, this means it is on the next day.
  5563. ;; Wrap it to after midnight.
  5564. (setq min2 (+ min2 1440)))
  5565. ;; Now check if any of the OK times is in the gap
  5566. (mapc (lambda (x)
  5567. ;; Wrap the time to after midnight if necessary
  5568. (if (< x min1) (setq x (+ x 1440)))
  5569. ;; Check if in interval
  5570. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5571. ok-list)
  5572. ;; Nope, this gap is not OK
  5573. nil)))
  5574. (defun org-agenda-get-deadlines (&optional with-hour)
  5575. "Return the deadline information for agenda display.
  5576. When WITH-HOUR is non-nil, only return deadlines with an hour
  5577. specification like [h]h:mm."
  5578. (let* ((props (list 'mouse-face 'highlight
  5579. 'org-not-done-regexp org-not-done-regexp
  5580. 'org-todo-regexp org-todo-regexp
  5581. 'org-complex-heading-regexp org-complex-heading-regexp
  5582. 'help-echo
  5583. (format "mouse-2 or RET jump to org file %s"
  5584. (abbreviate-file-name buffer-file-name))))
  5585. (regexp (if with-hour
  5586. org-deadline-time-hour-regexp
  5587. org-deadline-time-regexp))
  5588. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5589. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5590. (dl0 (car org-agenda-deadline-leaders))
  5591. (dl1 (nth 1 org-agenda-deadline-leaders))
  5592. (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
  5593. d2 diff dfrac wdays pos pos1 category level
  5594. tags suppress-prewarning ee txt head face s todo-state
  5595. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5596. (goto-char (point-min))
  5597. (while (re-search-forward regexp nil t)
  5598. (catch :skip
  5599. (org-agenda-skip)
  5600. (setq s (match-string 1)
  5601. txt nil
  5602. pos (1- (match-beginning 1))
  5603. todo-state (save-match-data (org-get-todo-state))
  5604. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5605. (member todo-state
  5606. org-agenda-repeating-timestamp-show-all))
  5607. d2 (org-time-string-to-absolute
  5608. s d1 'past show-all (current-buffer) pos)
  5609. diff (- d2 d1))
  5610. (setq suppress-prewarning
  5611. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5612. (let ((item (buffer-substring (point-at-bol)
  5613. (point-at-eol))))
  5614. (save-match-data
  5615. (and (string-match
  5616. org-scheduled-time-regexp item)
  5617. (match-string 1 item)))))))
  5618. (cond
  5619. ((not ds) nil)
  5620. ;; The current item has a scheduled date (in ds), so
  5621. ;; evaluate its prewarning lead time.
  5622. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5623. ;; Use global prewarning-restart lead time.
  5624. org-agenda-skip-deadline-prewarning-if-scheduled)
  5625. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5626. 'pre-scheduled)
  5627. ;; Set prewarning to no earlier than scheduled.
  5628. (min (- d2 (org-time-string-to-absolute
  5629. ds d1 'past show-all (current-buffer) pos))
  5630. org-deadline-warning-days))
  5631. ;; Set prewarning to deadline.
  5632. (t 0))))
  5633. (setq wdays (if suppress-prewarning
  5634. (let ((org-deadline-warning-days suppress-prewarning))
  5635. (org-get-wdays s))
  5636. (org-get-wdays s))
  5637. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5638. upcomingp (and todayp (> diff 0)))
  5639. ;; When to show a deadline in the calendar:
  5640. ;; If the expiration is within wdays warning time.
  5641. ;; Past-due deadlines are only shown on the current date
  5642. (if (and (or (and (<= diff wdays)
  5643. (and todayp (not org-agenda-only-exact-dates)))
  5644. (= diff 0)))
  5645. (save-excursion
  5646. ;; (setq todo-state (org-get-todo-state))
  5647. (setq donep (member todo-state org-done-keywords))
  5648. (if (and donep
  5649. (or org-agenda-skip-deadline-if-done
  5650. (not (= diff 0))))
  5651. (setq txt nil)
  5652. (setq category (org-get-category)
  5653. warntime (get-text-property (point) 'org-appt-warntime))
  5654. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5655. (throw :skip nil)
  5656. (goto-char (match-end 0))
  5657. (setq pos1 (match-beginning 0))
  5658. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5659. (setq inherited-tags
  5660. (or (eq org-agenda-show-inherited-tags 'always)
  5661. (and (listp org-agenda-show-inherited-tags)
  5662. (memq 'agenda org-agenda-show-inherited-tags))
  5663. (and (eq org-agenda-show-inherited-tags t)
  5664. (or (eq org-agenda-use-tag-inheritance t)
  5665. (memq 'agenda org-agenda-use-tag-inheritance))))
  5666. tags (org-get-tags-at pos1 (not inherited-tags)))
  5667. (setq head (buffer-substring
  5668. (point)
  5669. (progn (skip-chars-forward "^\r\n")
  5670. (point))))
  5671. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5672. (setq timestr
  5673. (concat (substring s (match-beginning 1)) " "))
  5674. (setq timestr 'time))
  5675. (setq txt (org-agenda-format-item
  5676. (cond ((= diff 0) dl0)
  5677. ((> diff 0)
  5678. (if (functionp dl1)
  5679. (funcall dl1 diff date)
  5680. (format dl1 diff)))
  5681. (t
  5682. (if (functionp dl2)
  5683. (funcall dl2 diff date)
  5684. (format dl2 (if (string= dl2 dl1)
  5685. diff (abs diff))))))
  5686. head level category tags
  5687. (if (not (= diff 0)) nil timestr)))))
  5688. (when txt
  5689. (setq face (org-agenda-deadline-face dfrac))
  5690. (org-add-props txt props
  5691. 'org-marker (org-agenda-new-marker pos)
  5692. 'warntime warntime
  5693. 'level level
  5694. 'ts-date d2
  5695. 'org-hd-marker (org-agenda-new-marker pos1)
  5696. 'priority (+ (- diff)
  5697. (org-get-priority txt))
  5698. 'todo-state todo-state
  5699. 'type (if upcomingp "upcoming-deadline" "deadline")
  5700. 'date (if upcomingp date d2)
  5701. 'face (if donep 'org-agenda-done face)
  5702. 'undone-face face 'done-face 'org-agenda-done)
  5703. (push txt ee))))))
  5704. (nreverse ee)))
  5705. (defun org-agenda-deadline-face (fraction)
  5706. "Return the face to displaying a deadline item.
  5707. FRACTION is what fraction of the head-warning time has passed."
  5708. (let ((faces org-agenda-deadline-faces) f)
  5709. (catch 'exit
  5710. (while (setq f (pop faces))
  5711. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5712. (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
  5713. "Return the scheduled information for agenda display.
  5714. When WITH-HOUR is non-nil, only return scheduled items with
  5715. an hour specification like [h]h:mm."
  5716. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5717. 'org-todo-regexp org-todo-regexp
  5718. 'org-complex-heading-regexp org-complex-heading-regexp
  5719. 'done-face 'org-agenda-done
  5720. 'mouse-face 'highlight
  5721. 'help-echo
  5722. (format "mouse-2 or RET jump to org file %s"
  5723. (abbreviate-file-name buffer-file-name))))
  5724. (regexp (if with-hour
  5725. org-scheduled-time-hour-regexp
  5726. org-scheduled-time-regexp))
  5727. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5728. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5729. mm
  5730. (deadline-position-alist
  5731. (mapcar (lambda (a) (and (setq mm (get-text-property
  5732. 0 'org-hd-marker a))
  5733. (cons (marker-position mm) a)))
  5734. deadline-results))
  5735. d2 diff pos pos1 category level tags donep
  5736. ee txt head pastschedp todo-state face timestr s habitp show-all
  5737. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5738. ddays)
  5739. (goto-char (point-min))
  5740. (while (re-search-forward regexp nil t)
  5741. (catch :skip
  5742. (org-agenda-skip)
  5743. (setq s (match-string 1)
  5744. txt nil
  5745. pos (1- (match-beginning 1))
  5746. todo-state (save-match-data (org-get-todo-state))
  5747. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5748. (member todo-state
  5749. org-agenda-repeating-timestamp-show-all))
  5750. d2 (org-time-string-to-absolute
  5751. s d1 'past show-all (current-buffer) pos)
  5752. diff (- d2 d1)
  5753. warntime (get-text-property (point) 'org-appt-warntime))
  5754. (setq pastschedp (and todayp (< diff 0)))
  5755. (setq did-habit-check-p nil)
  5756. (setq suppress-delay
  5757. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5758. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5759. (save-match-data
  5760. (and (string-match
  5761. org-deadline-time-regexp item)
  5762. (match-string 1 item)))))))
  5763. (cond
  5764. ((not ds) nil)
  5765. ;; The current item has a deadline date (in ds), so
  5766. ;; evaluate its delay time.
  5767. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5768. ;; Use global delay time.
  5769. (- org-agenda-skip-scheduled-delay-if-deadline))
  5770. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5771. 'post-deadline)
  5772. ;; Set delay to no later than deadline.
  5773. (min (- d2 (org-time-string-to-absolute
  5774. ds d1 'past show-all (current-buffer) pos))
  5775. org-scheduled-delay-days))
  5776. (t 0))))
  5777. (setq ddays (if suppress-delay
  5778. (let ((org-scheduled-delay-days suppress-delay))
  5779. (org-get-wdays s t t))
  5780. (org-get-wdays s t)))
  5781. ;; Use a delay of 0 when there is a repeater and the delay is
  5782. ;; of the form --3d
  5783. (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5784. (< (org-time-string-to-absolute s)
  5785. (org-time-string-to-absolute
  5786. s d2 'past nil (current-buffer) pos)))
  5787. (setq ddays 0))
  5788. ;; When to show a scheduled item in the calendar:
  5789. ;; If it is on or past the date.
  5790. (when (or (and (> ddays 0) (= diff (- ddays)))
  5791. (and (zerop ddays) (= diff 0))
  5792. (and (< (+ diff ddays) 0)
  5793. (< (abs diff) org-scheduled-past-days)
  5794. (and todayp (not org-agenda-only-exact-dates)))
  5795. ;; org-is-habit-p uses org-entry-get, which is expansive
  5796. ;; so we go extra mile to only call it once
  5797. (and todayp
  5798. (boundp 'org-habit-show-all-today)
  5799. org-habit-show-all-today
  5800. (setq did-habit-check-p t)
  5801. (setq habitp (and (functionp 'org-is-habit-p)
  5802. (org-is-habit-p)))))
  5803. (save-excursion
  5804. (setq donep (member todo-state org-done-keywords))
  5805. (if (and donep
  5806. (or org-agenda-skip-scheduled-if-done
  5807. (not (= diff 0))
  5808. (and (functionp 'org-is-habit-p)
  5809. (org-is-habit-p))))
  5810. (setq txt nil)
  5811. (setq habitp (if did-habit-check-p habitp
  5812. (and (functionp 'org-is-habit-p)
  5813. (org-is-habit-p))))
  5814. (setq category (org-get-category))
  5815. (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
  5816. 'repeated-after-deadline)
  5817. (org-get-deadline-time (point))
  5818. (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
  5819. (throw :skip nil))
  5820. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5821. (throw :skip nil)
  5822. (goto-char (match-end 0))
  5823. (setq pos1 (match-beginning 0))
  5824. (if habitp
  5825. (if (or (not org-habit-show-habits)
  5826. (and (not todayp)
  5827. (boundp 'org-habit-show-habits-only-for-today)
  5828. org-habit-show-habits-only-for-today))
  5829. (throw :skip nil))
  5830. (if (and
  5831. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5832. (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
  5833. pastschedp))
  5834. (setq mm (assoc pos1 deadline-position-alist)))
  5835. (throw :skip nil)))
  5836. (setq inherited-tags
  5837. (or (eq org-agenda-show-inherited-tags 'always)
  5838. (and (listp org-agenda-show-inherited-tags)
  5839. (memq 'agenda org-agenda-show-inherited-tags))
  5840. (and (eq org-agenda-show-inherited-tags t)
  5841. (or (eq org-agenda-use-tag-inheritance t)
  5842. (memq 'agenda org-agenda-use-tag-inheritance))))
  5843. tags (org-get-tags-at nil (not inherited-tags)))
  5844. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5845. (setq head (buffer-substring
  5846. (point)
  5847. (progn (skip-chars-forward "^\r\n") (point))))
  5848. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5849. (setq timestr
  5850. (concat (substring s (match-beginning 1)) " "))
  5851. (setq timestr 'time))
  5852. (setq txt (org-agenda-format-item
  5853. (if (= diff 0)
  5854. (car org-agenda-scheduled-leaders)
  5855. (format (nth 1 org-agenda-scheduled-leaders)
  5856. (- 1 diff)))
  5857. head level category tags
  5858. (if (not (= diff 0)) nil timestr)
  5859. nil habitp))))
  5860. (when txt
  5861. (setq face
  5862. (cond
  5863. ((and (not habitp) pastschedp)
  5864. 'org-scheduled-previously)
  5865. (todayp 'org-scheduled-today)
  5866. (t 'org-scheduled))
  5867. habitp (and habitp (org-habit-parse-todo)))
  5868. (org-add-props txt props
  5869. 'undone-face face
  5870. 'face (if donep 'org-agenda-done face)
  5871. 'org-marker (org-agenda-new-marker pos)
  5872. 'org-hd-marker (org-agenda-new-marker pos1)
  5873. 'type (if pastschedp "past-scheduled" "scheduled")
  5874. 'date (if pastschedp d2 date)
  5875. 'ts-date d2
  5876. 'warntime warntime
  5877. 'level level
  5878. 'priority (if habitp
  5879. (org-habit-get-priority habitp)
  5880. (+ 94 (- 5 diff) (org-get-priority txt)))
  5881. 'org-habit-p habitp
  5882. 'todo-state todo-state)
  5883. (push txt ee))))))
  5884. (nreverse ee)))
  5885. (defun org-agenda-get-blocks ()
  5886. "Return the date-range information for agenda display."
  5887. (let* ((props (list 'face nil
  5888. 'org-not-done-regexp org-not-done-regexp
  5889. 'org-todo-regexp org-todo-regexp
  5890. 'org-complex-heading-regexp org-complex-heading-regexp
  5891. 'mouse-face 'highlight
  5892. 'help-echo
  5893. (format "mouse-2 or RET jump to org file %s"
  5894. (abbreviate-file-name buffer-file-name))))
  5895. (regexp org-tr-regexp)
  5896. (d0 (calendar-absolute-from-gregorian date))
  5897. marker hdmarker ee txt d1 d2 s1 s2 category
  5898. level todo-state tags pos head donep inherited-tags)
  5899. (goto-char (point-min))
  5900. (while (re-search-forward regexp nil t)
  5901. (catch :skip
  5902. (org-agenda-skip)
  5903. (setq pos (point))
  5904. (let ((start-time (match-string 1))
  5905. (end-time (match-string 2)))
  5906. (setq s1 (match-string 1)
  5907. s2 (match-string 2)
  5908. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5909. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5910. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5911. ;; Only allow days between the limits, because the normal
  5912. ;; date stamps will catch the limits.
  5913. (save-excursion
  5914. (setq todo-state (org-get-todo-state))
  5915. (setq donep (member todo-state org-done-keywords))
  5916. (if (and donep org-agenda-skip-timestamp-if-done)
  5917. (throw :skip t))
  5918. (setq marker (org-agenda-new-marker (point))
  5919. category (org-get-category))
  5920. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5921. (throw :skip nil)
  5922. (goto-char (match-beginning 0))
  5923. (setq hdmarker (org-agenda-new-marker (point))
  5924. inherited-tags
  5925. (or (eq org-agenda-show-inherited-tags 'always)
  5926. (and (listp org-agenda-show-inherited-tags)
  5927. (memq 'agenda org-agenda-show-inherited-tags))
  5928. (and (eq org-agenda-show-inherited-tags t)
  5929. (or (eq org-agenda-use-tag-inheritance t)
  5930. (memq 'agenda org-agenda-use-tag-inheritance))))
  5931. tags (org-get-tags-at nil (not inherited-tags)))
  5932. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5933. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5934. (setq head (match-string 1))
  5935. (let ((remove-re
  5936. (if org-agenda-remove-timeranges-from-blocks
  5937. (concat
  5938. "<" (regexp-quote s1) ".*?>"
  5939. "--"
  5940. "<" (regexp-quote s2) ".*?>")
  5941. nil)))
  5942. (setq txt (org-agenda-format-item
  5943. (format
  5944. (nth (if (= d1 d2) 0 1)
  5945. org-agenda-timerange-leaders)
  5946. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5947. head level category tags
  5948. (cond ((and (= d1 d0) (= d2 d0))
  5949. (concat "<" start-time ">--<" end-time ">"))
  5950. ((= d1 d0)
  5951. (concat "<" start-time ">"))
  5952. ((= d2 d0)
  5953. (concat "<" end-time ">")))
  5954. remove-re))))
  5955. (org-add-props txt props
  5956. 'org-marker marker 'org-hd-marker hdmarker
  5957. 'type "block" 'date date
  5958. 'level level
  5959. 'todo-state todo-state
  5960. 'priority (org-get-priority txt))
  5961. (push txt ee))))
  5962. (goto-char pos)))
  5963. ;; Sort the entries by expiration date.
  5964. (nreverse ee)))
  5965. ;;; Agenda presentation and sorting
  5966. (defvar org-prefix-has-time nil
  5967. "A flag, set by `org-compile-prefix-format'.
  5968. The flag is set if the currently compiled format contains a `%t'.")
  5969. (defvar org-prefix-has-tag nil
  5970. "A flag, set by `org-compile-prefix-format'.
  5971. The flag is set if the currently compiled format contains a `%T'.")
  5972. (defvar org-prefix-has-effort nil
  5973. "A flag, set by `org-compile-prefix-format'.
  5974. The flag is set if the currently compiled format contains a `%e'.")
  5975. (defvar org-prefix-has-breadcrumbs nil
  5976. "A flag, set by `org-compile-prefix-format'.
  5977. The flag is set if the currently compiled format contains a `%b'.")
  5978. (defvar org-prefix-category-length nil
  5979. "Used by `org-compile-prefix-format' to remember the category field width.")
  5980. (defvar org-prefix-category-max-length nil
  5981. "Used by `org-compile-prefix-format' to remember the category field width.")
  5982. (defun org-agenda-get-category-icon (category)
  5983. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5984. (dolist (entry org-agenda-category-icon-alist)
  5985. (when (org-string-match-p (car entry) category)
  5986. (if (listp (cadr entry))
  5987. (return (cadr entry))
  5988. (return (apply 'create-image (cdr entry)))))))
  5989. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5990. remove-re habitp)
  5991. "Format TXT to be inserted into the agenda buffer.
  5992. In particular, add the prefix and corresponding text properties.
  5993. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5994. LEVEL may be a string to replace the `%l' specifier.
  5995. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5996. category taken from local variable or file name. It will replace the `%c'
  5997. specifier in the format.
  5998. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  5999. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6000. When DOTIME is a string, this string is searched for a time before TXT is.
  6001. TAGS can be the tags of the headline.
  6002. Any match of REMOVE-RE will be removed from TXT."
  6003. ;; We keep the org-prefix-* variable values along with a compiled
  6004. ;; formatter, so that multiple agendas existing at the same time do
  6005. ;; not step on each other toes.
  6006. ;;
  6007. ;; It was inconvenient to make these variables buffer local in
  6008. ;; Agenda buffers, because this function expects to be called with
  6009. ;; the buffer where item comes from being current, and not agenda
  6010. ;; buffer
  6011. (let* ((bindings (car org-prefix-format-compiled))
  6012. (formatter (cadr org-prefix-format-compiled)))
  6013. (loop for (var value) in bindings
  6014. do (set var value))
  6015. (save-match-data
  6016. ;; Diary entries sometimes have extra whitespace at the beginning
  6017. (setq txt (org-trim txt))
  6018. ;; Fix the tags part in txt
  6019. (setq txt (org-agenda-fix-displayed-tags
  6020. txt tags
  6021. org-agenda-show-inherited-tags
  6022. org-agenda-hide-tags-regexp))
  6023. (let* ((category (or category
  6024. (if buffer-file-name
  6025. (file-name-sans-extension
  6026. (file-name-nondirectory buffer-file-name))
  6027. "")))
  6028. (category-icon (org-agenda-get-category-icon category))
  6029. (category-icon (if category-icon
  6030. (propertize " " 'display category-icon)
  6031. ""))
  6032. (effort (and (not (string= txt ""))
  6033. (get-text-property 1 'effort txt)))
  6034. ;; time, tag, effort are needed for the eval of the prefix format
  6035. (tag (if tags (nth (1- (length tags)) tags) ""))
  6036. time
  6037. (ts (if dotime (concat
  6038. (if (stringp dotime) dotime "")
  6039. (and org-agenda-search-headline-for-time txt))))
  6040. (time-of-day (and dotime (org-get-time-of-day ts)))
  6041. stamp plain s0 s1 s2 rtn srp l
  6042. duration breadcrumbs)
  6043. (and (derived-mode-p 'org-mode) buffer-file-name
  6044. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6045. (when (and dotime time-of-day)
  6046. ;; Extract starting and ending time and move them to prefix
  6047. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6048. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6049. (setq s0 (match-string 0 ts)
  6050. srp (and stamp (match-end 3))
  6051. s1 (match-string (if plain 1 2) ts)
  6052. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6053. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6054. ;; them, we might want to remove them there to avoid duplication.
  6055. ;; The user can turn this off with a variable.
  6056. (if (and org-prefix-has-time
  6057. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6058. (string-match (concat (regexp-quote s0) " *") txt)
  6059. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6060. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6061. (= (match-beginning 0) 0)
  6062. t))
  6063. (setq txt (replace-match "" nil nil txt))))
  6064. ;; Normalize the time(s) to 24 hour
  6065. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6066. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6067. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6068. (let (org-time-clocksum-use-effort-durations)
  6069. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6070. (setq s2
  6071. (org-minutes-to-clocksum-string
  6072. (+ (org-hh:mm-string-to-minutes s1)
  6073. org-agenda-default-appointment-duration)))))
  6074. ;; Compute the duration
  6075. (when s2
  6076. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6077. (org-hh:mm-string-to-minutes s1)))))
  6078. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6079. txt)
  6080. ;; Tags are in the string
  6081. (if (or (eq org-agenda-remove-tags t)
  6082. (and org-agenda-remove-tags
  6083. org-prefix-has-tag))
  6084. (setq txt (replace-match "" t t txt))
  6085. (setq txt (replace-match
  6086. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6087. (match-string 2 txt))
  6088. t t txt))))
  6089. (when remove-re
  6090. (while (string-match remove-re txt)
  6091. (setq txt (replace-match "" t t txt))))
  6092. ;; Set org-heading property on `txt' to mark the start of the
  6093. ;; heading.
  6094. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6095. ;; Prepare the variables needed in the eval of the compiled format
  6096. (if org-prefix-has-breadcrumbs
  6097. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6098. (let ((s (org-display-outline-path nil nil "->" t)))
  6099. (if (eq "" s) "" (concat s "->"))))))
  6100. (setq time (cond (s2 (concat
  6101. (org-agenda-time-of-day-to-ampm-maybe s1)
  6102. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6103. (if org-agenda-timegrid-use-ampm " ")))
  6104. (s1 (concat
  6105. (org-agenda-time-of-day-to-ampm-maybe s1)
  6106. (if org-agenda-timegrid-use-ampm
  6107. "........ "
  6108. "......")))
  6109. (t ""))
  6110. extra (or (and (not habitp) extra) "")
  6111. category (if (symbolp category) (symbol-name category) category)
  6112. level (or level ""))
  6113. (if (string-match org-bracket-link-regexp category)
  6114. (progn
  6115. (setq l (if (match-end 3)
  6116. (- (match-end 3) (match-beginning 3))
  6117. (- (match-end 1) (match-beginning 1))))
  6118. (when (< l (or org-prefix-category-length 0))
  6119. (setq category (copy-sequence category))
  6120. (org-add-props category nil
  6121. 'extra-space (make-string
  6122. (- org-prefix-category-length l 1) ?\ ))))
  6123. (if (and org-prefix-category-max-length
  6124. (>= (length category) org-prefix-category-max-length))
  6125. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6126. ;; Evaluate the compiled format
  6127. (setq rtn (concat (eval formatter) txt))
  6128. ;; And finally add the text properties
  6129. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6130. (org-add-props rtn nil
  6131. 'org-category category
  6132. 'tags (mapcar 'org-downcase-keep-props tags)
  6133. 'org-highest-priority org-highest-priority
  6134. 'org-lowest-priority org-lowest-priority
  6135. 'time-of-day time-of-day
  6136. 'duration duration
  6137. 'breadcrumbs breadcrumbs
  6138. 'txt txt
  6139. 'level level
  6140. 'time time
  6141. 'extra extra
  6142. 'format org-prefix-format-compiled
  6143. 'dotime dotime)))))
  6144. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6145. "Remove tags string from TXT, and add a modified list of tags.
  6146. The modified list may contain inherited tags, and tags matched by
  6147. `org-agenda-hide-tags-regexp' will be removed."
  6148. (when (or add-inherited hide-re)
  6149. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6150. (setq txt (substring txt 0 (match-beginning 0))))
  6151. (setq tags
  6152. (delq nil
  6153. (mapcar (lambda (tg)
  6154. (if (or (and hide-re (string-match hide-re tg))
  6155. (and (not add-inherited)
  6156. (get-text-property 0 'inherited tg)))
  6157. nil
  6158. tg))
  6159. tags)))
  6160. (when tags
  6161. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6162. i)
  6163. (setq txt (concat txt " :"
  6164. (mapconcat
  6165. (lambda (x)
  6166. (setq i (get-text-property 0 'inherited x))
  6167. (if (and have-i (not i))
  6168. (progn
  6169. (setq have-i nil)
  6170. (concat ":" x))
  6171. x))
  6172. tags ":")
  6173. (if have-i "::" ":"))))))
  6174. txt)
  6175. (defun org-downcase-keep-props (s)
  6176. (let ((props (text-properties-at 0 s)))
  6177. (setq s (downcase s))
  6178. (add-text-properties 0 (length s) props s)
  6179. s))
  6180. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6181. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6182. "Add a time-grid for agenda items which need it.
  6183. LIST is the list of agenda items formatted by `org-agenda-list'.
  6184. NDAYS is the span of the current agenda view.
  6185. TODAYP is `t' when the current agenda view is on today."
  6186. (catch 'exit
  6187. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6188. ((and todayp (member 'today (car org-agenda-time-grid))))
  6189. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6190. ((member 'weekly (car org-agenda-time-grid)))
  6191. (t (throw 'exit list)))
  6192. (let* ((have (delq nil (mapcar
  6193. (lambda (x) (get-text-property 1 'time-of-day x))
  6194. list)))
  6195. (string (nth 1 org-agenda-time-grid))
  6196. (gridtimes (nth 2 org-agenda-time-grid))
  6197. (req (car org-agenda-time-grid))
  6198. (remove (member 'remove-match req))
  6199. new time)
  6200. (if (and (member 'require-timed req) (not have))
  6201. ;; don't show empty grid
  6202. (throw 'exit list))
  6203. (while (setq time (pop gridtimes))
  6204. (unless (and remove (member time have))
  6205. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6206. (push (org-agenda-format-item
  6207. nil string nil "" nil
  6208. (concat (substring time 0 -2) ":" (substring time -2)))
  6209. new)
  6210. (put-text-property
  6211. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6212. (when (and todayp org-agenda-show-current-time-in-grid)
  6213. (push (org-agenda-format-item
  6214. nil org-agenda-current-time-string nil "" nil
  6215. (format-time-string "%H:%M "))
  6216. new)
  6217. (put-text-property
  6218. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6219. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6220. (append new list)
  6221. (append list new)))))
  6222. (defun org-compile-prefix-format (key)
  6223. "Compile the prefix format into a Lisp form that can be evaluated.
  6224. The resulting form and associated variable bindings is returned
  6225. and stored in the variable `org-prefix-format-compiled'."
  6226. (setq org-prefix-has-time nil
  6227. org-prefix-has-tag nil
  6228. org-prefix-category-length nil
  6229. org-prefix-has-effort nil
  6230. org-prefix-has-breadcrumbs nil)
  6231. (let ((s (cond
  6232. ((stringp org-agenda-prefix-format)
  6233. org-agenda-prefix-format)
  6234. ((assq key org-agenda-prefix-format)
  6235. (cdr (assq key org-agenda-prefix-format)))
  6236. (t " %-12:c%?-12t% s")))
  6237. (start 0)
  6238. varform vars var e c f opt)
  6239. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6240. s start)
  6241. (setq var (or (cdr (assoc (match-string 4 s)
  6242. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6243. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6244. 'eval)
  6245. c (or (match-string 3 s) "")
  6246. opt (match-beginning 1)
  6247. start (1+ (match-beginning 0)))
  6248. (if (equal var 'time) (setq org-prefix-has-time t))
  6249. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6250. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6251. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6252. (setq f (concat "%" (match-string 2 s) "s"))
  6253. (when (equal var 'category)
  6254. (setq org-prefix-category-length
  6255. (floor (abs (string-to-number (match-string 2 s)))))
  6256. (setq org-prefix-category-max-length
  6257. (let ((x (match-string 2 s)))
  6258. (save-match-data
  6259. (if (string-match "\\.[0-9]+" x)
  6260. (string-to-number (substring (match-string 0 x) 1)))))))
  6261. (if (eq var 'eval)
  6262. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6263. (if opt
  6264. (setq varform
  6265. `(if (or (equal "" ,var) (equal nil ,var))
  6266. ""
  6267. (format ,f (concat ,var ,c))))
  6268. (setq varform
  6269. `(format ,f (if (or (equal ,var "")
  6270. (equal ,var nil)) ""
  6271. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6272. (setq s (replace-match "%s" t nil s))
  6273. (push varform vars))
  6274. (setq vars (nreverse vars))
  6275. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6276. (setq org-prefix-format-compiled
  6277. (list
  6278. `((org-prefix-has-time ,org-prefix-has-time)
  6279. (org-prefix-has-tag ,org-prefix-has-tag)
  6280. (org-prefix-category-length ,org-prefix-category-length)
  6281. (org-prefix-has-effort ,org-prefix-has-effort)
  6282. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6283. `(format ,s ,@vars))))))
  6284. (defun org-set-sorting-strategy (key)
  6285. (if (symbolp (car org-agenda-sorting-strategy))
  6286. ;; the old format
  6287. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6288. (setq org-agenda-sorting-strategy-selected
  6289. (or (cdr (assq key org-agenda-sorting-strategy))
  6290. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6291. '(time-up category-keep priority-down)))))
  6292. (defun org-get-time-of-day (s &optional string mod24)
  6293. "Check string S for a time of day.
  6294. If found, return it as a military time number between 0 and 2400.
  6295. If not found, return nil.
  6296. The optional STRING argument forces conversion into a 5 character wide string
  6297. HH:MM."
  6298. (save-match-data
  6299. (when
  6300. (and
  6301. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6302. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6303. (not (eq (get-text-property 1 'face s) 'org-link)))
  6304. (let* ((h (string-to-number (match-string 1 s)))
  6305. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6306. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6307. (am-p (equal ampm "am"))
  6308. (h1 (cond ((not ampm) h)
  6309. ((= h 12) (if am-p 0 12))
  6310. (t (+ h (if am-p 0 12)))))
  6311. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6312. (mod h1 24) h1))
  6313. (t0 (+ (* 100 h2) m))
  6314. (t1 (concat (if (>= h1 24) "+" " ")
  6315. (if (and org-agenda-time-leading-zero
  6316. (< t0 1000)) "0" "")
  6317. (if (< t0 100) "0" "")
  6318. (if (< t0 10) "0" "")
  6319. (int-to-string t0))))
  6320. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6321. (defvar org-agenda-before-sorting-filter-function nil
  6322. "Function to be applied to agenda items prior to sorting.
  6323. Prior to sorting also means just before they are inserted into the agenda.
  6324. To aid sorting, you may revisit the original entries and add more text
  6325. properties which will later be used by the sorting functions.
  6326. The function should take a string argument, an agenda line.
  6327. It has access to the text properties in that line, which contain among
  6328. other things, the property `org-hd-marker' that points to the entry
  6329. where the line comes from. Note that not all lines going into the agenda
  6330. have this property, only most.
  6331. The function should return the modified string. It is probably best
  6332. to ONLY change text properties.
  6333. You can also use this function as a filter, by returning nil for lines
  6334. you don't want to have in the agenda at all. For this application, you
  6335. could bind the variable in the options section of a custom command.")
  6336. (defun org-agenda-finalize-entries (list &optional type)
  6337. "Sort, limit and concatenate the LIST of agenda items.
  6338. The optional argument TYPE tells the agenda type."
  6339. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6340. (cdr (assoc type org-agenda-max-effort)))
  6341. (t org-agenda-max-effort)))
  6342. (max-todo (cond ((listp org-agenda-max-todos)
  6343. (cdr (assoc type org-agenda-max-todos)))
  6344. (t org-agenda-max-todos)))
  6345. (max-tags (cond ((listp org-agenda-max-tags)
  6346. (cdr (assoc type org-agenda-max-tags)))
  6347. (t org-agenda-max-tags)))
  6348. (max-entries (cond ((listp org-agenda-max-entries)
  6349. (cdr (assoc type org-agenda-max-entries)))
  6350. (t org-agenda-max-entries))))
  6351. (when org-agenda-before-sorting-filter-function
  6352. (setq list
  6353. (delq nil
  6354. (mapcar
  6355. org-agenda-before-sorting-filter-function list))))
  6356. (setq list (mapcar 'org-agenda-highlight-todo list)
  6357. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6358. (when max-effort
  6359. (setq list (org-agenda-limit-entries
  6360. list 'effort-minutes max-effort
  6361. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6362. 32767 -1))))))
  6363. (when max-todo
  6364. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6365. (when max-tags
  6366. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6367. (when max-entries
  6368. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6369. (mapconcat 'identity list "\n")))
  6370. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6371. "Limit the number of agenda entries."
  6372. (let ((include (and limit (< limit 0))))
  6373. (if limit
  6374. (let ((fun (or fn (lambda (p) (if p 1))))
  6375. (lim 0))
  6376. (delq nil
  6377. (mapcar
  6378. (lambda (e)
  6379. (let ((pval (funcall
  6380. fun (get-text-property (1- (length e))
  6381. prop e))))
  6382. (if pval (setq lim (+ lim pval)))
  6383. (cond ((and pval (<= lim (abs limit))) e)
  6384. ((and include (not pval)) e))))
  6385. list)))
  6386. list)))
  6387. (defun org-agenda-limit-interactively (remove)
  6388. "In agenda, interactively limit entries to various maximums."
  6389. (interactive "P")
  6390. (if remove
  6391. (progn (setq org-agenda-max-entries nil
  6392. org-agenda-max-todos nil
  6393. org-agenda-max-tags nil
  6394. org-agenda-max-effort nil)
  6395. (org-agenda-redo))
  6396. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6397. (msg (cond ((= max ?E) "How many minutes? ")
  6398. ((= max ?e) "How many entries? ")
  6399. ((= max ?t) "How many TODO entries? ")
  6400. ((= max ?T) "How many tagged entries? ")
  6401. (t (user-error "Wrong input"))))
  6402. (num (string-to-number (read-from-minibuffer msg))))
  6403. (cond ((equal max ?e)
  6404. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6405. ((equal max ?t)
  6406. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6407. ((equal max ?T)
  6408. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6409. ((equal max ?E)
  6410. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6411. (org-agenda-fit-window-to-buffer))
  6412. (defun org-agenda-highlight-todo (x)
  6413. (let ((org-done-keywords org-done-keywords-for-agenda)
  6414. (case-fold-search nil)
  6415. re)
  6416. (if (eq x 'line)
  6417. (save-excursion
  6418. (beginning-of-line 1)
  6419. (setq re (org-get-at-bol 'org-todo-regexp))
  6420. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6421. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6422. (add-text-properties (match-beginning 0) (match-end 1)
  6423. (list 'face (org-get-todo-face 1)))
  6424. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6425. (delete-region (match-beginning 1) (1- (match-end 0)))
  6426. (goto-char (match-beginning 1))
  6427. (insert (format org-agenda-todo-keyword-format s)))))
  6428. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6429. (setq re (get-text-property 0 'org-todo-regexp x))
  6430. (when (and re
  6431. ;; Test `pl' because if there's no heading content,
  6432. ;; there's no point matching to highlight. Note
  6433. ;; that if we didn't test `pl' first, and there
  6434. ;; happened to be no keyword from `org-todo-regexp'
  6435. ;; on this heading line, then the `equal' comparison
  6436. ;; afterwards would spuriously succeed in the case
  6437. ;; where `pl' is nil -- causing an args-out-of-range
  6438. ;; error when we try to add text properties to text
  6439. ;; that isn't there.
  6440. pl
  6441. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6442. x pl) pl))
  6443. (add-text-properties
  6444. (or (match-end 1) (match-end 0)) (match-end 0)
  6445. (list 'face (org-get-todo-face (match-string 2 x)))
  6446. x)
  6447. (when (match-end 1)
  6448. (setq x (concat (substring x 0 (match-end 1))
  6449. (format org-agenda-todo-keyword-format
  6450. (match-string 2 x))
  6451. (org-add-props " " (text-properties-at 0 x))
  6452. (substring x (match-end 3)))))))
  6453. x)))
  6454. (defsubst org-cmp-values (a b property)
  6455. "Compare the numeric value of text PROPERTY for string A and B."
  6456. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6457. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6458. (cond ((> pa pb) +1)
  6459. ((< pa pb) -1))))
  6460. (defsubst org-cmp-effort (a b)
  6461. "Compare the effort values of string A and B."
  6462. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6463. (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
  6464. (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
  6465. (cond ((> ea eb) +1)
  6466. ((< ea eb) -1))))
  6467. (defsubst org-cmp-category (a b)
  6468. "Compare the string values of categories of strings A and B."
  6469. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6470. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6471. (cond ((string-lessp ca cb) -1)
  6472. ((string-lessp cb ca) +1))))
  6473. (defsubst org-cmp-todo-state (a b)
  6474. "Compare the todo states of strings A and B."
  6475. (let* ((ma (or (get-text-property 1 'org-marker a)
  6476. (get-text-property 1 'org-hd-marker a)))
  6477. (mb (or (get-text-property 1 'org-marker b)
  6478. (get-text-property 1 'org-hd-marker b)))
  6479. (fa (and ma (marker-buffer ma)))
  6480. (fb (and mb (marker-buffer mb)))
  6481. (todo-kwds
  6482. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6483. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6484. (ta (or (get-text-property 1 'todo-state a) ""))
  6485. (tb (or (get-text-property 1 'todo-state b) ""))
  6486. (la (- (length (member ta todo-kwds))))
  6487. (lb (- (length (member tb todo-kwds))))
  6488. (donepa (member ta org-done-keywords-for-agenda))
  6489. (donepb (member tb org-done-keywords-for-agenda)))
  6490. (cond ((and donepa (not donepb)) -1)
  6491. ((and (not donepa) donepb) +1)
  6492. ((< la lb) -1)
  6493. ((< lb la) +1))))
  6494. (defsubst org-cmp-alpha (a b)
  6495. "Compare the headlines, alphabetically."
  6496. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6497. (plb (text-property-any 0 (length b) 'org-heading t b))
  6498. (ta (and pla (substring a pla)))
  6499. (tb (and plb (substring b plb))))
  6500. (when pla
  6501. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6502. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6503. (setq ta (substring ta (match-end 0))))
  6504. (setq ta (downcase ta)))
  6505. (when plb
  6506. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6507. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6508. (setq tb (substring tb (match-end 0))))
  6509. (setq tb (downcase tb)))
  6510. (cond ((not ta) +1)
  6511. ((not tb) -1)
  6512. ((string-lessp ta tb) -1)
  6513. ((string-lessp tb ta) +1))))
  6514. (defsubst org-cmp-tag (a b)
  6515. "Compare the string values of the first tags of A and B."
  6516. (let ((ta (car (last (get-text-property 1 'tags a))))
  6517. (tb (car (last (get-text-property 1 'tags b)))))
  6518. (cond ((not ta) +1)
  6519. ((not tb) -1)
  6520. ((string-lessp ta tb) -1)
  6521. ((string-lessp tb ta) +1))))
  6522. (defsubst org-cmp-time (a b)
  6523. "Compare the time-of-day values of strings A and B."
  6524. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6525. (ta (or (get-text-property 1 'time-of-day a) def))
  6526. (tb (or (get-text-property 1 'time-of-day b) def)))
  6527. (cond ((< ta tb) -1)
  6528. ((< tb ta) +1))))
  6529. (defsubst org-cmp-ts (a b type)
  6530. "Compare the timestamps values of entries A and B.
  6531. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6532. \"timestamp_ia\", compare within each of these type. When TYPE
  6533. is the empty string, compare all timestamps without respect of
  6534. their type."
  6535. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6536. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6537. (get-text-property 1 'ts-date a))
  6538. def))
  6539. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6540. (get-text-property 1 'ts-date b))
  6541. def)))
  6542. (cond ((< ta tb) -1)
  6543. ((< tb ta) +1))))
  6544. (defsubst org-cmp-habit-p (a b)
  6545. "Compare the todo states of strings A and B."
  6546. (let ((ha (get-text-property 1 'org-habit-p a))
  6547. (hb (get-text-property 1 'org-habit-p b)))
  6548. (cond ((and ha (not hb)) -1)
  6549. ((and (not ha) hb) +1))))
  6550. (defun org-entries-lessp (a b)
  6551. "Predicate for sorting agenda entries."
  6552. ;; The following variables will be used when the form is evaluated.
  6553. ;; So even though the compiler complains, keep them.
  6554. (let* ((ss org-agenda-sorting-strategy-selected)
  6555. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6556. (org-cmp-ts a b "")))
  6557. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6558. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6559. (org-cmp-ts a b "scheduled")))
  6560. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6561. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6562. (org-cmp-ts a b "deadline")))
  6563. (deadline-down (if deadline-up (- deadline-up) nil))
  6564. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6565. (org-cmp-ts a b "timestamp_ia")))
  6566. (tsia-down (if tsia-up (- tsia-up) nil))
  6567. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6568. (org-cmp-ts a b "timestamp")))
  6569. (ts-down (if ts-up (- ts-up) nil))
  6570. (time-up (and (org-em 'time-up 'time-down ss)
  6571. (org-cmp-time a b)))
  6572. (time-down (if time-up (- time-up) nil))
  6573. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6574. (org-cmp-values a b 'org-stats)))
  6575. (stats-down (if stats-up (- stats-up) nil))
  6576. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6577. (org-cmp-values a b 'priority)))
  6578. (priority-down (if priority-up (- priority-up) nil))
  6579. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6580. (org-cmp-effort a b)))
  6581. (effort-down (if effort-up (- effort-up) nil))
  6582. (category-up (and (or (org-em 'category-up 'category-down ss)
  6583. (memq 'category-keep ss))
  6584. (org-cmp-category a b)))
  6585. (category-down (if category-up (- category-up) nil))
  6586. (category-keep (if category-up +1 nil))
  6587. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6588. (org-cmp-tag a b)))
  6589. (tag-down (if tag-up (- tag-up) nil))
  6590. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6591. (org-cmp-todo-state a b)))
  6592. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6593. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6594. (org-cmp-habit-p a b)))
  6595. (habit-down (if habit-up (- habit-up) nil))
  6596. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6597. (org-cmp-alpha a b)))
  6598. (alpha-down (if alpha-up (- alpha-up) nil))
  6599. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6600. user-defined-up user-defined-down)
  6601. (if (and need-user-cmp org-agenda-cmp-user-defined
  6602. (functionp org-agenda-cmp-user-defined))
  6603. (setq user-defined-up
  6604. (funcall org-agenda-cmp-user-defined a b)
  6605. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6606. (cdr (assoc
  6607. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6608. '((-1 . t) (1 . nil) (nil . nil))))))
  6609. ;;; Agenda restriction lock
  6610. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6611. "Overlay to mark the headline to which agenda commands are restricted.")
  6612. (overlay-put org-agenda-restriction-lock-overlay
  6613. 'face 'org-agenda-restriction-lock)
  6614. (overlay-put org-agenda-restriction-lock-overlay
  6615. 'help-echo "Agendas are currently limited to this subtree.")
  6616. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6617. ;;;###autoload
  6618. (defun org-agenda-set-restriction-lock (&optional type)
  6619. "Set restriction lock for agenda, to current subtree or file.
  6620. Restriction will be the file if TYPE is `file', or if type is the
  6621. universal prefix '(4), or if the cursor is before the first headline
  6622. in the file. Otherwise, restriction will be to the current subtree."
  6623. (interactive "P")
  6624. (org-agenda-remove-restriction-lock 'noupdate)
  6625. (and (equal type '(4)) (setq type 'file))
  6626. (setq type (cond
  6627. (type type)
  6628. ((org-at-heading-p) 'subtree)
  6629. ((condition-case nil (org-back-to-heading t) (error nil))
  6630. 'subtree)
  6631. (t 'file)))
  6632. (if (eq type 'subtree)
  6633. (progn
  6634. (setq org-agenda-restrict (current-buffer))
  6635. (setq org-agenda-overriding-restriction 'subtree)
  6636. (put 'org-agenda-files 'org-restrict
  6637. (list (buffer-file-name (buffer-base-buffer))))
  6638. (org-back-to-heading t)
  6639. (move-overlay org-agenda-restriction-lock-overlay
  6640. (point)
  6641. (if org-agenda-restriction-lock-highlight-subtree
  6642. (save-excursion (org-end-of-subtree t t) (point))
  6643. (point-at-eol)))
  6644. (move-marker org-agenda-restrict-begin (point))
  6645. (move-marker org-agenda-restrict-end
  6646. (save-excursion (org-end-of-subtree t t)))
  6647. (message "Locking agenda restriction to subtree"))
  6648. (put 'org-agenda-files 'org-restrict
  6649. (list (buffer-file-name (buffer-base-buffer))))
  6650. (setq org-agenda-restrict nil)
  6651. (setq org-agenda-overriding-restriction 'file)
  6652. (move-marker org-agenda-restrict-begin nil)
  6653. (move-marker org-agenda-restrict-end nil)
  6654. (message "Locking agenda restriction to file"))
  6655. (setq current-prefix-arg nil)
  6656. (org-agenda-maybe-redo))
  6657. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6658. "Remove the agenda restriction lock."
  6659. (interactive "P")
  6660. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6661. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6662. (setq org-agenda-overriding-restriction nil)
  6663. (setq org-agenda-restrict nil)
  6664. (put 'org-agenda-files 'org-restrict nil)
  6665. (move-marker org-agenda-restrict-begin nil)
  6666. (move-marker org-agenda-restrict-end nil)
  6667. (setq current-prefix-arg nil)
  6668. (message "Agenda restriction lock removed")
  6669. (or noupdate (org-agenda-maybe-redo)))
  6670. (defun org-agenda-maybe-redo ()
  6671. "If there is any window showing the agenda view, update it."
  6672. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6673. (w0 (selected-window)))
  6674. (when w
  6675. (select-window w)
  6676. (org-agenda-redo)
  6677. (select-window w0)
  6678. (if org-agenda-overriding-restriction
  6679. (message "Agenda view shifted to new %s restriction"
  6680. org-agenda-overriding-restriction)
  6681. (message "Agenda restriction lock removed")))))
  6682. ;;; Agenda commands
  6683. (defun org-agenda-check-type (error &rest types)
  6684. "Check if agenda buffer is of allowed type.
  6685. If ERROR is non-nil, throw an error, otherwise just return nil.
  6686. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6687. (if (not org-agenda-type)
  6688. (error "No Org agenda currently displayed")
  6689. (if (memq org-agenda-type types)
  6690. t
  6691. (if error
  6692. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6693. nil))))
  6694. (defun org-agenda-Quit ()
  6695. "Exit the agenda, killing the agenda buffer.
  6696. Like `org-agenda-quit', but kill the buffer even when
  6697. `org-agenda-sticky' is non-nil."
  6698. (interactive)
  6699. (org-agenda--quit))
  6700. (defun org-agenda-quit ()
  6701. "Exit the agenda.
  6702. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6703. instead of killing it.
  6704. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6705. the pre-agenda window configuration.
  6706. When column view is active, exit column view instead of the
  6707. agenda."
  6708. (interactive)
  6709. (org-agenda--quit org-agenda-sticky))
  6710. (defun org-agenda--quit (&optional bury)
  6711. (if org-agenda-columns-active
  6712. (org-columns-quit)
  6713. (let ((buf (current-buffer))
  6714. (wconf org-agenda-pre-window-conf)
  6715. (org-agenda-last-indirect-window
  6716. (and (eq org-indirect-buffer-display 'other-window)
  6717. org-agenda-last-indirect-buffer
  6718. (get-buffer-window org-agenda-last-indirect-buffer))))
  6719. (cond
  6720. ((eq org-agenda-window-setup 'other-frame)
  6721. (delete-frame))
  6722. ((and org-agenda-restore-windows-after-quit
  6723. wconf)
  6724. ;; Maybe restore the pre-agenda window configuration. Reset
  6725. ;; `org-agenda-pre-window-conf' before running
  6726. ;; `set-window-configuration', which loses the current buffer.
  6727. (setq org-agenda-pre-window-conf nil)
  6728. (set-window-configuration wconf))
  6729. (t
  6730. (when org-agenda-last-indirect-window
  6731. (delete-window org-agenda-last-indirect-window))
  6732. (and (not (eq org-agenda-window-setup 'current-window))
  6733. (not (one-window-p))
  6734. (delete-window))))
  6735. (if bury
  6736. (bury-buffer buf)
  6737. (kill-buffer buf)
  6738. (setq org-agenda-archives-mode nil
  6739. org-agenda-buffer nil)))))
  6740. (defun org-agenda-exit ()
  6741. "Exit the agenda, killing Org buffers loaded by the agenda.
  6742. Like `org-agenda-Quit', but kill any buffers that were created by
  6743. the agenda. Org buffers visited directly by the user will not be
  6744. touched. Also, exit the agenda even if it is in column view."
  6745. (interactive)
  6746. (when org-agenda-columns-active
  6747. (org-columns-quit))
  6748. (org-release-buffers org-agenda-new-buffers)
  6749. (setq org-agenda-new-buffers nil)
  6750. (org-agenda-Quit))
  6751. (defun org-agenda-kill-all-agenda-buffers ()
  6752. "Kill all buffers in `org-agenda-mode'.
  6753. This is used when toggling sticky agendas.
  6754. You can also explicitly invoke it with `C-c a C-k'."
  6755. (interactive)
  6756. (let (blist)
  6757. (dolist (buf (buffer-list))
  6758. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6759. (push buf blist)))
  6760. (mapc 'kill-buffer blist)))
  6761. (defun org-agenda-execute (arg)
  6762. "Execute another agenda command, keeping same window.
  6763. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6764. in the agenda."
  6765. (interactive "P")
  6766. (let ((org-agenda-window-setup 'current-window))
  6767. (org-agenda arg)))
  6768. (defun org-agenda-redo (&optional all)
  6769. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6770. (interactive "P")
  6771. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6772. (cpa (unless (eq all t) current-prefix-arg))
  6773. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6774. (org-agenda-sticky nil)
  6775. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6776. org-agenda-buffer-name))
  6777. (org-agenda-keep-modes t)
  6778. (tag-filter org-agenda-tag-filter)
  6779. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6780. (top-hl-filter org-agenda-top-headline-filter)
  6781. (cat-filter org-agenda-category-filter)
  6782. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6783. (re-filter org-agenda-regexp-filter)
  6784. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6785. (effort-filter org-agenda-effort-filter)
  6786. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6787. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6788. (cols org-agenda-columns-active)
  6789. (line (org-current-line))
  6790. (window-line (- line (org-current-line (window-start))))
  6791. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6792. (redo-cmd (get-text-property p 'org-redo-cmd))
  6793. (last-args (get-text-property p 'org-last-args))
  6794. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6795. (org-agenda-overriding-cmd-arguments
  6796. (unless (eq all t)
  6797. (cond ((listp last-args)
  6798. (cons (or cpa (car last-args)) (cdr last-args)))
  6799. ((stringp last-args)
  6800. last-args))))
  6801. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6802. (put 'org-agenda-tag-filter :preset-filter nil)
  6803. (put 'org-agenda-category-filter :preset-filter nil)
  6804. (put 'org-agenda-regexp-filter :preset-filter nil)
  6805. (put 'org-agenda-effort-filter :preset-filter nil)
  6806. (and cols (org-columns-quit))
  6807. (message "Rebuilding agenda buffer...")
  6808. (if series-redo-cmd
  6809. (eval series-redo-cmd)
  6810. (org-let lprops redo-cmd))
  6811. (setq org-agenda-undo-list nil
  6812. org-agenda-pending-undo-list nil
  6813. org-agenda-tag-filter tag-filter
  6814. org-agenda-category-filter cat-filter
  6815. org-agenda-regexp-filter re-filter
  6816. org-agenda-effort-filter effort-filter
  6817. org-agenda-top-headline-filter top-hl-filter)
  6818. (message "Rebuilding agenda buffer...done")
  6819. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6820. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6821. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6822. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6823. (let ((tag (or tag-filter tag-preset))
  6824. (cat (or cat-filter cat-preset))
  6825. (effort (or effort-filter effort-preset))
  6826. (re (or re-filter re-preset)))
  6827. (when tag (org-agenda-filter-apply tag 'tag t))
  6828. (when cat (org-agenda-filter-apply cat 'category))
  6829. (when effort (org-agenda-filter-apply effort 'effort))
  6830. (when re (org-agenda-filter-apply re 'regexp)))
  6831. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6832. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6833. (org-goto-line line)
  6834. (recenter window-line)))
  6835. (defvar org-global-tags-completion-table nil)
  6836. (defvar org-agenda-filter-form nil)
  6837. (defvar org-agenda-filtered-by-category nil)
  6838. (defun org-agenda-filter-by-category (strip)
  6839. "Keep only those lines in the agenda buffer that have a specific category.
  6840. The category is that of the current line."
  6841. (interactive "P")
  6842. (if (and org-agenda-filtered-by-category
  6843. org-agenda-category-filter)
  6844. (org-agenda-filter-show-all-cat)
  6845. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6846. (cond
  6847. ((and cat strip)
  6848. (org-agenda-filter-apply
  6849. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6850. ((and cat)
  6851. (org-agenda-filter-apply
  6852. (setq org-agenda-category-filter
  6853. (list (concat "+" cat))) 'category))
  6854. (t (error "No category at point"))))))
  6855. (defun org-find-top-headline (&optional pos)
  6856. "Find the topmost parent headline and return it."
  6857. (save-excursion
  6858. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6859. (if pos (goto-char pos))
  6860. ;; Skip up to the topmost parent
  6861. (while (ignore-errors (outline-up-heading 1) t))
  6862. (ignore-errors
  6863. (nth 4 (org-heading-components))))))
  6864. (defvar org-agenda-filtered-by-top-headline nil)
  6865. (defun org-agenda-filter-by-top-headline (strip)
  6866. "Keep only those lines that are descendants from the same top headline.
  6867. The top headline is that of the current line."
  6868. (interactive "P")
  6869. (if org-agenda-filtered-by-top-headline
  6870. (progn
  6871. (setq org-agenda-filtered-by-top-headline nil
  6872. org-agenda-top-headline-filter nil)
  6873. (org-agenda-filter-show-all-top-filter))
  6874. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6875. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6876. (error "No top-level headline at point")))))
  6877. (defvar org-agenda-regexp-filter nil)
  6878. (defun org-agenda-filter-by-regexp (strip)
  6879. "Filter agenda entries by a regular expression.
  6880. Regexp filters are cumulative.
  6881. With no prefix argument, keep entries matching the regexp.
  6882. With one prefix argument, filter out entries matching the regexp.
  6883. With two prefix arguments, remove the regexp filters."
  6884. (interactive "P")
  6885. (if (not (equal strip '(16)))
  6886. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6887. (read-from-minibuffer
  6888. (if (equal strip '(4))
  6889. "Filter out entries matching regexp: "
  6890. "Narrow to entries matching regexp: ")))))
  6891. (push flt org-agenda-regexp-filter)
  6892. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6893. (org-agenda-filter-show-all-re)
  6894. (message "Regexp filter removed")))
  6895. (defvar org-agenda-effort-filter nil)
  6896. (defun org-agenda-filter-by-effort (strip)
  6897. "Filter agenda entries by effort.
  6898. With no prefix argument, keep entries matching the effort condition.
  6899. With one prefix argument, filter out entries matching the condition.
  6900. With two prefix arguments, remove the effort filters."
  6901. (interactive "P")
  6902. (cond ((member strip '(nil 4))
  6903. (let ((efforts (org-split-string
  6904. (or (cdr (assoc (concat org-effort-property "_ALL")
  6905. org-global-properties))
  6906. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6907. "")))
  6908. (eff -1)
  6909. effort-prompt op)
  6910. (while (not (member op '(?< ?> ?=)))
  6911. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6912. (loop for i from 0 to 9 do
  6913. (setq effort-prompt
  6914. (concat
  6915. effort-prompt " ["
  6916. (if (= i 9) "0" (int-to-string (1+ i)))
  6917. "]" (nth i efforts))))
  6918. (message "Effort %s%s" (char-to-string op) effort-prompt)
  6919. (while (or (< eff 0) (> eff 9))
  6920. (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
  6921. (setq org-agenda-effort-filter
  6922. (list (concat (if strip "-" "+")
  6923. (char-to-string op) (nth (1- eff) efforts))))
  6924. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6925. (t (org-agenda-filter-show-all-effort)
  6926. (message "Effort filter removed"))))
  6927. (defun org-agenda-filter-remove-all ()
  6928. "Remove all filters from the current agenda buffer."
  6929. (interactive)
  6930. (when org-agenda-tag-filter
  6931. (org-agenda-filter-show-all-tag))
  6932. (when org-agenda-category-filter
  6933. (org-agenda-filter-show-all-cat))
  6934. (when org-agenda-regexp-filter
  6935. (org-agenda-filter-show-all-re))
  6936. (when org-agenda-top-headline-filter
  6937. (org-agenda-filter-show-all-top-filter))
  6938. (when org-agenda-effort-filter
  6939. (org-agenda-filter-show-all-effort))
  6940. (org-agenda-finalize))
  6941. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  6942. "Keep only those lines in the agenda buffer that have a specific tag.
  6943. The tag is selected with its fast selection letter, as
  6944. configured. With a single \\[universal-argument] prefix ARG,
  6945. exclude the agenda search. With a double \\[universal-argument]
  6946. prefix ARG, filter the literal tag. I.e. don't filter on all its
  6947. group members.
  6948. A lisp caller can specify CHAR. EXCLUDE means that the new tag should be
  6949. used to exclude the search - the interactive user can also press `-' or `+'
  6950. to switch between filtering and excluding."
  6951. (interactive "P")
  6952. (let* ((alist org-tag-alist-for-agenda)
  6953. (tag-chars (mapconcat
  6954. (lambda (x) (if (and (not (symbolp (car x)))
  6955. (cdr x))
  6956. (char-to-string (cdr x))
  6957. ""))
  6958. org-tag-alist-for-agenda ""))
  6959. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  6960. (string-to-list tag-chars)))
  6961. (exclude (or exclude (equal arg '(4))))
  6962. (expand (not (equal arg '(16))))
  6963. (inhibit-read-only t)
  6964. (current org-agenda-tag-filter)
  6965. a n tag)
  6966. (unless char
  6967. (while (not (memq char valid-char-list))
  6968. (message
  6969. "%s by tag [%s ], [TAB], %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  6970. (if exclude "Exclude" "Filter") tag-chars
  6971. (if org-agenda-auto-exclude-function "[RET], " "")
  6972. (if expand "" ", no grouptag expand"))
  6973. (setq char (read-char-exclusive))
  6974. ;; Excluding or filtering down
  6975. (cond ((eq char ?-) (setq exclude t))
  6976. ((eq char ?+) (setq exclude nil)))))
  6977. (when (eq char ?\t)
  6978. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6979. (org-set-local 'org-global-tags-completion-table
  6980. (org-global-tags-completion-table)))
  6981. (let ((completion-ignore-case t))
  6982. (setq tag (org-icompleting-read
  6983. "Tag: " org-global-tags-completion-table))))
  6984. (cond
  6985. ((eq char ?\r)
  6986. (org-agenda-filter-show-all-tag)
  6987. (when org-agenda-auto-exclude-function
  6988. (setq org-agenda-tag-filter nil)
  6989. (dolist (tag (org-agenda-get-represented-tags))
  6990. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6991. (if modifier
  6992. (push modifier org-agenda-tag-filter))))
  6993. (if (not (null org-agenda-tag-filter))
  6994. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  6995. ((eq char ?/)
  6996. (org-agenda-filter-show-all-tag)
  6997. (when (get 'org-agenda-tag-filter :preset-filter)
  6998. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  6999. ((eq char ?.)
  7000. (setq org-agenda-tag-filter
  7001. (mapcar (lambda(tag) (concat "+" tag))
  7002. (org-get-at-bol 'tags)))
  7003. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7004. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7005. ((or (eq char ?\s)
  7006. (setq a (rassoc char alist))
  7007. (and tag (setq a (cons tag nil))))
  7008. (org-agenda-filter-show-all-tag)
  7009. (setq tag (car a))
  7010. (setq org-agenda-tag-filter
  7011. (cons (concat (if exclude "-" "+") tag)
  7012. current))
  7013. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7014. (t (error "Invalid tag selection character %c" char)))))
  7015. (defun org-agenda-get-represented-tags ()
  7016. "Get a list of all tags currently represented in the agenda."
  7017. (let (p tags)
  7018. (save-excursion
  7019. (goto-char (point-min))
  7020. (while (setq p (next-single-property-change (point) 'tags))
  7021. (goto-char p)
  7022. (mapc (lambda (x) (add-to-list 'tags x))
  7023. (get-text-property (point) 'tags))))
  7024. tags))
  7025. (defun org-agenda-filter-by-tag-refine (arg &optional char)
  7026. "Refine the current filter. See `org-agenda-filter-by-tag'."
  7027. (interactive "P")
  7028. (org-agenda-filter-by-tag arg char 'refine))
  7029. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7030. "Create the form that tests a line for agenda filter. Optional
  7031. argument EXPAND can be used for the TYPE tag and will expand the
  7032. tags in the FILTER if any of the tags in FILTER are grouptags."
  7033. (let (f f1)
  7034. (cond
  7035. ;; Tag filter
  7036. ((eq type 'tag)
  7037. (setq filter
  7038. (delete-dups
  7039. (append (get 'org-agenda-tag-filter :preset-filter)
  7040. filter)))
  7041. (dolist (x filter)
  7042. (let ((op (string-to-char x)))
  7043. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7044. (setq x (list x)))
  7045. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7046. (push f1 f))))
  7047. ;; Category filter
  7048. ((eq type 'category)
  7049. (setq filter
  7050. (delete-dups
  7051. (append (get 'org-agenda-category-filter :preset-filter)
  7052. filter)))
  7053. (dolist (x filter)
  7054. (if (equal "-" (substring x 0 1))
  7055. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7056. (setq f1 (list 'equal (substring x 1) 'cat)))
  7057. (push f1 f)))
  7058. ;; Regexp filter
  7059. ((eq type 'regexp)
  7060. (setq filter
  7061. (delete-dups
  7062. (append (get 'org-agenda-regexp-filter :preset-filter)
  7063. filter)))
  7064. (dolist (x filter)
  7065. (if (equal "-" (substring x 0 1))
  7066. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7067. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7068. (push f1 f)))
  7069. ;; Effort filter
  7070. ((eq type 'effort)
  7071. (setq filter
  7072. (delete-dups
  7073. (append (get 'org-agenda-effort-filter :preset-filter)
  7074. filter)))
  7075. (dolist (x filter)
  7076. (push (org-agenda-filter-effort-form x) f))))
  7077. (cons 'and (nreverse f))))
  7078. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7079. "Create the form that tests a line for agenda filter for
  7080. tag-expressions. Return a match-expression given TAGS. OP is an
  7081. operator of type CHAR that allows the function to set the right
  7082. switches in the returned form."
  7083. (let (f f1) ;f = return expression. f1 = working-area
  7084. (dolist (x tags)
  7085. (let* ((tag (substring x 1))
  7086. (isregexp (and (equal "{" (substring tag 0 1))
  7087. (equal "}" (substring tag -1))))
  7088. regexp)
  7089. (cond
  7090. (isregexp
  7091. (setq regexp (substring tag 1 -1))
  7092. (setq f1 (list 'org-match-any-p regexp 'tags)))
  7093. (t
  7094. (setq f1 (list 'member (downcase tag) 'tags))))
  7095. (when (eq op ?-)
  7096. (setq f1 (list 'not f1))))
  7097. (push f1 f))
  7098. ;; Any of the expressions can match if op = +
  7099. ;; all must match if the operator is -.
  7100. (if (eq op ?-)
  7101. (cons 'and f)
  7102. (cons 'or f))))
  7103. (defun org-agenda-filter-effort-form (e)
  7104. "Return the form to compare the effort of the current line with what E says.
  7105. E looks like \"+<2:25\"."
  7106. (let (op)
  7107. (setq e (substring e 1))
  7108. (setq op (string-to-char e) e (substring e 1))
  7109. (setq op (cond ((equal op ?<) '<=)
  7110. ((equal op ?>) '>=)
  7111. ((equal op ??) op)
  7112. (t '=)))
  7113. (list 'org-agenda-compare-effort (list 'quote op)
  7114. (org-duration-string-to-minutes e))))
  7115. (defun org-agenda-compare-effort (op value)
  7116. "Compare the effort of the current line with VALUE, using OP.
  7117. If the line does not have an effort defined, return nil."
  7118. (let ((eff (org-get-at-eol 'effort-minutes 1)))
  7119. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
  7120. value)))
  7121. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7122. "Expand group tags in FILTER for the agenda.
  7123. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7124. (if org-group-tags
  7125. (let ((case-fold-search t) rtn)
  7126. (mapc
  7127. (lambda (f)
  7128. (let (f0 dir)
  7129. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7130. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7131. (setq dir (if no-operator "" "+") f0 f))
  7132. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7133. (org-tags-expand f0 t t))
  7134. rtn))))
  7135. filter)
  7136. (reverse rtn))
  7137. filter))
  7138. (defun org-agenda-filter-apply (filter type &optional expand)
  7139. "Set FILTER as the new agenda filter and apply it. Optional
  7140. argument EXPAND can be used for the TYPE tag and will expand the
  7141. tags in the FILTER if any of the tags in FILTER are grouptags."
  7142. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7143. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7144. (let (tags cat txt)
  7145. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7146. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7147. ;; category is used as the filter:
  7148. (setq org-agenda-filtered-by-category
  7149. (and (eq type 'category)
  7150. (not (equal (substring (car filter) 0 1) "-"))))
  7151. (org-agenda-set-mode-name)
  7152. (save-excursion
  7153. (goto-char (point-min))
  7154. (while (not (eobp))
  7155. (if (org-get-at-bol 'org-marker)
  7156. (progn
  7157. (setq tags (org-get-at-bol 'tags)
  7158. cat (org-get-at-eol 'org-category 1)
  7159. txt (org-get-at-eol 'txt 1))
  7160. (if (not (eval org-agenda-filter-form))
  7161. (org-agenda-filter-hide-line type))
  7162. (beginning-of-line 2))
  7163. (beginning-of-line 2))))
  7164. (if (get-char-property (point) 'invisible)
  7165. (ignore-errors (org-agenda-previous-line)))))
  7166. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7167. "Filter by top headline HL."
  7168. (org-agenda-set-mode-name)
  7169. (save-excursion
  7170. (goto-char (point-min))
  7171. (while (not (eobp))
  7172. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7173. (tophl (and pos (org-find-top-headline pos))))
  7174. (if (and tophl (funcall (if negative 'identity 'not)
  7175. (string= hl tophl)))
  7176. (org-agenda-filter-hide-line 'top-headline)))
  7177. (beginning-of-line 2)))
  7178. (if (get-char-property (point) 'invisible)
  7179. (org-agenda-previous-line))
  7180. (setq org-agenda-top-headline-filter hl
  7181. org-agenda-filtered-by-top-headline t))
  7182. (defun org-agenda-filter-hide-line (type)
  7183. "Hide lines with TYPE in the agenda buffer."
  7184. (let* ((b (max (point-min) (1- (point-at-bol))))
  7185. (e (point-at-eol)))
  7186. (let ((inhibit-read-only t))
  7187. (add-text-properties
  7188. b e `(invisible org-filtered org-filter-type ,type)))))
  7189. (defun org-agenda-remove-filter (type)
  7190. (interactive)
  7191. "Remove filter of type TYPE from the agenda buffer."
  7192. (save-excursion
  7193. (goto-char (point-min))
  7194. (let ((inhibit-read-only t) pos)
  7195. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7196. (goto-char pos)
  7197. (remove-text-properties
  7198. (point) (next-single-property-change (point) 'org-filter-type)
  7199. `(invisible org-filtered org-filter-type ,type))))
  7200. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7201. (setq org-agenda-filter-form nil)
  7202. (org-agenda-set-mode-name)
  7203. (org-agenda-finalize)))
  7204. (defun org-agenda-filter-show-all-tag nil
  7205. (org-agenda-remove-filter 'tag))
  7206. (defun org-agenda-filter-show-all-re nil
  7207. (org-agenda-remove-filter 'regexp))
  7208. (defun org-agenda-filter-show-all-effort nil
  7209. (org-agenda-remove-filter 'effort))
  7210. (defun org-agenda-filter-show-all-cat nil
  7211. (org-agenda-remove-filter 'category))
  7212. (defun org-agenda-filter-show-all-top-filter nil
  7213. (org-agenda-remove-filter 'top-headline))
  7214. (defun org-agenda-manipulate-query-add ()
  7215. "Manipulate the query by adding a search term with positive selection.
  7216. Positive selection means the term must be matched for selection of an entry."
  7217. (interactive)
  7218. (org-agenda-manipulate-query ?\[))
  7219. (defun org-agenda-manipulate-query-subtract ()
  7220. "Manipulate the query by adding a search term with negative selection.
  7221. Negative selection means term must not be matched for selection of an entry."
  7222. (interactive)
  7223. (org-agenda-manipulate-query ?\]))
  7224. (defun org-agenda-manipulate-query-add-re ()
  7225. "Manipulate the query by adding a search regexp with positive selection.
  7226. Positive selection means the regexp must match for selection of an entry."
  7227. (interactive)
  7228. (org-agenda-manipulate-query ?\{))
  7229. (defun org-agenda-manipulate-query-subtract-re ()
  7230. "Manipulate the query by adding a search regexp with negative selection.
  7231. Negative selection means regexp must not match for selection of an entry."
  7232. (interactive)
  7233. (org-agenda-manipulate-query ?\}))
  7234. (defun org-agenda-manipulate-query (char)
  7235. (cond
  7236. ((memq org-agenda-type '(timeline agenda))
  7237. (let ((org-agenda-include-inactive-timestamps t))
  7238. (org-agenda-redo))
  7239. (message "Display now includes inactive timestamps as well"))
  7240. ((eq org-agenda-type 'search)
  7241. (org-add-to-string
  7242. 'org-agenda-query-string
  7243. (if org-agenda-last-search-view-search-was-boolean
  7244. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7245. (?\{ . " +{}") (?\} . " -{}"))))
  7246. " "))
  7247. (setq org-agenda-redo-command
  7248. (list 'org-search-view
  7249. (car (get-text-property (min (1- (point-max)) (point))
  7250. 'org-last-args))
  7251. org-agenda-query-string
  7252. (+ (length org-agenda-query-string)
  7253. (if (member char '(?\{ ?\})) 0 1))))
  7254. (set-register org-agenda-query-register org-agenda-query-string)
  7255. (let ((org-agenda-overriding-arguments
  7256. (cdr org-agenda-redo-command)))
  7257. (org-agenda-redo)))
  7258. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7259. org-agenda-type))))
  7260. (defun org-add-to-string (var string)
  7261. (set var (concat (symbol-value var) string)))
  7262. (defun org-agenda-goto-date (span)
  7263. "Jump to DATE in agenda."
  7264. (interactive "P")
  7265. (let* ((org-read-date-prefer-future
  7266. (eval org-agenda-jump-prefer-future))
  7267. (date (org-read-date))
  7268. (day (time-to-days (org-time-string-to-time date)))
  7269. (org-agenda-sticky-orig org-agenda-sticky)
  7270. (org-agenda-buffer-tmp-name (buffer-name))
  7271. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7272. (0-arg (or current-prefix-arg (car args)))
  7273. (2-arg (nth 2 args))
  7274. (with-hour-p (nth 4 org-agenda-redo-command))
  7275. (newcmd (list 'org-agenda-list 0-arg date
  7276. (org-agenda-span-to-ndays
  7277. 2-arg (org-time-string-to-absolute date))
  7278. with-hour-p))
  7279. (newargs (cdr newcmd))
  7280. (inhibit-read-only t)
  7281. org-agenda-sticky)
  7282. (if (not (org-agenda-check-type t 'agenda))
  7283. (error "Not available in non-agenda views")
  7284. (add-text-properties (point-min) (point-max)
  7285. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7286. (org-agenda-redo)
  7287. (goto-char (point-min))
  7288. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7289. (save-excursion (move-beginning-of-line 2) (eobp))))
  7290. (move-beginning-of-line 2))
  7291. (setq org-agenda-sticky org-agenda-sticky-orig
  7292. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7293. (defun org-agenda-goto-today ()
  7294. "Go to today."
  7295. (interactive)
  7296. (org-agenda-check-type t 'timeline 'agenda)
  7297. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7298. (curspan (nth 2 args))
  7299. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7300. (cond
  7301. (tdpos (goto-char tdpos))
  7302. ((eq org-agenda-type 'agenda)
  7303. (let* ((sd (org-agenda-compute-starting-span
  7304. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7305. (org-agenda-overriding-arguments args))
  7306. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7307. (org-agenda-redo)
  7308. (org-agenda-find-same-or-today-or-agenda)))
  7309. (t (error "Cannot find today")))))
  7310. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7311. (goto-char
  7312. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7313. (text-property-any (point-min) (point-max) 'org-today t)
  7314. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7315. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7316. (org-agenda-backward-block))
  7317. (point-min))))
  7318. (defun org-agenda-backward-block ()
  7319. "Move backward by one agenda block."
  7320. (interactive)
  7321. (org-agenda-forward-block 'backward))
  7322. (defun org-agenda-forward-block (&optional backward)
  7323. "Move forward by one agenda block.
  7324. When optional argument BACKWARD is set, go backward"
  7325. (interactive)
  7326. (cond ((not (derived-mode-p 'org-agenda-mode))
  7327. (user-error
  7328. "Cannot execute this command outside of org-agenda-mode buffers"))
  7329. ((looking-at (if backward "\\`" "\\'"))
  7330. (message "Already at the %s block" (if backward "first" "last")))
  7331. (t (let ((pos (prog1 (point)
  7332. (ignore-errors (if backward (backward-char 1)
  7333. (move-end-of-line 1)))))
  7334. (f (if backward
  7335. 'previous-single-property-change
  7336. 'next-single-property-change))
  7337. moved dest)
  7338. (while (and (setq dest (funcall
  7339. f (point) 'org-agenda-structural-header))
  7340. (not (get-text-property
  7341. (point) 'org-agenda-structural-header)))
  7342. (setq moved t)
  7343. (goto-char dest))
  7344. (if moved (move-beginning-of-line 1)
  7345. (goto-char (if backward (point-min) (point-max)))
  7346. (move-beginning-of-line 1)
  7347. (message "No %s block" (if backward "previous" "further")))))))
  7348. (defun org-agenda-later (arg)
  7349. "Go forward in time by the current span.
  7350. With prefix ARG, go forward that many times the current span."
  7351. (interactive "p")
  7352. (org-agenda-check-type t 'agenda)
  7353. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7354. (span (or (nth 2 args) org-agenda-current-span))
  7355. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7356. (greg (calendar-gregorian-from-absolute sd))
  7357. (cnt (org-get-at-bol 'org-day-cnt))
  7358. greg2)
  7359. (cond
  7360. ((numberp span)
  7361. (setq sd (+ (* span arg) sd)))
  7362. ((eq span 'day)
  7363. (setq sd (+ arg sd)))
  7364. ((eq span 'week)
  7365. (setq sd (+ (* 7 arg) sd)))
  7366. ((eq span 'fortnight)
  7367. (setq sd (+ (* 14 arg) sd)))
  7368. ((eq span 'month)
  7369. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7370. sd (calendar-absolute-from-gregorian greg2))
  7371. (setcar greg2 (1+ (car greg2))))
  7372. ((eq span 'year)
  7373. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7374. sd (calendar-absolute-from-gregorian greg2))
  7375. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7376. (t
  7377. (setq sd (+ (* span arg) sd))))
  7378. (let ((org-agenda-overriding-cmd
  7379. ;; `cmd' may have been set by `org-agenda-run-series' which
  7380. ;; uses `org-agenda-overriding-cmd' to decide whether
  7381. ;; overriding is allowed for `cmd'
  7382. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7383. (org-agenda-overriding-arguments
  7384. (list (car args) sd span)))
  7385. (org-agenda-redo)
  7386. (org-agenda-find-same-or-today-or-agenda cnt))))
  7387. (defun org-agenda-earlier (arg)
  7388. "Go backward in time by the current span.
  7389. With prefix ARG, go backward that many times the current span."
  7390. (interactive "p")
  7391. (org-agenda-later (- arg)))
  7392. (defun org-agenda-view-mode-dispatch ()
  7393. "Call one of the view mode commands."
  7394. (interactive)
  7395. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7396. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7397. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7398. (let ((a (read-char-exclusive)))
  7399. (case a
  7400. (?\ (call-interactively 'org-agenda-reset-view))
  7401. (?d (call-interactively 'org-agenda-day-view))
  7402. (?w (call-interactively 'org-agenda-week-view))
  7403. (?t (call-interactively 'org-agenda-fortnight-view))
  7404. (?m (call-interactively 'org-agenda-month-view))
  7405. (?y (call-interactively 'org-agenda-year-view))
  7406. (?l (call-interactively 'org-agenda-log-mode))
  7407. (?L (org-agenda-log-mode '(4)))
  7408. (?c (org-agenda-log-mode 'clockcheck))
  7409. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7410. (?a (call-interactively 'org-agenda-archives-mode))
  7411. (?A (org-agenda-archives-mode 'files))
  7412. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7413. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7414. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7415. (?D (call-interactively 'org-agenda-toggle-diary))
  7416. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7417. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7418. (org-agenda-check-type t 'timeline 'agenda)
  7419. (org-agenda-redo))
  7420. (message "Display now includes inactive timestamps as well"))
  7421. (?q (message "Abort"))
  7422. (otherwise (error "Invalid key" )))))
  7423. (defun org-agenda-reset-view ()
  7424. "Switch to default view for agenda."
  7425. (interactive)
  7426. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7427. (defun org-agenda-day-view (&optional day-of-month)
  7428. "Switch to daily view for agenda.
  7429. With argument DAY-OF-MONTH, switch to that day of the month."
  7430. (interactive "P")
  7431. (org-agenda-change-time-span 'day day-of-month))
  7432. (defun org-agenda-week-view (&optional iso-week)
  7433. "Switch to daily view for agenda.
  7434. With argument ISO-WEEK, switch to the corresponding ISO week.
  7435. If ISO-WEEK has more then 2 digits, only the last two encode the
  7436. week. Any digits before this encode a year. So 200712 means
  7437. week 12 of year 2007. Years in the range 1938-2037 can also be
  7438. written as 2-digit years."
  7439. (interactive "P")
  7440. (org-agenda-change-time-span 'week iso-week))
  7441. (defun org-agenda-fortnight-view (&optional iso-week)
  7442. "Switch to daily view for agenda.
  7443. With argument ISO-WEEK, switch to the corresponding ISO week.
  7444. If ISO-WEEK has more then 2 digits, only the last two encode the
  7445. week. Any digits before this encode a year. So 200712 means
  7446. week 12 of year 2007. Years in the range 1938-2037 can also be
  7447. written as 2-digit years."
  7448. (interactive "P")
  7449. (org-agenda-change-time-span 'fortnight iso-week))
  7450. (defun org-agenda-month-view (&optional month)
  7451. "Switch to monthly view for agenda.
  7452. With argument MONTH, switch to that month."
  7453. (interactive "P")
  7454. (org-agenda-change-time-span 'month month))
  7455. (defun org-agenda-year-view (&optional year)
  7456. "Switch to yearly view for agenda.
  7457. With argument YEAR, switch to that year.
  7458. If MONTH has more then 2 digits, only the last two encode the
  7459. month. Any digits before this encode a year. So 200712 means
  7460. December year 2007. Years in the range 1938-2037 can also be
  7461. written as 2-digit years."
  7462. (interactive "P")
  7463. (when year
  7464. (setq year (org-small-year-to-year year)))
  7465. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7466. (org-agenda-change-time-span 'year year)
  7467. (error "Abort")))
  7468. (defun org-agenda-change-time-span (span &optional n)
  7469. "Change the agenda view to SPAN.
  7470. SPAN may be `day', `week', `fortnight', `month', `year'."
  7471. (org-agenda-check-type t 'agenda)
  7472. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7473. (curspan (nth 2 args)))
  7474. (if (and (not n) (equal curspan span))
  7475. (error "Viewing span is already \"%s\"" span))
  7476. (let* ((sd (or (org-get-at-bol 'day)
  7477. (nth 1 args)
  7478. org-starting-day))
  7479. (sd (org-agenda-compute-starting-span sd span n))
  7480. (org-agenda-overriding-cmd
  7481. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7482. (org-agenda-overriding-arguments
  7483. (list (car args) sd span)))
  7484. (org-agenda-redo)
  7485. (org-agenda-find-same-or-today-or-agenda))
  7486. (org-agenda-set-mode-name)
  7487. (message "Switched to %s view" span)))
  7488. (defun org-agenda-compute-starting-span (sd span &optional n)
  7489. "Compute starting date for agenda.
  7490. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7491. is a cons cell with the starting date and the number of days,
  7492. so that the date SD will be in that range."
  7493. (let* ((greg (calendar-gregorian-from-absolute sd))
  7494. (dg (nth 1 greg))
  7495. (mg (car greg))
  7496. (yg (nth 2 greg)))
  7497. (cond
  7498. ((eq span 'day)
  7499. (when n
  7500. (setq sd (+ (calendar-absolute-from-gregorian
  7501. (list mg 1 yg))
  7502. n -1))))
  7503. ((or (eq span 'week) (eq span 'fortnight))
  7504. (let* ((nt (calendar-day-of-week
  7505. (calendar-gregorian-from-absolute sd)))
  7506. (d (if org-agenda-start-on-weekday
  7507. (- nt org-agenda-start-on-weekday)
  7508. 0))
  7509. y1)
  7510. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7511. (when n
  7512. (require 'cal-iso)
  7513. (when (> n 99)
  7514. (setq y1 (org-small-year-to-year (/ n 100))
  7515. n (mod n 100)))
  7516. (setq sd
  7517. (calendar-iso-to-absolute
  7518. (list n 1
  7519. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7520. ((eq span 'month)
  7521. (let (y1)
  7522. (when (and n (> n 99))
  7523. (setq y1 (org-small-year-to-year (/ n 100))
  7524. n (mod n 100)))
  7525. (setq sd (calendar-absolute-from-gregorian
  7526. (list (or n mg) 1 (or y1 yg))))))
  7527. ((eq span 'year)
  7528. (setq sd (calendar-absolute-from-gregorian
  7529. (list 1 1 (or n yg))))))
  7530. sd))
  7531. (defun org-agenda-next-date-line (&optional arg)
  7532. "Jump to the next line indicating a date in agenda buffer."
  7533. (interactive "p")
  7534. (org-agenda-check-type t 'agenda 'timeline)
  7535. (beginning-of-line 1)
  7536. ;; This does not work if user makes date format that starts with a blank
  7537. (if (looking-at "^\\S-") (forward-char 1))
  7538. (if (not (re-search-forward "^\\S-" nil t arg))
  7539. (progn
  7540. (backward-char 1)
  7541. (error "No next date after this line in this buffer")))
  7542. (goto-char (match-beginning 0)))
  7543. (defun org-agenda-previous-date-line (&optional arg)
  7544. "Jump to the previous line indicating a date in agenda buffer."
  7545. (interactive "p")
  7546. (org-agenda-check-type t 'agenda 'timeline)
  7547. (beginning-of-line 1)
  7548. (if (not (re-search-backward "^\\S-" nil t arg))
  7549. (error "No previous date before this line in this buffer")))
  7550. ;; Initialize the highlight
  7551. (defvar org-hl (make-overlay 1 1))
  7552. (overlay-put org-hl 'face 'highlight)
  7553. (defun org-highlight (begin end &optional buffer)
  7554. "Highlight a region with overlay."
  7555. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7556. (defun org-unhighlight ()
  7557. "Detach overlay INDEX."
  7558. (org-detach-overlay org-hl))
  7559. (defun org-unhighlight-once ()
  7560. "Remove the highlight from its position, and this function from the hook."
  7561. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7562. (org-unhighlight))
  7563. (defvar org-agenda-pre-follow-window-conf nil)
  7564. (defun org-agenda-follow-mode ()
  7565. "Toggle follow mode in an agenda buffer."
  7566. (interactive)
  7567. (unless org-agenda-follow-mode
  7568. (setq org-agenda-pre-follow-window-conf
  7569. (current-window-configuration)))
  7570. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7571. (unless org-agenda-follow-mode
  7572. (set-window-configuration org-agenda-pre-follow-window-conf))
  7573. (org-agenda-set-mode-name)
  7574. (org-agenda-do-context-action)
  7575. (message "Follow mode is %s"
  7576. (if org-agenda-follow-mode "on" "off")))
  7577. (defun org-agenda-entry-text-mode (&optional arg)
  7578. "Toggle entry text mode in an agenda buffer."
  7579. (interactive "P")
  7580. (if (or org-agenda-tag-filter
  7581. org-agenda-category-filter
  7582. org-agenda-regexp-filter
  7583. org-agenda-top-headline-filter)
  7584. (user-error "Can't show entry text in filtered views")
  7585. (setq org-agenda-entry-text-mode (or (integerp arg)
  7586. (not org-agenda-entry-text-mode)))
  7587. (org-agenda-entry-text-hide)
  7588. (and org-agenda-entry-text-mode
  7589. (let ((org-agenda-entry-text-maxlines
  7590. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7591. (org-agenda-entry-text-show)))
  7592. (org-agenda-set-mode-name)
  7593. (message "Entry text mode is %s%s"
  7594. (if org-agenda-entry-text-mode "on" "off")
  7595. (if (not org-agenda-entry-text-mode) ""
  7596. (format " (maximum number of lines is %d)"
  7597. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7598. (defun org-agenda-clockreport-mode ()
  7599. "Toggle clocktable mode in an agenda buffer."
  7600. (interactive)
  7601. (org-agenda-check-type t 'agenda)
  7602. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7603. (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
  7604. (org-agenda-set-mode-name)
  7605. (org-agenda-redo)
  7606. (message "Clocktable mode is %s"
  7607. (if org-agenda-clockreport-mode "on" "off")))
  7608. (defun org-agenda-log-mode (&optional special)
  7609. "Toggle log mode in an agenda buffer.
  7610. With argument SPECIAL, show all possible log items, not only the ones
  7611. configured in `org-agenda-log-mode-items'.
  7612. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7613. (interactive "P")
  7614. (org-agenda-check-type t 'agenda 'timeline)
  7615. (setq org-agenda-show-log
  7616. (cond
  7617. ((equal special '(16)) 'only)
  7618. ((eq special 'clockcheck)
  7619. (if (eq org-agenda-show-log 'clockcheck)
  7620. nil 'clockcheck))
  7621. (special '(closed clock state))
  7622. (t (not org-agenda-show-log))))
  7623. (setq org-agenda-start-with-log-mode org-agenda-show-log)
  7624. (org-agenda-set-mode-name)
  7625. (org-agenda-redo)
  7626. (message "Log mode is %s"
  7627. (if org-agenda-show-log "on" "off")))
  7628. (defun org-agenda-archives-mode (&optional with-files)
  7629. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7630. When called with a prefix argument, include all archive files as well."
  7631. (interactive "P")
  7632. (setq org-agenda-archives-mode
  7633. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7634. (org-agenda-set-mode-name)
  7635. (org-agenda-redo)
  7636. (message
  7637. "%s"
  7638. (cond
  7639. ((eq org-agenda-archives-mode nil)
  7640. "No archives are included")
  7641. ((eq org-agenda-archives-mode 'trees)
  7642. (format "Trees with :%s: tag are included" org-archive-tag))
  7643. ((eq org-agenda-archives-mode t)
  7644. (format "Trees with :%s: tag and all active archive files are included"
  7645. org-archive-tag)))))
  7646. (defun org-agenda-toggle-diary ()
  7647. "Toggle diary inclusion in an agenda buffer."
  7648. (interactive)
  7649. (org-agenda-check-type t 'agenda)
  7650. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7651. (org-agenda-redo)
  7652. (org-agenda-set-mode-name)
  7653. (message "Diary inclusion turned %s"
  7654. (if org-agenda-include-diary "on" "off")))
  7655. (defun org-agenda-toggle-deadlines ()
  7656. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7657. (interactive)
  7658. (org-agenda-check-type t 'agenda)
  7659. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7660. (org-agenda-redo)
  7661. (org-agenda-set-mode-name)
  7662. (message "Deadlines inclusion turned %s"
  7663. (if org-agenda-include-deadlines "on" "off")))
  7664. (defun org-agenda-toggle-time-grid ()
  7665. "Toggle time grid in an agenda buffer."
  7666. (interactive)
  7667. (org-agenda-check-type t 'agenda)
  7668. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7669. (org-agenda-redo)
  7670. (org-agenda-set-mode-name)
  7671. (message "Time-grid turned %s"
  7672. (if org-agenda-use-time-grid "on" "off")))
  7673. (defun org-agenda-set-mode-name ()
  7674. "Set the mode name to indicate all the small mode settings."
  7675. (setq mode-name
  7676. (list "Org-Agenda"
  7677. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7678. " "
  7679. '(:eval (org-agenda-span-name org-agenda-current-span))
  7680. (if org-agenda-follow-mode " Follow" "")
  7681. (if org-agenda-entry-text-mode " ETxt" "")
  7682. (if org-agenda-include-diary " Diary" "")
  7683. (if org-agenda-include-deadlines " Ddl" "")
  7684. (if org-agenda-use-time-grid " Grid" "")
  7685. (if (and (boundp 'org-habit-show-habits)
  7686. org-habit-show-habits) " Habit" "")
  7687. (cond
  7688. ((consp org-agenda-show-log) " LogAll")
  7689. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7690. (org-agenda-show-log " Log")
  7691. (t ""))
  7692. (if (or org-agenda-category-filter
  7693. (get 'org-agenda-category-filter :preset-filter))
  7694. '(:eval (org-propertize
  7695. (concat " <"
  7696. (mapconcat
  7697. 'identity
  7698. (append
  7699. (get 'org-agenda-category-filter :preset-filter)
  7700. org-agenda-category-filter)
  7701. "")
  7702. ">")
  7703. 'face 'org-agenda-filter-category
  7704. 'help-echo "Category used in filtering")) "")
  7705. (if (or org-agenda-tag-filter
  7706. (get 'org-agenda-tag-filter :preset-filter))
  7707. '(:eval (org-propertize
  7708. (concat " {"
  7709. (mapconcat
  7710. 'identity
  7711. (append
  7712. (get 'org-agenda-tag-filter :preset-filter)
  7713. org-agenda-tag-filter)
  7714. "")
  7715. "}")
  7716. 'face 'org-agenda-filter-tags
  7717. 'help-echo "Tags used in filtering")) "")
  7718. (if (or org-agenda-effort-filter
  7719. (get 'org-agenda-effort-filter :preset-filter))
  7720. '(:eval (org-propertize
  7721. (concat " {"
  7722. (mapconcat
  7723. 'identity
  7724. (append
  7725. (get 'org-agenda-effort-filter :preset-filter)
  7726. org-agenda-effort-filter)
  7727. "")
  7728. "}")
  7729. 'face 'org-agenda-filter-effort
  7730. 'help-echo "Effort conditions used in filtering")) "")
  7731. (if (or org-agenda-regexp-filter
  7732. (get 'org-agenda-regexp-filter :preset-filter))
  7733. '(:eval (org-propertize
  7734. (concat " ["
  7735. (mapconcat
  7736. 'identity
  7737. (append
  7738. (get 'org-agenda-regexp-filter :preset-filter)
  7739. org-agenda-regexp-filter)
  7740. "")
  7741. "]")
  7742. 'face 'org-agenda-filter-regexp
  7743. 'help-echo "Regexp used in filtering")) "")
  7744. (if org-agenda-archives-mode
  7745. (if (eq org-agenda-archives-mode t)
  7746. " Archives"
  7747. (format " :%s:" org-archive-tag))
  7748. "")
  7749. (if org-agenda-clockreport-mode " Clock" "")))
  7750. (force-mode-line-update))
  7751. (define-obsolete-function-alias
  7752. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7753. (defun org-agenda-update-agenda-type ()
  7754. "Update the agenda type after each command."
  7755. (setq org-agenda-type
  7756. (or (get-text-property (point) 'org-agenda-type)
  7757. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7758. (defun org-agenda-next-line ()
  7759. "Move cursor to the next line, and show if follow mode is active."
  7760. (interactive)
  7761. (call-interactively 'next-line)
  7762. (org-agenda-do-context-action))
  7763. (defun org-agenda-previous-line ()
  7764. "Move cursor to the previous line, and show if follow-mode is active."
  7765. (interactive)
  7766. (call-interactively 'previous-line)
  7767. (org-agenda-do-context-action))
  7768. (defun org-agenda-next-item (n)
  7769. "Move cursor to next agenda item."
  7770. (interactive "p")
  7771. (let ((col (current-column)))
  7772. (dotimes (c n)
  7773. (when (next-single-property-change (point-at-eol) 'org-marker)
  7774. (move-end-of-line 1)
  7775. (goto-char (next-single-property-change (point) 'org-marker))))
  7776. (org-move-to-column col))
  7777. (org-agenda-do-context-action))
  7778. (defun org-agenda-previous-item (n)
  7779. "Move cursor to next agenda item."
  7780. (interactive "p")
  7781. (dotimes (c n)
  7782. (let ((col (current-column))
  7783. (goto (save-excursion
  7784. (move-end-of-line 0)
  7785. (previous-single-property-change (point) 'org-marker))))
  7786. (if goto (goto-char goto))
  7787. (org-move-to-column col)))
  7788. (org-agenda-do-context-action))
  7789. (defun org-agenda-do-context-action ()
  7790. "Show outline path and, maybe, follow mode window."
  7791. (let ((m (org-get-at-bol 'org-marker)))
  7792. (when (and (markerp m) (marker-buffer m))
  7793. (and org-agenda-follow-mode
  7794. (if org-agenda-follow-indirect
  7795. (org-agenda-tree-to-indirect-buffer nil)
  7796. (org-agenda-show)))
  7797. (and org-agenda-show-outline-path
  7798. (org-with-point-at m (org-display-outline-path t))))))
  7799. (defun org-agenda-show-tags ()
  7800. "Show the tags applicable to the current item."
  7801. (interactive)
  7802. (let* ((tags (org-get-at-bol 'tags)))
  7803. (if tags
  7804. (message "Tags are :%s:"
  7805. (org-no-properties (mapconcat 'identity tags ":")))
  7806. (message "No tags associated with this line"))))
  7807. (defun org-agenda-goto (&optional highlight)
  7808. "Go to the entry at point in the corresponding Org-mode file."
  7809. (interactive)
  7810. (let* ((marker (or (org-get-at-bol 'org-marker)
  7811. (org-agenda-error)))
  7812. (buffer (marker-buffer marker))
  7813. (pos (marker-position marker)))
  7814. (switch-to-buffer-other-window buffer)
  7815. (widen)
  7816. (push-mark)
  7817. (goto-char pos)
  7818. (when (derived-mode-p 'org-mode)
  7819. (org-show-context 'agenda)
  7820. (save-excursion
  7821. (and (outline-next-heading)
  7822. (org-flag-heading nil)))) ; show the next heading
  7823. (when (outline-invisible-p)
  7824. (show-entry)) ; display invisible text
  7825. (recenter (/ (window-height) 2))
  7826. (org-back-to-heading t)
  7827. (if (re-search-forward org-complex-heading-regexp nil t)
  7828. (goto-char (match-beginning 4)))
  7829. (run-hooks 'org-agenda-after-show-hook)
  7830. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7831. (defvar org-agenda-after-show-hook nil
  7832. "Normal hook run after an item has been shown from the agenda.
  7833. Point is in the buffer where the item originated.")
  7834. (defun org-agenda-kill ()
  7835. "Kill the entry or subtree belonging to the current agenda entry."
  7836. (interactive)
  7837. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7838. (let* ((bufname-orig (buffer-name))
  7839. (marker (or (org-get-at-bol 'org-marker)
  7840. (org-agenda-error)))
  7841. (buffer (marker-buffer marker))
  7842. (pos (marker-position marker))
  7843. (type (org-get-at-bol 'type))
  7844. dbeg dend (n 0) conf)
  7845. (org-with-remote-undo buffer
  7846. (with-current-buffer buffer
  7847. (save-excursion
  7848. (goto-char pos)
  7849. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7850. (setq dbeg (progn (org-back-to-heading t) (point))
  7851. dend (org-end-of-subtree t t))
  7852. (setq dbeg (point-at-bol)
  7853. dend (min (point-max) (1+ (point-at-eol)))))
  7854. (goto-char dbeg)
  7855. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7856. (setq conf (or (eq t org-agenda-confirm-kill)
  7857. (and (numberp org-agenda-confirm-kill)
  7858. (> n org-agenda-confirm-kill))))
  7859. (and conf
  7860. (not (y-or-n-p
  7861. (format "Delete entry with %d lines in buffer \"%s\"? "
  7862. n (buffer-name buffer))))
  7863. (error "Abort"))
  7864. (let ((org-agenda-buffer-name bufname-orig))
  7865. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7866. (with-current-buffer buffer (delete-region dbeg dend))
  7867. (message "Agenda item and source killed"))))
  7868. (defvar org-archive-default-command) ; defined in org-archive.el
  7869. (defun org-agenda-archive-default ()
  7870. "Archive the entry or subtree belonging to the current agenda entry."
  7871. (interactive)
  7872. (require 'org-archive)
  7873. (org-agenda-archive-with org-archive-default-command))
  7874. (defun org-agenda-archive-default-with-confirmation ()
  7875. "Archive the entry or subtree belonging to the current agenda entry."
  7876. (interactive)
  7877. (require 'org-archive)
  7878. (org-agenda-archive-with org-archive-default-command 'confirm))
  7879. (defun org-agenda-archive ()
  7880. "Archive the entry or subtree belonging to the current agenda entry."
  7881. (interactive)
  7882. (org-agenda-archive-with 'org-archive-subtree))
  7883. (defun org-agenda-archive-to-archive-sibling ()
  7884. "Move the entry to the archive sibling."
  7885. (interactive)
  7886. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7887. (defun org-agenda-archive-with (cmd &optional confirm)
  7888. "Move the entry to the archive sibling."
  7889. (interactive)
  7890. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7891. (let* ((bufname-orig (buffer-name))
  7892. (marker (or (org-get-at-bol 'org-marker)
  7893. (org-agenda-error)))
  7894. (buffer (marker-buffer marker))
  7895. (pos (marker-position marker)))
  7896. (org-with-remote-undo buffer
  7897. (with-current-buffer buffer
  7898. (if (derived-mode-p 'org-mode)
  7899. (if (and confirm
  7900. (not (y-or-n-p "Archive this subtree or entry? ")))
  7901. (error "Abort")
  7902. (save-window-excursion
  7903. (goto-char pos)
  7904. (let ((org-agenda-buffer-name bufname-orig))
  7905. (org-remove-subtree-entries-from-agenda))
  7906. (org-back-to-heading t)
  7907. (funcall cmd)))
  7908. (error "Archiving works only in Org-mode files"))))))
  7909. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7910. "Remove all lines in the agenda that correspond to a given subtree.
  7911. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7912. If this information is not given, the function uses the tree at point."
  7913. (let ((buf (or buf (current-buffer))) m p)
  7914. (save-excursion
  7915. (unless (and beg end)
  7916. (org-back-to-heading t)
  7917. (setq beg (point))
  7918. (org-end-of-subtree t)
  7919. (setq end (point)))
  7920. (set-buffer (get-buffer org-agenda-buffer-name))
  7921. (save-excursion
  7922. (goto-char (point-max))
  7923. (beginning-of-line 1)
  7924. (while (not (bobp))
  7925. (when (and (setq m (org-get-at-bol 'org-marker))
  7926. (equal buf (marker-buffer m))
  7927. (setq p (marker-position m))
  7928. (>= p beg)
  7929. (< p end))
  7930. (let ((inhibit-read-only t))
  7931. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7932. (beginning-of-line 0))))))
  7933. (defun org-agenda-refile (&optional goto rfloc no-update)
  7934. "Refile the item at point.
  7935. When GOTO is 0 or '(64) or \\[universal-argument] \\[universal-argument] \\[universal-argument], clear the refile cache.
  7936. When GOTO is '(16) or \\[universal-argument] \\[universal-argument], go to the location of the last refiled item.
  7937. RFLOC can be a refile location obtained in a different way.
  7938. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7939. (interactive "P")
  7940. (cond
  7941. ((member goto '(0 (64)))
  7942. (org-refile-cache-clear))
  7943. ((equal goto '(16))
  7944. (org-refile-goto-last-stored))
  7945. (t
  7946. (let* ((buffer-orig (buffer-name))
  7947. (marker (or (org-get-at-bol 'org-hd-marker)
  7948. (org-agenda-error)))
  7949. (buffer (marker-buffer marker))
  7950. (pos (marker-position marker))
  7951. (rfloc (or rfloc
  7952. (org-refile-get-location
  7953. (if goto "Goto" "Refile to") buffer
  7954. org-refile-allow-creating-parent-nodes))))
  7955. (with-current-buffer buffer
  7956. (save-excursion
  7957. (save-restriction
  7958. (widen)
  7959. (goto-char marker)
  7960. (let ((org-agenda-buffer-name buffer-orig))
  7961. (org-remove-subtree-entries-from-agenda))
  7962. (org-refile goto buffer rfloc)))))
  7963. (unless no-update (org-agenda-redo)))))
  7964. (defun org-agenda-open-link (&optional arg)
  7965. "Open the link(s) in the current entry, if any.
  7966. This looks for a link in the displayed line in the agenda.
  7967. It also looks at the text of the entry itself."
  7968. (interactive "P")
  7969. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7970. (org-get-at-bol 'org-marker)))
  7971. (buffer (and marker (marker-buffer marker)))
  7972. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7973. (lkall (and buffer (org-offer-links-in-entry
  7974. buffer marker arg prefix)))
  7975. (lk0 (car lkall))
  7976. (lk (if (stringp lk0) (list lk0) lk0))
  7977. (lkend (cdr lkall))
  7978. trg)
  7979. (cond
  7980. ((and buffer lk)
  7981. (mapcar (lambda(l)
  7982. (with-current-buffer buffer
  7983. (setq trg (and (string-match org-bracket-link-regexp l)
  7984. (match-string 1 l)))
  7985. (if (or (not trg) (string-match org-any-link-re trg))
  7986. (save-excursion
  7987. (save-restriction
  7988. (widen)
  7989. (goto-char marker)
  7990. (when (search-forward l nil lkend)
  7991. (goto-char (match-beginning 0))
  7992. (org-open-at-point))))
  7993. ;; This is an internal link, widen the buffer
  7994. (switch-to-buffer-other-window buffer)
  7995. (widen)
  7996. (goto-char marker)
  7997. (when (search-forward l nil lkend)
  7998. (goto-char (match-beginning 0))
  7999. (org-open-at-point)))))
  8000. lk))
  8001. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  8002. (save-excursion
  8003. (beginning-of-line 1)
  8004. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  8005. (org-open-link-from-string (match-string 1)))
  8006. (t (message "No link to open here")))))
  8007. (defun org-agenda-copy-local-variable (var)
  8008. "Get a variable from a referenced buffer and install it here."
  8009. (let ((m (org-get-at-bol 'org-marker)))
  8010. (when (and m (buffer-live-p (marker-buffer m)))
  8011. (org-set-local var (with-current-buffer (marker-buffer m)
  8012. (symbol-value var))))))
  8013. (defun org-agenda-switch-to (&optional delete-other-windows)
  8014. "Go to the Org-mode file which contains the item at point."
  8015. (interactive)
  8016. (if (and org-return-follows-link
  8017. (not (org-get-at-bol 'org-marker))
  8018. (org-in-regexp org-bracket-link-regexp))
  8019. (org-open-link-from-string (match-string 0))
  8020. (let* ((marker (or (org-get-at-bol 'org-marker)
  8021. (org-agenda-error)))
  8022. (buffer (marker-buffer marker))
  8023. (pos (marker-position marker)))
  8024. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8025. (org-pop-to-buffer-same-window buffer)
  8026. (and delete-other-windows (delete-other-windows))
  8027. (widen)
  8028. (goto-char pos)
  8029. (org-back-to-heading t)
  8030. (when (derived-mode-p 'org-mode)
  8031. (org-show-context 'agenda)
  8032. (save-excursion
  8033. (and (outline-next-heading)
  8034. (org-flag-heading nil))) ; show the next heading
  8035. (when (outline-invisible-p)
  8036. (show-entry)) ; display invisible text
  8037. (run-hooks 'org-agenda-after-show-hook)))))
  8038. (defun org-agenda-goto-mouse (ev)
  8039. "Go to the Org-mode file which contains the item at the mouse click."
  8040. (interactive "e")
  8041. (mouse-set-point ev)
  8042. (org-agenda-goto))
  8043. (defun org-agenda-show (&optional full-entry)
  8044. "Display the Org-mode file which contains the item at point.
  8045. With prefix argument FULL-ENTRY, make the entire entry visible
  8046. if it was hidden in the outline."
  8047. (interactive "P")
  8048. (let ((win (selected-window)))
  8049. (org-agenda-goto t)
  8050. (when full-entry (org-show-entry))
  8051. (select-window win)))
  8052. (defvar org-agenda-show-window nil)
  8053. (defun org-agenda-show-and-scroll-up (&optional arg)
  8054. "Display the Org-mode file which contains the item at point.
  8055. When called repeatedly, scroll the window that is displaying the buffer.
  8056. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  8057. `show-subtree' to display the item, so that drawers and logbooks stay
  8058. folded."
  8059. (interactive "P")
  8060. (let ((win (selected-window)))
  8061. (if (and (window-live-p org-agenda-show-window)
  8062. (eq this-command last-command))
  8063. (progn
  8064. (select-window org-agenda-show-window)
  8065. (ignore-errors (scroll-up)))
  8066. (org-agenda-goto t)
  8067. (if arg (org-show-entry) (show-subtree))
  8068. (setq org-agenda-show-window (selected-window)))
  8069. (select-window win)))
  8070. (defun org-agenda-show-scroll-down ()
  8071. "Scroll down the window showing the agenda."
  8072. (interactive)
  8073. (let ((win (selected-window)))
  8074. (when (window-live-p org-agenda-show-window)
  8075. (select-window org-agenda-show-window)
  8076. (ignore-errors (scroll-down))
  8077. (select-window win))))
  8078. (defun org-agenda-show-1 (&optional more)
  8079. "Display the Org-mode file which contains the item at point.
  8080. The prefix arg selects the amount of information to display:
  8081. 0 hide the subtree
  8082. 1 just show the entry according to defaults.
  8083. 2 show the children view
  8084. 3 show the subtree view
  8085. 4 show the entire subtree and any LOGBOOK drawers
  8086. 5 show the entire subtree and any drawers
  8087. With prefix argument FULL-ENTRY, make the entire entry visible
  8088. if it was hidden in the outline."
  8089. (interactive "p")
  8090. (let ((win (selected-window)))
  8091. (org-agenda-goto t)
  8092. (org-back-to-heading)
  8093. (set-window-start (selected-window) (point-at-bol))
  8094. (cond
  8095. ((= more 0)
  8096. (hide-subtree)
  8097. (save-excursion
  8098. (org-back-to-heading)
  8099. (run-hook-with-args 'org-cycle-hook 'folded))
  8100. (message "Remote: FOLDED"))
  8101. ((and (org-called-interactively-p 'any) (= more 1))
  8102. (message "Remote: show with default settings"))
  8103. ((= more 2)
  8104. (show-entry)
  8105. (show-children)
  8106. (save-excursion
  8107. (org-back-to-heading)
  8108. (run-hook-with-args 'org-cycle-hook 'children))
  8109. (message "Remote: CHILDREN"))
  8110. ((= more 3)
  8111. (show-subtree)
  8112. (save-excursion
  8113. (org-back-to-heading)
  8114. (run-hook-with-args 'org-cycle-hook 'subtree))
  8115. (message "Remote: SUBTREE"))
  8116. ((= more 4)
  8117. (show-subtree)
  8118. (save-excursion
  8119. (org-back-to-heading)
  8120. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8121. (message "Remote: SUBTREE AND LOGBOOK"))
  8122. ((> more 4)
  8123. (show-subtree)
  8124. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8125. (select-window win)))
  8126. (defvar org-agenda-cycle-counter nil)
  8127. (defun org-agenda-cycle-show (&optional n)
  8128. "Show the current entry in another window, with default settings.
  8129. Default settings are taken from `org-show-context-detail'. When
  8130. use repeatedly in immediate succession, the remote entry will
  8131. cycle through visibility
  8132. children -> subtree -> folded
  8133. When called with a numeric prefix arg, that arg will be passed through to
  8134. `org-agenda-show-1'. For the interpretation of that argument, see the
  8135. docstring of `org-agenda-show-1'."
  8136. (interactive "P")
  8137. (if (integerp n)
  8138. (setq org-agenda-cycle-counter n)
  8139. (if (not (eq last-command this-command))
  8140. (setq org-agenda-cycle-counter 1)
  8141. (if (equal org-agenda-cycle-counter 0)
  8142. (setq org-agenda-cycle-counter 2)
  8143. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8144. (if (> org-agenda-cycle-counter 3)
  8145. (setq org-agenda-cycle-counter 0)))))
  8146. (org-agenda-show-1 org-agenda-cycle-counter))
  8147. (defun org-agenda-recenter (arg)
  8148. "Display the Org-mode file which contains the item at point and recenter."
  8149. (interactive "P")
  8150. (let ((win (selected-window)))
  8151. (org-agenda-goto t)
  8152. (recenter arg)
  8153. (select-window win)))
  8154. (defun org-agenda-show-mouse (ev)
  8155. "Display the Org-mode file which contains the item at the mouse click."
  8156. (interactive "e")
  8157. (mouse-set-point ev)
  8158. (org-agenda-show))
  8159. (defun org-agenda-check-no-diary ()
  8160. "Check if the entry is a diary link and abort if yes."
  8161. (if (org-get-at-bol 'org-agenda-diary-link)
  8162. (org-agenda-error)))
  8163. (defun org-agenda-error ()
  8164. "Throw an error when a command is not allowed in the agenda."
  8165. (user-error "Command not allowed in this line"))
  8166. (defun org-agenda-tree-to-indirect-buffer (arg)
  8167. "Show the subtree corresponding to the current entry in an indirect buffer.
  8168. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8169. With a numerical prefix ARG, go up to this level and then take that tree.
  8170. With a negative numeric ARG, go up by this number of levels.
  8171. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8172. use the dedicated frame)."
  8173. (interactive "P")
  8174. (if current-prefix-arg
  8175. (org-agenda-do-tree-to-indirect-buffer arg)
  8176. (let ((agenda-buffer (buffer-name))
  8177. (agenda-window (selected-window))
  8178. (indirect-window
  8179. (and org-last-indirect-buffer
  8180. (get-buffer-window org-last-indirect-buffer))))
  8181. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8182. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8183. (eq org-indirect-buffer-display 'dedicated-frame))
  8184. (unwind-protect
  8185. (unless (and indirect-window (window-live-p indirect-window))
  8186. (setq indirect-window (split-window agenda-window)))
  8187. (and indirect-window (select-window indirect-window))
  8188. (switch-to-buffer org-last-indirect-buffer :norecord)
  8189. (fit-window-to-buffer indirect-window)))
  8190. (select-window (get-buffer-window agenda-buffer))
  8191. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8192. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8193. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8194. (org-agenda-check-no-diary)
  8195. (let* ((marker (or (org-get-at-bol 'org-marker)
  8196. (org-agenda-error)))
  8197. (buffer (marker-buffer marker))
  8198. (pos (marker-position marker)))
  8199. (with-current-buffer buffer
  8200. (save-excursion
  8201. (goto-char pos)
  8202. (funcall 'org-tree-to-indirect-buffer arg)))))
  8203. (defvar org-last-heading-marker (make-marker)
  8204. "Marker pointing to the headline that last changed its TODO state
  8205. by a remote command from the agenda.")
  8206. (defun org-agenda-todo-nextset ()
  8207. "Switch TODO entry to next sequence."
  8208. (interactive)
  8209. (org-agenda-todo 'nextset))
  8210. (defun org-agenda-todo-previousset ()
  8211. "Switch TODO entry to previous sequence."
  8212. (interactive)
  8213. (org-agenda-todo 'previousset))
  8214. (defun org-agenda-todo (&optional arg)
  8215. "Cycle TODO state of line at point, also in Org-mode file.
  8216. This changes the line at point, all other lines in the agenda referring to
  8217. the same tree node, and the headline of the tree node in the Org-mode file."
  8218. (interactive "P")
  8219. (org-agenda-check-no-diary)
  8220. (let* ((col (current-column))
  8221. (marker (or (org-get-at-bol 'org-marker)
  8222. (org-agenda-error)))
  8223. (buffer (marker-buffer marker))
  8224. (pos (marker-position marker))
  8225. (hdmarker (org-get-at-bol 'org-hd-marker))
  8226. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8227. (inhibit-read-only t)
  8228. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8229. (org-with-remote-undo buffer
  8230. (with-current-buffer buffer
  8231. (widen)
  8232. (goto-char pos)
  8233. (org-show-context 'agenda)
  8234. (save-excursion
  8235. (and (outline-next-heading)
  8236. (org-flag-heading nil))) ; show the next heading
  8237. (let ((current-prefix-arg arg))
  8238. (call-interactively 'org-todo))
  8239. (and (bolp) (forward-char 1))
  8240. (setq newhead (org-get-heading))
  8241. (when (and (org-bound-and-true-p
  8242. org-agenda-headline-snapshot-before-repeat)
  8243. (not (equal org-agenda-headline-snapshot-before-repeat
  8244. newhead))
  8245. todayp)
  8246. (setq newhead org-agenda-headline-snapshot-before-repeat
  8247. just-one t))
  8248. (save-excursion
  8249. (org-back-to-heading)
  8250. (move-marker org-last-heading-marker (point))))
  8251. (beginning-of-line 1)
  8252. (save-window-excursion
  8253. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8254. (when (org-bound-and-true-p org-clock-out-when-done)
  8255. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8256. newhead)
  8257. (org-agenda-unmark-clocking-task))
  8258. (org-move-to-column col)
  8259. (org-agenda-mark-clocking-task))))
  8260. (defun org-agenda-add-note (&optional arg)
  8261. "Add a time-stamped note to the entry at point."
  8262. (interactive "P")
  8263. (org-agenda-check-no-diary)
  8264. (let* ((marker (or (org-get-at-bol 'org-marker)
  8265. (org-agenda-error)))
  8266. (buffer (marker-buffer marker))
  8267. (pos (marker-position marker))
  8268. (hdmarker (org-get-at-bol 'org-hd-marker))
  8269. (inhibit-read-only t))
  8270. (with-current-buffer buffer
  8271. (widen)
  8272. (goto-char pos)
  8273. (org-show-context 'agenda)
  8274. (save-excursion
  8275. (and (outline-next-heading)
  8276. (org-flag-heading nil))) ; show the next heading
  8277. (org-add-note))))
  8278. (defun org-agenda-change-all-lines (newhead hdmarker
  8279. &optional fixface just-this)
  8280. "Change all lines in the agenda buffer which match HDMARKER.
  8281. The new content of the line will be NEWHEAD (as modified by
  8282. `org-agenda-format-item'). HDMARKER is checked with
  8283. `equal' against all `org-hd-marker' text properties in the file.
  8284. If FIXFACE is non-nil, the face of each item is modified according to
  8285. the new TODO state.
  8286. If JUST-THIS is non-nil, change just the current line, not all.
  8287. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8288. (let* ((inhibit-read-only t)
  8289. (line (org-current-line))
  8290. (org-agenda-buffer (current-buffer))
  8291. (thetags (with-current-buffer (marker-buffer hdmarker)
  8292. (save-excursion (save-restriction (widen)
  8293. (goto-char hdmarker)
  8294. (org-get-tags-at)))))
  8295. props m pl undone-face done-face finish new dotime level cat tags)
  8296. (save-excursion
  8297. (goto-char (point-max))
  8298. (beginning-of-line 1)
  8299. (while (not finish)
  8300. (setq finish (bobp))
  8301. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8302. (or (not just-this) (= (org-current-line) line))
  8303. (equal m hdmarker))
  8304. (setq props (text-properties-at (point))
  8305. dotime (org-get-at-bol 'dotime)
  8306. cat (org-get-at-eol 'org-category 1)
  8307. level (org-get-at-bol 'level)
  8308. tags thetags
  8309. new
  8310. (let ((org-prefix-format-compiled
  8311. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8312. org-prefix-format-compiled))
  8313. (extra (org-get-at-bol 'extra)))
  8314. (with-current-buffer (marker-buffer hdmarker)
  8315. (save-excursion
  8316. (save-restriction
  8317. (widen)
  8318. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8319. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8320. undone-face (org-get-at-bol 'undone-face)
  8321. done-face (org-get-at-bol 'done-face))
  8322. (beginning-of-line 1)
  8323. (cond
  8324. ((equal new "")
  8325. (and (looking-at ".*\n?") (replace-match "")))
  8326. ((looking-at ".*")
  8327. (replace-match new t t)
  8328. (beginning-of-line 1)
  8329. (add-text-properties (point-at-bol) (point-at-eol) props)
  8330. (when fixface
  8331. (add-text-properties
  8332. (point-at-bol) (point-at-eol)
  8333. (list 'face
  8334. (if org-last-todo-state-is-todo
  8335. undone-face done-face))))
  8336. (org-agenda-highlight-todo 'line)
  8337. (beginning-of-line 1))
  8338. (t (error "Line update did not work")))
  8339. (save-restriction
  8340. (narrow-to-region (point-at-bol) (point-at-eol))
  8341. (org-agenda-finalize)))
  8342. (beginning-of-line 0)))))
  8343. (defun org-agenda-align-tags (&optional line)
  8344. "Align all tags in agenda items to `org-agenda-tags-column'."
  8345. (let ((inhibit-read-only t) l c)
  8346. (save-excursion
  8347. (goto-char (if line (point-at-bol) (point-min)))
  8348. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8349. (if line (point-at-eol) nil) t)
  8350. (add-text-properties
  8351. (match-beginning 2) (match-end 2)
  8352. (list 'face (delq nil (let ((prop (get-text-property
  8353. (match-beginning 2) 'face)))
  8354. (or (listp prop) (setq prop (list prop)))
  8355. (if (memq 'org-tag prop)
  8356. prop
  8357. (cons 'org-tag prop))))))
  8358. (setq l (- (match-end 2) (match-beginning 2))
  8359. c (if (< org-agenda-tags-column 0)
  8360. (- (abs org-agenda-tags-column) l)
  8361. org-agenda-tags-column))
  8362. (delete-region (match-beginning 1) (match-end 1))
  8363. (goto-char (match-beginning 1))
  8364. (insert (org-add-props
  8365. (make-string (max 1 (- c (current-column))) ?\ )
  8366. (plist-put (copy-sequence (text-properties-at (point)))
  8367. 'face nil))))
  8368. (goto-char (point-min))
  8369. (org-font-lock-add-tag-faces (point-max)))))
  8370. (defun org-agenda-priority-up ()
  8371. "Increase the priority of line at point, also in Org-mode file."
  8372. (interactive)
  8373. (org-agenda-priority 'up))
  8374. (defun org-agenda-priority-down ()
  8375. "Decrease the priority of line at point, also in Org-mode file."
  8376. (interactive)
  8377. (org-agenda-priority 'down))
  8378. (defun org-agenda-priority (&optional force-direction)
  8379. "Set the priority of line at point, also in Org-mode file.
  8380. This changes the line at point, all other lines in the agenda referring to
  8381. the same tree node, and the headline of the tree node in the Org-mode file.
  8382. Called with a universal prefix arg, show the priority instead of setting it."
  8383. (interactive "P")
  8384. (if (equal force-direction '(4))
  8385. (org-show-priority)
  8386. (unless org-enable-priority-commands
  8387. (error "Priority commands are disabled"))
  8388. (org-agenda-check-no-diary)
  8389. (let* ((col (current-column))
  8390. (marker (or (org-get-at-bol 'org-marker)
  8391. (org-agenda-error)))
  8392. (hdmarker (org-get-at-bol 'org-hd-marker))
  8393. (buffer (marker-buffer hdmarker))
  8394. (pos (marker-position hdmarker))
  8395. (inhibit-read-only t)
  8396. newhead)
  8397. (org-with-remote-undo buffer
  8398. (with-current-buffer buffer
  8399. (widen)
  8400. (goto-char pos)
  8401. (org-show-context 'agenda)
  8402. (save-excursion
  8403. (and (outline-next-heading)
  8404. (org-flag-heading nil))) ; show the next heading
  8405. (funcall 'org-priority force-direction)
  8406. (end-of-line 1)
  8407. (setq newhead (org-get-heading)))
  8408. (org-agenda-change-all-lines newhead hdmarker)
  8409. (org-move-to-column col)))))
  8410. ;; FIXME: should fix the tags property of the agenda line.
  8411. (defun org-agenda-set-tags (&optional tag onoff)
  8412. "Set tags for the current headline."
  8413. (interactive)
  8414. (org-agenda-check-no-diary)
  8415. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8416. (call-interactively 'org-change-tag-in-region)
  8417. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8418. (org-agenda-error)))
  8419. (buffer (marker-buffer hdmarker))
  8420. (pos (marker-position hdmarker))
  8421. (inhibit-read-only t)
  8422. newhead)
  8423. (org-with-remote-undo buffer
  8424. (with-current-buffer buffer
  8425. (widen)
  8426. (goto-char pos)
  8427. (save-excursion
  8428. (org-show-context 'agenda))
  8429. (save-excursion
  8430. (and (outline-next-heading)
  8431. (org-flag-heading nil))) ; show the next heading
  8432. (goto-char pos)
  8433. (if tag
  8434. (org-toggle-tag tag onoff)
  8435. (call-interactively 'org-set-tags))
  8436. (end-of-line 1)
  8437. (setq newhead (org-get-heading)))
  8438. (org-agenda-change-all-lines newhead hdmarker)
  8439. (beginning-of-line 1)))))
  8440. (defun org-agenda-set-property ()
  8441. "Set a property for the current headline."
  8442. (interactive)
  8443. (org-agenda-check-no-diary)
  8444. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8445. (org-agenda-error)))
  8446. (buffer (marker-buffer hdmarker))
  8447. (pos (marker-position hdmarker))
  8448. (inhibit-read-only t)
  8449. newhead)
  8450. (org-with-remote-undo buffer
  8451. (with-current-buffer buffer
  8452. (widen)
  8453. (goto-char pos)
  8454. (save-excursion
  8455. (org-show-context 'agenda))
  8456. (save-excursion
  8457. (and (outline-next-heading)
  8458. (org-flag-heading nil))) ; show the next heading
  8459. (goto-char pos)
  8460. (call-interactively 'org-set-property)))))
  8461. (defun org-agenda-set-effort ()
  8462. "Set the effort property for the current headline."
  8463. (interactive)
  8464. (org-agenda-check-no-diary)
  8465. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8466. (org-agenda-error)))
  8467. (buffer (marker-buffer hdmarker))
  8468. (pos (marker-position hdmarker))
  8469. (inhibit-read-only t)
  8470. newhead)
  8471. (org-with-remote-undo buffer
  8472. (with-current-buffer buffer
  8473. (widen)
  8474. (goto-char pos)
  8475. (save-excursion
  8476. (org-show-context 'agenda))
  8477. (save-excursion
  8478. (and (outline-next-heading)
  8479. (org-flag-heading nil))) ; show the next heading
  8480. (goto-char pos)
  8481. (call-interactively 'org-set-effort)
  8482. (end-of-line 1)
  8483. (setq newhead (org-get-heading)))
  8484. (org-agenda-change-all-lines newhead hdmarker))))
  8485. (defun org-agenda-toggle-archive-tag ()
  8486. "Toggle the archive tag for the current entry."
  8487. (interactive)
  8488. (org-agenda-check-no-diary)
  8489. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8490. (org-agenda-error)))
  8491. (buffer (marker-buffer hdmarker))
  8492. (pos (marker-position hdmarker))
  8493. (inhibit-read-only t)
  8494. newhead)
  8495. (org-with-remote-undo buffer
  8496. (with-current-buffer buffer
  8497. (widen)
  8498. (goto-char pos)
  8499. (org-show-context 'agenda)
  8500. (save-excursion
  8501. (and (outline-next-heading)
  8502. (org-flag-heading nil))) ; show the next heading
  8503. (call-interactively 'org-toggle-archive-tag)
  8504. (end-of-line 1)
  8505. (setq newhead (org-get-heading)))
  8506. (org-agenda-change-all-lines newhead hdmarker)
  8507. (beginning-of-line 1))))
  8508. (defun org-agenda-do-date-later (arg)
  8509. (interactive "P")
  8510. (cond
  8511. ((or (equal arg '(16))
  8512. (memq last-command
  8513. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8514. (setq this-command 'org-agenda-date-later-minutes)
  8515. (org-agenda-date-later-minutes 1))
  8516. ((or (equal arg '(4))
  8517. (memq last-command
  8518. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8519. (setq this-command 'org-agenda-date-later-hours)
  8520. (org-agenda-date-later-hours 1))
  8521. (t
  8522. (org-agenda-date-later (prefix-numeric-value arg)))))
  8523. (defun org-agenda-do-date-earlier (arg)
  8524. (interactive "P")
  8525. (cond
  8526. ((or (equal arg '(16))
  8527. (memq last-command
  8528. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8529. (setq this-command 'org-agenda-date-earlier-minutes)
  8530. (org-agenda-date-earlier-minutes 1))
  8531. ((or (equal arg '(4))
  8532. (memq last-command
  8533. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8534. (setq this-command 'org-agenda-date-earlier-hours)
  8535. (org-agenda-date-earlier-hours 1))
  8536. (t
  8537. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8538. (defun org-agenda-date-later (arg &optional what)
  8539. "Change the date of this item to ARG day(s) later."
  8540. (interactive "p")
  8541. (org-agenda-check-type t 'agenda 'timeline)
  8542. (org-agenda-check-no-diary)
  8543. (let* ((marker (or (org-get-at-bol 'org-marker)
  8544. (org-agenda-error)))
  8545. (buffer (marker-buffer marker))
  8546. (pos (marker-position marker))
  8547. cdate today)
  8548. (org-with-remote-undo buffer
  8549. (with-current-buffer buffer
  8550. (widen)
  8551. (goto-char pos)
  8552. (if (not (org-at-timestamp-p))
  8553. (error "Cannot find time stamp"))
  8554. (when (and org-agenda-move-date-from-past-immediately-to-today
  8555. (equal arg 1)
  8556. (or (not what) (eq what 'day))
  8557. (not (save-match-data (org-at-date-range-p))))
  8558. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8559. cdate (calendar-absolute-from-gregorian
  8560. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8561. today (org-today))
  8562. (if (> today cdate)
  8563. ;; immediately shift to today
  8564. (setq arg (- today cdate))))
  8565. (org-timestamp-change arg (or what 'day))
  8566. (when (and (org-at-date-range-p)
  8567. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8568. (let ((end org-last-changed-timestamp))
  8569. (org-timestamp-change arg (or what 'day))
  8570. (setq org-last-changed-timestamp
  8571. (concat org-last-changed-timestamp "--" end)))))
  8572. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8573. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8574. (defun org-agenda-date-earlier (arg &optional what)
  8575. "Change the date of this item to ARG day(s) earlier."
  8576. (interactive "p")
  8577. (org-agenda-date-later (- arg) what))
  8578. (defun org-agenda-date-later-minutes (arg)
  8579. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8580. (interactive "p")
  8581. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8582. (org-agenda-date-later arg 'minute))
  8583. (defun org-agenda-date-earlier-minutes (arg)
  8584. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8585. (interactive "p")
  8586. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8587. (org-agenda-date-earlier arg 'minute))
  8588. (defun org-agenda-date-later-hours (arg)
  8589. "Change the time of this item, in hour steps."
  8590. (interactive "p")
  8591. (org-agenda-date-later arg 'hour))
  8592. (defun org-agenda-date-earlier-hours (arg)
  8593. "Change the time of this item, in hour steps."
  8594. (interactive "p")
  8595. (org-agenda-date-earlier arg 'hour))
  8596. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8597. "Show new date stamp via text properties."
  8598. ;; We use text properties to make this undoable
  8599. (let ((inhibit-read-only t))
  8600. (setq stamp (concat prefix " => " stamp " "))
  8601. (save-excursion
  8602. (goto-char (point-max))
  8603. (while (not (bobp))
  8604. (when (equal marker (org-get-at-bol 'org-marker))
  8605. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8606. (org-move-to-column (- (window-width) (length stamp)) t)
  8607. (if (featurep 'xemacs)
  8608. ;; Use `duplicable' property to trigger undo recording
  8609. (let ((ex (make-extent nil nil))
  8610. (gl (make-glyph stamp)))
  8611. (set-glyph-face gl 'secondary-selection)
  8612. (set-extent-properties
  8613. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8614. (insert-extent ex (1- (point)) (point-at-eol)))
  8615. (add-text-properties
  8616. (1- (point)) (point-at-eol)
  8617. (list 'display (org-add-props stamp nil
  8618. 'face '(secondary-selection default)))))
  8619. (beginning-of-line 1))
  8620. (beginning-of-line 0)))))
  8621. (defun org-agenda-date-prompt (arg)
  8622. "Change the date of this item. Date is prompted for, with default today.
  8623. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8624. be used to request time specification in the time stamp."
  8625. (interactive "P")
  8626. (org-agenda-check-type t 'agenda 'timeline)
  8627. (org-agenda-check-no-diary)
  8628. (let* ((marker (or (org-get-at-bol 'org-marker)
  8629. (org-agenda-error)))
  8630. (buffer (marker-buffer marker))
  8631. (pos (marker-position marker)))
  8632. (org-with-remote-undo buffer
  8633. (with-current-buffer buffer
  8634. (widen)
  8635. (goto-char pos)
  8636. (if (not (org-at-timestamp-p t))
  8637. (error "Cannot find time stamp"))
  8638. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8639. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8640. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8641. (defun org-agenda-schedule (arg &optional time)
  8642. "Schedule the item at point.
  8643. ARG is passed through to `org-schedule'."
  8644. (interactive "P")
  8645. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8646. (org-agenda-check-no-diary)
  8647. (let* ((marker (or (org-get-at-bol 'org-marker)
  8648. (org-agenda-error)))
  8649. (type (marker-insertion-type marker))
  8650. (buffer (marker-buffer marker))
  8651. (pos (marker-position marker))
  8652. ts)
  8653. (set-marker-insertion-type marker t)
  8654. (org-with-remote-undo buffer
  8655. (with-current-buffer buffer
  8656. (widen)
  8657. (goto-char pos)
  8658. (setq ts (org-schedule arg time)))
  8659. (org-agenda-show-new-time marker ts " S"))
  8660. (message "%s" ts)))
  8661. (defun org-agenda-deadline (arg &optional time)
  8662. "Schedule the item at point.
  8663. ARG is passed through to `org-deadline'."
  8664. (interactive "P")
  8665. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8666. (org-agenda-check-no-diary)
  8667. (let* ((marker (or (org-get-at-bol 'org-marker)
  8668. (org-agenda-error)))
  8669. (buffer (marker-buffer marker))
  8670. (pos (marker-position marker))
  8671. ts)
  8672. (org-with-remote-undo buffer
  8673. (with-current-buffer buffer
  8674. (widen)
  8675. (goto-char pos)
  8676. (setq ts (org-deadline arg time)))
  8677. (org-agenda-show-new-time marker ts " D"))
  8678. (message "%s" ts)))
  8679. (defun org-agenda-clock-in (&optional arg)
  8680. "Start the clock on the currently selected item."
  8681. (interactive "P")
  8682. (org-agenda-check-no-diary)
  8683. (if (equal arg '(4))
  8684. (org-clock-in arg)
  8685. (let* ((marker (or (org-get-at-bol 'org-marker)
  8686. (org-agenda-error)))
  8687. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8688. (pos (marker-position marker))
  8689. (col (current-column))
  8690. newhead)
  8691. (org-with-remote-undo (marker-buffer marker)
  8692. (with-current-buffer (marker-buffer marker)
  8693. (widen)
  8694. (goto-char pos)
  8695. (org-show-context 'agenda)
  8696. (org-show-entry)
  8697. (org-cycle-hide-drawers 'children)
  8698. (org-clock-in arg)
  8699. (setq newhead (org-get-heading)))
  8700. (org-agenda-change-all-lines newhead hdmarker))
  8701. (org-move-to-column col))))
  8702. (defun org-agenda-clock-out ()
  8703. "Stop the currently running clock."
  8704. (interactive)
  8705. (unless (marker-buffer org-clock-marker)
  8706. (error "No running clock"))
  8707. (let ((marker (make-marker)) (col (current-column)) newhead)
  8708. (org-with-remote-undo (marker-buffer org-clock-marker)
  8709. (with-current-buffer (marker-buffer org-clock-marker)
  8710. (save-excursion
  8711. (save-restriction
  8712. (widen)
  8713. (goto-char org-clock-marker)
  8714. (org-back-to-heading t)
  8715. (move-marker marker (point))
  8716. (org-clock-out)
  8717. (setq newhead (org-get-heading))))))
  8718. (org-agenda-change-all-lines newhead marker)
  8719. (move-marker marker nil)
  8720. (org-move-to-column col)
  8721. (org-agenda-unmark-clocking-task)))
  8722. (defun org-agenda-clock-cancel (&optional arg)
  8723. "Cancel the currently running clock."
  8724. (interactive "P")
  8725. (unless (marker-buffer org-clock-marker)
  8726. (user-error "No running clock"))
  8727. (org-with-remote-undo (marker-buffer org-clock-marker)
  8728. (org-clock-cancel)))
  8729. (defun org-agenda-clock-goto ()
  8730. "Jump to the currently clocked in task within the agenda.
  8731. If the currently clocked in task is not listed in the agenda
  8732. buffer, display it in another window."
  8733. (interactive)
  8734. (let (pos)
  8735. (mapc (lambda (o)
  8736. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8737. (setq pos (overlay-start o))))
  8738. (overlays-in (point-min) (point-max)))
  8739. (cond (pos (goto-char pos))
  8740. ;; If the currently clocked entry is not in the agenda
  8741. ;; buffer, we visit it in another window:
  8742. (org-clock-current-task
  8743. (org-switch-to-buffer-other-window (org-clock-goto)))
  8744. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8745. (defun org-agenda-diary-entry-in-org-file ()
  8746. "Make a diary entry in the file `org-agenda-diary-file'."
  8747. (let (d1 d2 char (text "") dp1 dp2)
  8748. (if (equal (buffer-name) "*Calendar*")
  8749. (setq d1 (calendar-cursor-to-date t)
  8750. d2 (car calendar-mark-ring))
  8751. (setq dp1 (get-text-property (point-at-bol) 'day))
  8752. (unless dp1 (user-error "No date defined in current line"))
  8753. (setq d1 (calendar-gregorian-from-absolute dp1)
  8754. d2 (and (ignore-errors (mark))
  8755. (save-excursion
  8756. (goto-char (mark))
  8757. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8758. (calendar-gregorian-from-absolute dp2))))
  8759. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8760. (setq char (read-char-exclusive))
  8761. (cond
  8762. ((equal char ?d)
  8763. (setq text (read-string "Day entry: "))
  8764. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8765. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8766. ((equal char ?a)
  8767. (setq d1 (list (car d1) (nth 1 d1)
  8768. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8769. (nth 2 d1))))
  8770. (setq text (read-string "Anniversary (use %d to show years): "))
  8771. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8772. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8773. ((equal char ?b)
  8774. (setq text (read-string "Block entry: "))
  8775. (unless (and d1 d2 (not (equal d1 d2)))
  8776. (user-error "No block of days selected"))
  8777. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8778. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8779. ((equal char ?j)
  8780. (org-switch-to-buffer-other-window
  8781. (find-file-noselect org-agenda-diary-file))
  8782. (require 'org-datetree)
  8783. (org-datetree-find-date-create d1)
  8784. (org-reveal t))
  8785. (t (user-error "Invalid selection character `%c'" char)))))
  8786. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8787. "Where in `org-agenda-diary-file' should new entries be added?
  8788. Valid values:
  8789. date-tree in the date tree, as child of the date
  8790. top-level as top-level entries at the end of the file."
  8791. :group 'org-agenda
  8792. :type '(choice
  8793. (const :tag "in a date tree" date-tree)
  8794. (const :tag "as top level at end of file" top-level)))
  8795. (defcustom org-agenda-insert-diary-extract-time nil
  8796. "Non-nil means extract any time specification from the diary entry."
  8797. :group 'org-agenda
  8798. :version "24.1"
  8799. :type 'boolean)
  8800. (defcustom org-agenda-bulk-mark-char ">"
  8801. "A single-character string to be used as the bulk mark."
  8802. :group 'org-agenda
  8803. :version "24.1"
  8804. :type 'string)
  8805. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8806. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8807. If TEXT is not empty, it will become the headline of the new entry, and
  8808. the resulting entry will not be shown. When TEXT is empty, switch to
  8809. `org-agenda-diary-file' and let the user finish the entry there."
  8810. (let ((cw (current-window-configuration)))
  8811. (org-switch-to-buffer-other-window
  8812. (find-file-noselect org-agenda-diary-file))
  8813. (widen)
  8814. (goto-char (point-min))
  8815. (cond
  8816. ((eq type 'anniversary)
  8817. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8818. (progn
  8819. (or (org-at-heading-p t)
  8820. (progn
  8821. (outline-next-heading)
  8822. (insert "* Anniversaries\n\n")
  8823. (beginning-of-line -1)))))
  8824. (outline-next-heading)
  8825. (org-back-over-empty-lines)
  8826. (backward-char 1)
  8827. (insert "\n")
  8828. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8829. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8830. ((eq type 'day)
  8831. (let ((org-prefix-has-time t)
  8832. (org-agenda-time-leading-zero t)
  8833. fmt time time2)
  8834. (if org-agenda-insert-diary-extract-time
  8835. ;; Use org-agenda-format-item to parse text for a time-range and
  8836. ;; remove it. FIXME: This is a hack, we should refactor
  8837. ;; that function to make time extraction available separately
  8838. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8839. time (get-text-property 0 'time fmt)
  8840. time2 (if (> (length time) 0)
  8841. ;; split-string removes trailing ...... if
  8842. ;; no end time given. First space
  8843. ;; separates time from date.
  8844. (concat " " (car (split-string time "\\.")))
  8845. nil)
  8846. text (get-text-property 0 'txt fmt)))
  8847. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8848. (org-agenda-insert-diary-as-top-level text)
  8849. (require 'org-datetree)
  8850. (org-datetree-find-date-create d1)
  8851. (org-agenda-insert-diary-make-new-entry text))
  8852. (org-insert-time-stamp (org-time-from-absolute
  8853. (calendar-absolute-from-gregorian d1))
  8854. nil nil nil nil time2))
  8855. (end-of-line 0))
  8856. ((eq type 'block)
  8857. (if (> (calendar-absolute-from-gregorian d1)
  8858. (calendar-absolute-from-gregorian d2))
  8859. (setq d1 (prog1 d2 (setq d2 d1))))
  8860. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8861. (org-agenda-insert-diary-as-top-level text)
  8862. (require 'org-datetree)
  8863. (org-datetree-find-date-create d1)
  8864. (org-agenda-insert-diary-make-new-entry text))
  8865. (org-insert-time-stamp (org-time-from-absolute
  8866. (calendar-absolute-from-gregorian d1)))
  8867. (insert "--")
  8868. (org-insert-time-stamp (org-time-from-absolute
  8869. (calendar-absolute-from-gregorian d2)))
  8870. (end-of-line 0)))
  8871. (if (string-match "\\S-" text)
  8872. (progn
  8873. (set-window-configuration cw)
  8874. (message "%s entry added to %s"
  8875. (capitalize (symbol-name type))
  8876. (abbreviate-file-name org-agenda-diary-file)))
  8877. (org-reveal t)
  8878. (message "Please finish entry here"))))
  8879. (defun org-agenda-insert-diary-as-top-level (text)
  8880. "Make new entry as a top-level entry at the end of the file.
  8881. Add TEXT as headline, and position the cursor in the second line so that
  8882. a timestamp can be added there."
  8883. (widen)
  8884. (goto-char (point-max))
  8885. (unless (bolp) (insert "\n"))
  8886. (org-insert-heading nil t t)
  8887. (insert text)
  8888. (org-end-of-meta-data)
  8889. (unless (bolp) (insert "\n"))
  8890. (when org-adapt-indentation (org-indent-to-column 2)))
  8891. (defun org-agenda-insert-diary-make-new-entry (text)
  8892. "Make a new entry with TEXT as the first child of the current subtree.
  8893. Position the point in the heading's first body line so that
  8894. a timestamp can be added there."
  8895. (outline-next-heading)
  8896. (org-back-over-empty-lines)
  8897. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8898. (org-insert-heading nil t)
  8899. (org-do-demote)
  8900. (let ((col (current-column)))
  8901. (insert text)
  8902. (org-end-of-meta-data)
  8903. ;; Ensure point is left on a blank line, at proper indentation.
  8904. (unless (bolp) (insert "\n"))
  8905. (unless (org-looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8906. (when org-adapt-indentation (org-indent-to-column col)))
  8907. (org-show-set-visibility 'lineage))
  8908. (defun org-agenda-diary-entry ()
  8909. "Make a diary entry, like the `i' command from the calendar.
  8910. All the standard commands work: block, weekly etc.
  8911. When `org-agenda-diary-file' points to a file,
  8912. `org-agenda-diary-entry-in-org-file' is called instead to create
  8913. entries in that Org-mode file."
  8914. (interactive)
  8915. (if (not (eq org-agenda-diary-file 'diary-file))
  8916. (org-agenda-diary-entry-in-org-file)
  8917. (require 'diary-lib)
  8918. (let* ((char (progn
  8919. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8920. (read-char-exclusive)))
  8921. (cmd (cdr (assoc char
  8922. '((?d . diary-insert-entry)
  8923. (?w . diary-insert-weekly-entry)
  8924. (?m . diary-insert-monthly-entry)
  8925. (?y . diary-insert-yearly-entry)
  8926. (?a . diary-insert-anniversary-entry)
  8927. (?b . diary-insert-block-entry)
  8928. (?c . diary-insert-cyclic-entry)))))
  8929. (oldf (symbol-function 'calendar-cursor-to-date))
  8930. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8931. (point (point))
  8932. (mark (or (mark t) (point))))
  8933. (unless cmd
  8934. (user-error "No command associated with <%c>" char))
  8935. (unless (and (get-text-property point 'day)
  8936. (or (not (equal ?b char))
  8937. (get-text-property mark 'day)))
  8938. (user-error "Don't know which date to use for diary entry"))
  8939. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8940. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8941. (let ((calendar-mark-ring
  8942. (list (calendar-gregorian-from-absolute
  8943. (or (get-text-property mark 'day)
  8944. (get-text-property point 'day))))))
  8945. (unwind-protect
  8946. (progn
  8947. (fset 'calendar-cursor-to-date
  8948. (lambda (&optional error dummy)
  8949. (calendar-gregorian-from-absolute
  8950. (get-text-property point 'day))))
  8951. (call-interactively cmd))
  8952. (fset 'calendar-cursor-to-date oldf))))))
  8953. (defun org-agenda-execute-calendar-command (cmd)
  8954. "Execute a calendar command from the agenda with date from cursor."
  8955. (org-agenda-check-type t 'agenda 'timeline)
  8956. (require 'diary-lib)
  8957. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8958. (user-error "Don't know which date to use for the calendar command"))
  8959. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8960. (point (point))
  8961. (date (calendar-gregorian-from-absolute
  8962. (get-text-property point 'day)))
  8963. ;; the following 2 vars are needed in the calendar
  8964. (displayed-month (car date))
  8965. (displayed-year (nth 2 date)))
  8966. (unwind-protect
  8967. (progn
  8968. (fset 'calendar-cursor-to-date
  8969. (lambda (&optional error dummy)
  8970. (calendar-gregorian-from-absolute
  8971. (get-text-property point 'day))))
  8972. (call-interactively cmd))
  8973. (fset 'calendar-cursor-to-date oldf))))
  8974. (defun org-agenda-phases-of-moon ()
  8975. "Display the phases of the moon for the 3 months around the cursor date."
  8976. (interactive)
  8977. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  8978. (defun org-agenda-holidays ()
  8979. "Display the holidays for the 3 months around the cursor date."
  8980. (interactive)
  8981. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  8982. (defvar calendar-longitude) ; defined in calendar.el
  8983. (defvar calendar-latitude) ; defined in calendar.el
  8984. (defvar calendar-location-name) ; defined in calendar.el
  8985. (defun org-agenda-sunrise-sunset (arg)
  8986. "Display sunrise and sunset for the cursor date.
  8987. Latitude and longitude can be specified with the variables
  8988. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8989. argument, latitude and longitude will be prompted for."
  8990. (interactive "P")
  8991. (require 'solar)
  8992. (let ((calendar-longitude (if arg nil calendar-longitude))
  8993. (calendar-latitude (if arg nil calendar-latitude))
  8994. (calendar-location-name
  8995. (if arg "the given coordinates" calendar-location-name)))
  8996. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8997. (defun org-agenda-goto-calendar ()
  8998. "Open the Emacs calendar with the date at the cursor."
  8999. (interactive)
  9000. (org-agenda-check-type t 'agenda 'timeline)
  9001. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9002. (user-error "Don't know which date to open in calendar")))
  9003. (date (calendar-gregorian-from-absolute day))
  9004. (calendar-move-hook nil)
  9005. (calendar-view-holidays-initially-flag nil)
  9006. (calendar-view-diary-initially-flag nil))
  9007. (calendar)
  9008. (calendar-goto-date date)))
  9009. ;;;###autoload
  9010. (defun org-calendar-goto-agenda ()
  9011. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  9012. This is a command that has to be installed in `calendar-mode-map'."
  9013. (interactive)
  9014. ;; Temporarily disable sticky agenda since user clearly wants to
  9015. ;; refresh view anyway.
  9016. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9017. (org-agenda-sticky nil))
  9018. (org-agenda-list nil (calendar-absolute-from-gregorian
  9019. (calendar-cursor-to-date))
  9020. nil)))
  9021. (defun org-agenda-convert-date ()
  9022. (interactive)
  9023. (org-agenda-check-type t 'agenda 'timeline)
  9024. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9025. date s)
  9026. (unless day
  9027. (user-error "Don't know which date to convert"))
  9028. (setq date (calendar-gregorian-from-absolute day))
  9029. (setq s (concat
  9030. "Gregorian: " (calendar-date-string date) "\n"
  9031. "ISO: " (calendar-iso-date-string date) "\n"
  9032. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9033. "Julian: " (calendar-julian-date-string date) "\n"
  9034. "Astron. JD: " (calendar-astro-date-string date)
  9035. " (Julian date number at noon UTC)\n"
  9036. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9037. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9038. "French: " (calendar-french-date-string date) "\n"
  9039. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  9040. "Mayan: " (calendar-mayan-date-string date) "\n"
  9041. "Coptic: " (calendar-coptic-date-string date) "\n"
  9042. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9043. "Persian: " (calendar-persian-date-string date) "\n"
  9044. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9045. (with-output-to-temp-buffer "*Dates*"
  9046. (princ s))
  9047. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9048. ;;; Bulk commands
  9049. (defun org-agenda-bulk-marked-p ()
  9050. (eq (get-char-property (point-at-bol) 'type)
  9051. 'org-marked-entry-overlay))
  9052. (defun org-agenda-bulk-mark (&optional arg)
  9053. "Mark the entry at point for future bulk action."
  9054. (interactive "p")
  9055. (dotimes (i (or arg 1))
  9056. (unless (org-get-at-bol 'org-agenda-diary-link)
  9057. (let* ((m (org-get-at-bol 'org-hd-marker))
  9058. ov)
  9059. (unless (org-agenda-bulk-marked-p)
  9060. (unless m (user-error "Nothing to mark at point"))
  9061. (push m org-agenda-bulk-marked-entries)
  9062. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9063. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9064. (org-get-todo-face "TODO")
  9065. 'evaporate)
  9066. (overlay-put ov 'type 'org-marked-entry-overlay))
  9067. (end-of-line 1)
  9068. (or (ignore-errors
  9069. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9070. (beginning-of-line 2))
  9071. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9072. (beginning-of-line 2))
  9073. (message "%d entries marked for bulk action"
  9074. (length org-agenda-bulk-marked-entries))))))
  9075. (defun org-agenda-bulk-mark-all ()
  9076. "Mark all entries for future agenda bulk action."
  9077. (interactive)
  9078. (org-agenda-bulk-mark-regexp "."))
  9079. (defun org-agenda-bulk-mark-regexp (regexp)
  9080. "Mark entries matching REGEXP for future agenda bulk action."
  9081. (interactive "sMark entries matching regexp: ")
  9082. (let ((entries-marked 0) txt-at-point)
  9083. (save-excursion
  9084. (goto-char (point-min))
  9085. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9086. (while (and (re-search-forward regexp nil t)
  9087. (setq txt-at-point (get-text-property (point) 'txt)))
  9088. (when (string-match regexp txt-at-point)
  9089. (setq entries-marked (1+ entries-marked))
  9090. (call-interactively 'org-agenda-bulk-mark))))
  9091. (if (not entries-marked)
  9092. (message "No entry matching this regexp."))))
  9093. (defun org-agenda-bulk-unmark (&optional arg)
  9094. "Unmark the entry at point for future bulk action."
  9095. (interactive "P")
  9096. (if arg
  9097. (org-agenda-bulk-unmark-all)
  9098. (cond ((org-agenda-bulk-marked-p)
  9099. (org-agenda-bulk-remove-overlays
  9100. (point-at-bol) (+ 2 (point-at-bol)))
  9101. (setq org-agenda-bulk-marked-entries
  9102. (delete (org-get-at-bol 'org-hd-marker)
  9103. org-agenda-bulk-marked-entries))
  9104. (end-of-line 1)
  9105. (or (ignore-errors
  9106. (goto-char (next-single-property-change (point) 'txt)))
  9107. (beginning-of-line 2))
  9108. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9109. (beginning-of-line 2))
  9110. (message "%d entries left marked for bulk action"
  9111. (length org-agenda-bulk-marked-entries)))
  9112. (t (message "No entry to unmark here")))))
  9113. (defun org-agenda-bulk-toggle-all ()
  9114. "Toggle all marks for bulk action."
  9115. (interactive)
  9116. (save-excursion
  9117. (goto-char (point-min))
  9118. (while (ignore-errors
  9119. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9120. (org-agenda-bulk-toggle))))
  9121. (defun org-agenda-bulk-toggle ()
  9122. "Toggle the mark at point for bulk action."
  9123. (interactive)
  9124. (if (org-agenda-bulk-marked-p)
  9125. (org-agenda-bulk-unmark)
  9126. (org-agenda-bulk-mark)))
  9127. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9128. "Remove the mark overlays between BEG and END in the agenda buffer.
  9129. BEG and END default to the buffer limits.
  9130. This only removes the overlays, it does not remove the markers
  9131. from the list in `org-agenda-bulk-marked-entries'."
  9132. (interactive)
  9133. (mapc (lambda (ov)
  9134. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9135. (delete-overlay ov)))
  9136. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9137. (defun org-agenda-bulk-unmark-all ()
  9138. "Remove all marks in the agenda buffer.
  9139. This will remove the markers and the overlays."
  9140. (interactive)
  9141. (if (null org-agenda-bulk-marked-entries)
  9142. (message "No entry to unmark")
  9143. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9144. (setq org-agenda-bulk-marked-entries nil)
  9145. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9146. (defcustom org-agenda-persistent-marks nil
  9147. "Non-nil means marked items will stay marked after a bulk action.
  9148. You can toggle this interactively by typing `p' when prompted for a
  9149. bulk action."
  9150. :group 'org-agenda
  9151. :version "24.1"
  9152. :type 'boolean)
  9153. (defun org-agenda-bulk-action (&optional arg)
  9154. "Execute an remote-editing action on all marked entries.
  9155. The prefix arg is passed through to the command if possible."
  9156. (interactive "P")
  9157. ;; Make sure we have markers, and only valid ones
  9158. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9159. (mapc
  9160. (lambda (m)
  9161. (unless (and (markerp m)
  9162. (marker-buffer m)
  9163. (buffer-live-p (marker-buffer m))
  9164. (marker-position m))
  9165. (user-error "Marker %s for bulk command is invalid" m)))
  9166. org-agenda-bulk-marked-entries)
  9167. ;; Prompt for the bulk command
  9168. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9169. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9170. "[S]catter [f]unction "
  9171. (when org-agenda-bulk-custom-functions
  9172. (concat " Custom: ["
  9173. (mapconcat (lambda(f) (char-to-string (car f)))
  9174. org-agenda-bulk-custom-functions "")
  9175. "]"))))
  9176. (catch 'exit
  9177. (let* ((action (read-char-exclusive))
  9178. (org-log-refile (if org-log-refile 'time nil))
  9179. (entries (reverse org-agenda-bulk-marked-entries))
  9180. (org-overriding-default-time
  9181. (if (get-text-property (point) 'org-agenda-date-header)
  9182. (org-get-cursor-date)))
  9183. redo-at-end
  9184. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9185. (cond
  9186. ((equal action ?p)
  9187. (let ((org-agenda-persistent-marks
  9188. (not org-agenda-persistent-marks)))
  9189. (org-agenda-bulk-action)
  9190. (throw 'exit nil)))
  9191. ((equal action ?$)
  9192. (setq cmd '(org-agenda-archive)))
  9193. ((equal action ?A)
  9194. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9195. ((member action '(?r ?w))
  9196. (setq rfloc (org-refile-get-location
  9197. "Refile to"
  9198. (marker-buffer (car entries))
  9199. org-refile-allow-creating-parent-nodes))
  9200. (if (nth 3 rfloc)
  9201. (setcar (nthcdr 3 rfloc)
  9202. (move-marker (make-marker) (nth 3 rfloc)
  9203. (or (get-file-buffer (nth 1 rfloc))
  9204. (find-buffer-visiting (nth 1 rfloc))
  9205. (error "This should not happen")))))
  9206. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9207. redo-at-end t))
  9208. ((equal action ?t)
  9209. (setq state (org-icompleting-read
  9210. "Todo state: "
  9211. (with-current-buffer (marker-buffer (car entries))
  9212. (mapcar 'list org-todo-keywords-1))))
  9213. (setq cmd `(let ((org-inhibit-blocking t)
  9214. (org-inhibit-logging 'note))
  9215. (org-agenda-todo ,state))))
  9216. ((memq action '(?- ?+))
  9217. (setq tag (org-icompleting-read
  9218. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9219. (with-current-buffer (marker-buffer (car entries))
  9220. (delq nil
  9221. (mapcar (lambda (x)
  9222. (if (stringp (car x)) x)) org-tag-alist)))))
  9223. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9224. ((memq action '(?s ?d))
  9225. (let* ((time
  9226. (unless arg
  9227. (org-read-date
  9228. nil nil nil
  9229. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9230. org-overriding-default-time)))
  9231. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9232. (setq cmd `(eval '(,c1 arg ,time)))))
  9233. ((equal action ?S)
  9234. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9235. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9236. (let ((days (read-number
  9237. (format "Scatter tasks across how many %sdays: "
  9238. (if arg "week" "")) 7)))
  9239. (setq cmd
  9240. `(let ((distance (1+ (random ,days))))
  9241. (if arg
  9242. (let ((dist distance)
  9243. (day-of-week
  9244. (calendar-day-of-week
  9245. (calendar-gregorian-from-absolute (org-today)))))
  9246. (dotimes (i (1+ dist))
  9247. (while (member day-of-week org-agenda-weekend-days)
  9248. (incf distance)
  9249. (incf day-of-week)
  9250. (if (= day-of-week 7)
  9251. (setq day-of-week 0)))
  9252. (incf day-of-week)
  9253. (if (= day-of-week 7)
  9254. (setq day-of-week 0)))))
  9255. ;; silently fail when try to replan a sexp entry
  9256. (condition-case nil
  9257. (let* ((date (calendar-gregorian-from-absolute
  9258. (+ (org-today) distance)))
  9259. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9260. (nth 2 date))))
  9261. (org-agenda-schedule nil time))
  9262. (error nil)))))))
  9263. ((assoc action org-agenda-bulk-custom-functions)
  9264. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9265. redo-at-end t))
  9266. ((equal action ?f)
  9267. (setq cmd (list (intern
  9268. (org-icompleting-read "Function: "
  9269. obarray 'fboundp t nil nil)))))
  9270. (t (user-error "Invalid bulk action")))
  9271. ;; Sort the markers, to make sure that parents are handled before children
  9272. (setq entries (sort entries
  9273. (lambda (a b)
  9274. (cond
  9275. ((equal (marker-buffer a) (marker-buffer b))
  9276. (< (marker-position a) (marker-position b)))
  9277. (t
  9278. (string< (buffer-name (marker-buffer a))
  9279. (buffer-name (marker-buffer b))))))))
  9280. ;; Now loop over all markers and apply cmd
  9281. (while (setq e (pop entries))
  9282. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9283. (if (not pos)
  9284. (progn (message "Skipping removed entry at %s" e)
  9285. (setq cntskip (1+ cntskip)))
  9286. (goto-char pos)
  9287. (let (org-loop-over-headlines-in-active-region)
  9288. (eval cmd))
  9289. ;; `post-command-hook' is not run yet. We make sure any
  9290. ;; pending log note is processed.
  9291. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9292. (memq 'org-add-log-note post-command-hook))
  9293. (org-add-log-note))
  9294. (setq cnt (1+ cnt))))
  9295. (when redo-at-end (org-agenda-redo))
  9296. (unless org-agenda-persistent-marks
  9297. (org-agenda-bulk-unmark-all))
  9298. (message "Acted on %d entries%s%s"
  9299. cnt
  9300. (if (= cntskip 0)
  9301. ""
  9302. (format ", skipped %d (disappeared before their turn)"
  9303. cntskip))
  9304. (if (not org-agenda-persistent-marks)
  9305. "" " (kept marked)"))))))
  9306. (defun org-agenda-capture (&optional with-time)
  9307. "Call `org-capture' with the date at point.
  9308. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9309. current HH:MM time."
  9310. (interactive "P")
  9311. (if (not (eq major-mode 'org-agenda-mode))
  9312. (user-error "You cannot do this outside of agenda buffers")
  9313. (let ((org-overriding-default-time
  9314. (org-get-cursor-date (equal with-time 1))))
  9315. (call-interactively 'org-capture))))
  9316. ;;; Dragging agenda lines forward/backward
  9317. (defun org-agenda-reapply-filters ()
  9318. "Re-apply all agenda filters."
  9319. (mapcar
  9320. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9321. `((,org-agenda-tag-filter tag)
  9322. (,org-agenda-category-filter category)
  9323. (,org-agenda-regexp-filter regexp)
  9324. (,org-agenda-effort-filter effort)
  9325. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9326. (,(get 'org-agenda-category-filter :preset-filter) category)
  9327. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9328. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9329. (defun org-agenda-drag-line-forward (arg &optional backward)
  9330. "Drag an agenda line forward by ARG lines.
  9331. When the optional argument `backward' is non-nil, move backward."
  9332. (interactive "p")
  9333. (let ((inhibit-read-only t) lst line)
  9334. (if (or (not (get-text-property (point) 'txt))
  9335. (save-excursion
  9336. (dotimes (n arg)
  9337. (move-beginning-of-line (if backward 0 2))
  9338. (push (not (get-text-property (point) 'txt)) lst))
  9339. (delq nil lst)))
  9340. (message "Cannot move line forward")
  9341. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9342. (move-beginning-of-line 1)
  9343. (setq line (buffer-substring (point) end))
  9344. (delete-region (point) end)
  9345. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9346. (insert line)
  9347. (org-agenda-reapply-filters)
  9348. (org-agenda-mark-clocking-task)
  9349. (move-beginning-of-line 0)))))
  9350. (defun org-agenda-drag-line-backward (arg)
  9351. "Drag an agenda line backward by ARG lines."
  9352. (interactive "p")
  9353. (org-agenda-drag-line-forward arg t))
  9354. ;;; Flagging notes
  9355. (defun org-agenda-show-the-flagging-note ()
  9356. "Display the flagging note in the other window.
  9357. When called a second time in direct sequence, offer to remove the FLAGGING
  9358. tag and (if present) the flagging note."
  9359. (interactive)
  9360. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9361. (win (selected-window))
  9362. note heading newhead)
  9363. (unless hdmarker
  9364. (user-error "No linked entry at point"))
  9365. (if (and (eq this-command last-command)
  9366. (y-or-n-p "Unflag and remove any flagging note? "))
  9367. (progn
  9368. (org-agenda-remove-flag hdmarker)
  9369. (let ((win (get-buffer-window "*Flagging Note*")))
  9370. (and win (delete-window win)))
  9371. (message "Entry unflagged"))
  9372. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9373. (unless note
  9374. (user-error "No flagging note"))
  9375. (org-kill-new note)
  9376. (org-switch-to-buffer-other-window "*Flagging Note*")
  9377. (erase-buffer)
  9378. (insert note)
  9379. (goto-char (point-min))
  9380. (while (re-search-forward "\\\\n" nil t)
  9381. (replace-match "\n" t t))
  9382. (goto-char (point-min))
  9383. (select-window win)
  9384. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9385. (defun org-agenda-remove-flag (marker)
  9386. "Remove the FLAGGED tag and any flagging note in the entry."
  9387. (let (newhead)
  9388. (org-with-point-at marker
  9389. (org-toggle-tag "FLAGGED" 'off)
  9390. (org-entry-delete nil "THEFLAGGINGNOTE")
  9391. (setq newhead (org-get-heading)))
  9392. (org-agenda-change-all-lines newhead marker)
  9393. (message "Entry unflagged")))
  9394. (defun org-agenda-get-any-marker (&optional pos)
  9395. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9396. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9397. ;;; Appointment reminders
  9398. (defvar appt-time-msg-list) ; defined in appt.el
  9399. ;;;###autoload
  9400. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9401. "Activate appointments found in `org-agenda-files'.
  9402. With a \\[universal-argument] prefix, refresh the list of
  9403. appointments.
  9404. If FILTER is t, interactively prompt the user for a regular
  9405. expression, and filter out entries that don't match it.
  9406. If FILTER is a string, use this string as a regular expression
  9407. for filtering entries out.
  9408. If FILTER is a function, filter out entries against which
  9409. calling the function returns nil. This function takes one
  9410. argument: an entry from `org-agenda-get-day-entries'.
  9411. FILTER can also be an alist with the car of each cell being
  9412. either 'headline or 'category. For example:
  9413. '((headline \"IMPORTANT\")
  9414. (category \"Work\"))
  9415. will only add headlines containing IMPORTANT or headlines
  9416. belonging to the \"Work\" category.
  9417. ARGS are symbols indicating what kind of entries to consider.
  9418. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9419. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9420. and :timestamp entries. See the docstring of `org-diary' for
  9421. details and examples.
  9422. If an entry has a APPT_WARNTIME property, its value will be used
  9423. to override `appt-message-warning-time'."
  9424. (interactive "P")
  9425. (if refresh (setq appt-time-msg-list nil))
  9426. (if (eq filter t)
  9427. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9428. (let* ((cnt 0) ; count added events
  9429. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9430. (org-agenda-new-buffers nil)
  9431. (org-deadline-warning-days 0)
  9432. ;; Do not use `org-today' here because appt only takes
  9433. ;; time and without date as argument, so it may pass wrong
  9434. ;; information otherwise
  9435. (today (org-date-to-gregorian
  9436. (time-to-days (current-time))))
  9437. (org-agenda-restrict nil)
  9438. (files (org-agenda-files 'unrestricted)) entries file
  9439. (org-agenda-buffer nil))
  9440. ;; Get all entries which may contain an appt
  9441. (org-agenda-prepare-buffers files)
  9442. (while (setq file (pop files))
  9443. (setq entries
  9444. (delq nil
  9445. (append entries
  9446. (apply 'org-agenda-get-day-entries
  9447. file today scope)))))
  9448. ;; Map thru entries and find if we should filter them out
  9449. (mapc
  9450. (lambda(x)
  9451. (let* ((evt (org-trim
  9452. (replace-regexp-in-string
  9453. org-bracket-link-regexp "\\3"
  9454. (or (get-text-property 1 'txt x) ""))))
  9455. (cat (get-text-property (1- (length x)) 'org-category x))
  9456. (tod (get-text-property 1 'time-of-day x))
  9457. (ok (or (null filter)
  9458. (and (stringp filter) (string-match filter evt))
  9459. (and (functionp filter) (funcall filter x))
  9460. (and (listp filter)
  9461. (let ((cat-filter (cadr (assoc 'category filter)))
  9462. (evt-filter (cadr (assoc 'headline filter))))
  9463. (or (and (stringp cat-filter)
  9464. (string-match cat-filter cat))
  9465. (and (stringp evt-filter)
  9466. (string-match evt-filter evt)))))))
  9467. (wrn (get-text-property 1 'warntime x)))
  9468. ;; FIXME: Shall we remove text-properties for the appt text?
  9469. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9470. (when (and ok tod)
  9471. (setq tod (concat "00" (number-to-string tod))
  9472. tod (when (string-match
  9473. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9474. (concat (match-string 1 tod) ":"
  9475. (match-string 2 tod))))
  9476. (if (version< emacs-version "23.3")
  9477. (appt-add tod evt)
  9478. (appt-add tod evt wrn))
  9479. (setq cnt (1+ cnt))))) entries)
  9480. (org-release-buffers org-agenda-new-buffers)
  9481. (if (eq cnt 0)
  9482. (message "No event to add")
  9483. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9484. (defun org-agenda-todayp (date)
  9485. "Does DATE mean today, when considering `org-extend-today-until'?"
  9486. (let ((today (org-today))
  9487. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9488. date)))
  9489. (eq date today)))
  9490. (defun org-agenda-todo-yesterday (&optional arg)
  9491. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9492. (interactive "P")
  9493. (let* ((org-use-effective-time t)
  9494. (hour (third (decode-time
  9495. (org-current-time))))
  9496. (org-extend-today-until (1+ hour)))
  9497. (org-agenda-todo arg)))
  9498. (provide 'org-agenda)
  9499. ;;; org-agenda.el ends here