codemirror.js 223 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827
  1. // CodeMirror is the only global var we claim
  2. window.CodeMirror = (function() {
  3. "use strict";
  4. // BROWSER SNIFFING
  5. // Crude, but necessary to handle a number of hard-to-feature-detect
  6. // bugs and behavior differences.
  7. var gecko = /gecko\/\d/i.test(navigator.userAgent);
  8. var ie = /MSIE \d/.test(navigator.userAgent);
  9. var ie_lt8 = ie && (document.documentMode == null || document.documentMode < 8);
  10. var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9);
  11. var webkit = /WebKit\//.test(navigator.userAgent);
  12. var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(navigator.userAgent);
  13. var chrome = /Chrome\//.test(navigator.userAgent);
  14. var opera = /Opera\//.test(navigator.userAgent);
  15. var safari = /Apple Computer/.test(navigator.vendor);
  16. var khtml = /KHTML\//.test(navigator.userAgent);
  17. var mac_geLion = /Mac OS X 1\d\D([7-9]|\d\d)\D/.test(navigator.userAgent);
  18. var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent);
  19. var phantom = /PhantomJS/.test(navigator.userAgent);
  20. var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
  21. // This is woefully incomplete. Suggestions for alternative methods welcome.
  22. var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent);
  23. var mac = ios || /Mac/.test(navigator.platform);
  24. var windows = /win/i.test(navigator.platform);
  25. var opera_version = opera && navigator.userAgent.match(/Version\/(\d*\.\d*)/);
  26. if (opera_version) opera_version = Number(opera_version[1]);
  27. if (opera_version && opera_version >= 15) { opera = false; webkit = true; }
  28. // Some browsers use the wrong event properties to signal cmd/ctrl on OS X
  29. var flipCtrlCmd = mac && (qtwebkit || opera && (opera_version == null || opera_version < 12.11));
  30. var captureMiddleClick = gecko || (ie && !ie_lt9);
  31. // Optimize some code when these features are not used
  32. var sawReadOnlySpans = false, sawCollapsedSpans = false;
  33. // CONSTRUCTOR
  34. function CodeMirror(place, options) {
  35. if (!(this instanceof CodeMirror)) return new CodeMirror(place, options);
  36. this.options = options = options || {};
  37. // Determine effective options based on given values and defaults.
  38. for (var opt in defaults) if (!options.hasOwnProperty(opt) && defaults.hasOwnProperty(opt))
  39. options[opt] = defaults[opt];
  40. setGuttersForLineNumbers(options);
  41. var docStart = typeof options.value == "string" ? 0 : options.value.first;
  42. var display = this.display = makeDisplay(place, docStart);
  43. display.wrapper.CodeMirror = this;
  44. updateGutters(this);
  45. if (options.autofocus && !mobile) focusInput(this);
  46. this.state = {keyMaps: [],
  47. overlays: [],
  48. modeGen: 0,
  49. overwrite: false, focused: false,
  50. suppressEdits: false, pasteIncoming: false,
  51. draggingText: false,
  52. highlight: new Delayed()};
  53. themeChanged(this);
  54. if (options.lineWrapping)
  55. this.display.wrapper.className += " CodeMirror-wrap";
  56. var doc = options.value;
  57. if (typeof doc == "string") doc = new Doc(options.value, options.mode);
  58. operation(this, attachDoc)(this, doc);
  59. // Override magic textarea content restore that IE sometimes does
  60. // on our hidden textarea on reload
  61. if (ie) setTimeout(bind(resetInput, this, true), 20);
  62. registerEventHandlers(this);
  63. // IE throws unspecified error in certain cases, when
  64. // trying to access activeElement before onload
  65. var hasFocus; try { hasFocus = (document.activeElement == display.input); } catch(e) { }
  66. if (hasFocus || (options.autofocus && !mobile)) setTimeout(bind(onFocus, this), 20);
  67. else onBlur(this);
  68. operation(this, function() {
  69. for (var opt in optionHandlers)
  70. if (optionHandlers.propertyIsEnumerable(opt))
  71. optionHandlers[opt](this, options[opt], Init);
  72. for (var i = 0; i < initHooks.length; ++i) initHooks[i](this);
  73. })();
  74. }
  75. // DISPLAY CONSTRUCTOR
  76. function makeDisplay(place, docStart) {
  77. var d = {};
  78. var input = d.input = elt("textarea", null, null, "position: absolute; padding: 0; width: 1px; height: 1em; outline: none; font-size: 4px;");
  79. if (webkit) input.style.width = "1000px";
  80. else input.setAttribute("wrap", "off");
  81. // if border: 0; -- iOS fails to open keyboard (issue #1287)
  82. if (ios) input.style.border = "1px solid black";
  83. input.setAttribute("autocorrect", "off"); input.setAttribute("autocapitalize", "off"); input.setAttribute("spellcheck", "false");
  84. // Wraps and hides input textarea
  85. d.inputDiv = elt("div", [input], null, "overflow: hidden; position: relative; width: 3px; height: 0px;");
  86. // The actual fake scrollbars.
  87. d.scrollbarH = elt("div", [elt("div", null, null, "height: 1px")], "CodeMirror-hscrollbar");
  88. d.scrollbarV = elt("div", [elt("div", null, null, "width: 1px")], "CodeMirror-vscrollbar");
  89. d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler");
  90. d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler");
  91. // DIVs containing the selection and the actual code
  92. d.lineDiv = elt("div", null, "CodeMirror-code");
  93. d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1");
  94. // Blinky cursor, and element used to ensure cursor fits at the end of a line
  95. d.cursor = elt("div", "\u00a0", "CodeMirror-cursor");
  96. // Secondary cursor, shown when on a 'jump' in bi-directional text
  97. d.otherCursor = elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor");
  98. // Used to measure text size
  99. d.measure = elt("div", null, "CodeMirror-measure");
  100. // Wraps everything that needs to exist inside the vertically-padded coordinate system
  101. d.lineSpace = elt("div", [d.measure, d.selectionDiv, d.lineDiv, d.cursor, d.otherCursor],
  102. null, "position: relative; outline: none");
  103. // Moved around its parent to cover visible view
  104. d.mover = elt("div", [elt("div", [d.lineSpace], "CodeMirror-lines")], null, "position: relative");
  105. // Set to the height of the text, causes scrolling
  106. d.sizer = elt("div", [d.mover], "CodeMirror-sizer");
  107. // D is needed because behavior of elts with overflow: auto and padding is inconsistent across browsers
  108. d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerCutOff + "px; width: 1px;");
  109. // Will contain the gutters, if any
  110. d.gutters = elt("div", null, "CodeMirror-gutters");
  111. d.lineGutter = null;
  112. // Provides scrolling
  113. d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll");
  114. d.scroller.setAttribute("tabIndex", "-1");
  115. // The element in which the editor lives.
  116. d.wrapper = elt("div", [d.inputDiv, d.scrollbarH, d.scrollbarV,
  117. d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror");
  118. // Work around IE7 z-index bug
  119. if (ie_lt8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }
  120. if (place.appendChild) place.appendChild(d.wrapper); else place(d.wrapper);
  121. // Needed to hide big blue blinking cursor on Mobile Safari
  122. if (ios) input.style.width = "0px";
  123. if (!webkit) d.scroller.draggable = true;
  124. // Needed to handle Tab key in KHTML
  125. if (khtml) { d.inputDiv.style.height = "1px"; d.inputDiv.style.position = "absolute"; }
  126. // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
  127. else if (ie_lt8) d.scrollbarH.style.minWidth = d.scrollbarV.style.minWidth = "18px";
  128. // Current visible range (may be bigger than the view window).
  129. d.viewOffset = d.lastSizeC = 0;
  130. d.showingFrom = d.showingTo = docStart;
  131. // Used to only resize the line number gutter when necessary (when
  132. // the amount of lines crosses a boundary that makes its width change)
  133. d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;
  134. // See readInput and resetInput
  135. d.prevInput = "";
  136. // Set to true when a non-horizontal-scrolling widget is added. As
  137. // an optimization, widget aligning is skipped when d is false.
  138. d.alignWidgets = false;
  139. // Flag that indicates whether we currently expect input to appear
  140. // (after some event like 'keypress' or 'input') and are polling
  141. // intensively.
  142. d.pollingFast = false;
  143. // Self-resetting timeout for the poller
  144. d.poll = new Delayed();
  145. d.cachedCharWidth = d.cachedTextHeight = null;
  146. d.measureLineCache = [];
  147. d.measureLineCachePos = 0;
  148. // Tracks when resetInput has punted to just putting a short
  149. // string instead of the (large) selection.
  150. d.inaccurateSelection = false;
  151. // Tracks the maximum line length so that the horizontal scrollbar
  152. // can be kept static when scrolling.
  153. d.maxLine = null;
  154. d.maxLineLength = 0;
  155. d.maxLineChanged = false;
  156. // Used for measuring wheel scrolling granularity
  157. d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;
  158. return d;
  159. }
  160. // STATE UPDATES
  161. // Used to get the editor into a consistent state again when options change.
  162. function loadMode(cm) {
  163. cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption);
  164. cm.doc.iter(function(line) {
  165. if (line.stateAfter) line.stateAfter = null;
  166. if (line.styles) line.styles = null;
  167. });
  168. cm.doc.frontier = cm.doc.first;
  169. startWorker(cm, 100);
  170. cm.state.modeGen++;
  171. if (cm.curOp) regChange(cm);
  172. }
  173. function wrappingChanged(cm) {
  174. if (cm.options.lineWrapping) {
  175. cm.display.wrapper.className += " CodeMirror-wrap";
  176. cm.display.sizer.style.minWidth = "";
  177. } else {
  178. cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-wrap", "");
  179. computeMaxLength(cm);
  180. }
  181. estimateLineHeights(cm);
  182. regChange(cm);
  183. clearCaches(cm);
  184. setTimeout(function(){updateScrollbars(cm);}, 100);
  185. }
  186. function estimateHeight(cm) {
  187. var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;
  188. var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);
  189. return function(line) {
  190. if (lineIsHidden(cm.doc, line))
  191. return 0;
  192. else if (wrapping)
  193. return (Math.ceil(line.text.length / perLine) || 1) * th;
  194. else
  195. return th;
  196. };
  197. }
  198. function estimateLineHeights(cm) {
  199. var doc = cm.doc, est = estimateHeight(cm);
  200. doc.iter(function(line) {
  201. var estHeight = est(line);
  202. if (estHeight != line.height) updateLineHeight(line, estHeight);
  203. });
  204. }
  205. function keyMapChanged(cm) {
  206. var map = keyMap[cm.options.keyMap], style = map.style;
  207. cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-keymap-\S+/g, "") +
  208. (style ? " cm-keymap-" + style : "");
  209. cm.state.disableInput = map.disableInput;
  210. }
  211. function themeChanged(cm) {
  212. cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") +
  213. cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-");
  214. clearCaches(cm);
  215. }
  216. function guttersChanged(cm) {
  217. updateGutters(cm);
  218. regChange(cm);
  219. setTimeout(function(){alignHorizontally(cm);}, 20);
  220. }
  221. function updateGutters(cm) {
  222. var gutters = cm.display.gutters, specs = cm.options.gutters;
  223. removeChildren(gutters);
  224. for (var i = 0; i < specs.length; ++i) {
  225. var gutterClass = specs[i];
  226. var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass));
  227. if (gutterClass == "CodeMirror-linenumbers") {
  228. cm.display.lineGutter = gElt;
  229. gElt.style.width = (cm.display.lineNumWidth || 1) + "px";
  230. }
  231. }
  232. gutters.style.display = i ? "" : "none";
  233. }
  234. function lineLength(doc, line) {
  235. if (line.height == 0) return 0;
  236. var len = line.text.length, merged, cur = line;
  237. while (merged = collapsedSpanAtStart(cur)) {
  238. var found = merged.find();
  239. cur = getLine(doc, found.from.line);
  240. len += found.from.ch - found.to.ch;
  241. }
  242. cur = line;
  243. while (merged = collapsedSpanAtEnd(cur)) {
  244. var found = merged.find();
  245. len -= cur.text.length - found.from.ch;
  246. cur = getLine(doc, found.to.line);
  247. len += cur.text.length - found.to.ch;
  248. }
  249. return len;
  250. }
  251. function computeMaxLength(cm) {
  252. var d = cm.display, doc = cm.doc;
  253. d.maxLine = getLine(doc, doc.first);
  254. d.maxLineLength = lineLength(doc, d.maxLine);
  255. d.maxLineChanged = true;
  256. doc.iter(function(line) {
  257. var len = lineLength(doc, line);
  258. if (len > d.maxLineLength) {
  259. d.maxLineLength = len;
  260. d.maxLine = line;
  261. }
  262. });
  263. }
  264. // Make sure the gutters options contains the element
  265. // "CodeMirror-linenumbers" when the lineNumbers option is true.
  266. function setGuttersForLineNumbers(options) {
  267. var found = false;
  268. for (var i = 0; i < options.gutters.length; ++i) {
  269. if (options.gutters[i] == "CodeMirror-linenumbers") {
  270. if (options.lineNumbers) found = true;
  271. else options.gutters.splice(i--, 1);
  272. }
  273. }
  274. if (!found && options.lineNumbers)
  275. options.gutters.push("CodeMirror-linenumbers");
  276. }
  277. // SCROLLBARS
  278. // Re-synchronize the fake scrollbars with the actual size of the
  279. // content. Optionally force a scrollTop.
  280. function updateScrollbars(cm) {
  281. var d = cm.display, docHeight = cm.doc.height;
  282. var totalHeight = docHeight + paddingVert(d);
  283. d.sizer.style.minHeight = d.heightForcer.style.top = totalHeight + "px";
  284. d.gutters.style.height = Math.max(totalHeight, d.scroller.clientHeight - scrollerCutOff) + "px";
  285. var scrollHeight = Math.max(totalHeight, d.scroller.scrollHeight);
  286. var needsH = d.scroller.scrollWidth > (d.scroller.clientWidth + 1);
  287. var needsV = scrollHeight > (d.scroller.clientHeight + 1);
  288. if (needsV) {
  289. d.scrollbarV.style.display = "block";
  290. d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0";
  291. d.scrollbarV.firstChild.style.height =
  292. (scrollHeight - d.scroller.clientHeight + d.scrollbarV.clientHeight) + "px";
  293. } else {
  294. d.scrollbarV.style.display = "";
  295. d.scrollbarV.firstChild.style.height = "0";
  296. }
  297. if (needsH) {
  298. d.scrollbarH.style.display = "block";
  299. d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0";
  300. d.scrollbarH.firstChild.style.width =
  301. (d.scroller.scrollWidth - d.scroller.clientWidth + d.scrollbarH.clientWidth) + "px";
  302. } else {
  303. d.scrollbarH.style.display = "";
  304. d.scrollbarH.firstChild.style.width = "0";
  305. }
  306. if (needsH && needsV) {
  307. d.scrollbarFiller.style.display = "block";
  308. d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px";
  309. } else d.scrollbarFiller.style.display = "";
  310. if (needsH && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {
  311. d.gutterFiller.style.display = "block";
  312. d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px";
  313. d.gutterFiller.style.width = d.gutters.offsetWidth + "px";
  314. } else d.gutterFiller.style.display = "";
  315. if (mac_geLion && scrollbarWidth(d.measure) === 0)
  316. d.scrollbarV.style.minWidth = d.scrollbarH.style.minHeight = mac_geMountainLion ? "18px" : "12px";
  317. }
  318. function visibleLines(display, doc, viewPort) {
  319. var top = display.scroller.scrollTop, height = display.wrapper.clientHeight;
  320. if (typeof viewPort == "number") top = viewPort;
  321. else if (viewPort) {top = viewPort.top; height = viewPort.bottom - viewPort.top;}
  322. top = Math.floor(top - paddingTop(display));
  323. var bottom = Math.ceil(top + height);
  324. return {from: lineAtHeight(doc, top), to: lineAtHeight(doc, bottom)};
  325. }
  326. // LINE NUMBERS
  327. function alignHorizontally(cm) {
  328. var display = cm.display;
  329. if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return;
  330. var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;
  331. var gutterW = display.gutters.offsetWidth, l = comp + "px";
  332. for (var n = display.lineDiv.firstChild; n; n = n.nextSibling) if (n.alignable) {
  333. for (var i = 0, a = n.alignable; i < a.length; ++i) a[i].style.left = l;
  334. }
  335. if (cm.options.fixedGutter)
  336. display.gutters.style.left = (comp + gutterW) + "px";
  337. }
  338. function maybeUpdateLineNumberWidth(cm) {
  339. if (!cm.options.lineNumbers) return false;
  340. var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;
  341. if (last.length != display.lineNumChars) {
  342. var test = display.measure.appendChild(elt("div", [elt("div", last)],
  343. "CodeMirror-linenumber CodeMirror-gutter-elt"));
  344. var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;
  345. display.lineGutter.style.width = "";
  346. display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding);
  347. display.lineNumWidth = display.lineNumInnerWidth + padding;
  348. display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;
  349. display.lineGutter.style.width = display.lineNumWidth + "px";
  350. return true;
  351. }
  352. return false;
  353. }
  354. function lineNumberFor(options, i) {
  355. return String(options.lineNumberFormatter(i + options.firstLineNumber));
  356. }
  357. function compensateForHScroll(display) {
  358. return getRect(display.scroller).left - getRect(display.sizer).left;
  359. }
  360. // DISPLAY DRAWING
  361. function updateDisplay(cm, changes, viewPort, forced) {
  362. var oldFrom = cm.display.showingFrom, oldTo = cm.display.showingTo, updated;
  363. var visible = visibleLines(cm.display, cm.doc, viewPort);
  364. for (;;) {
  365. if (!updateDisplayInner(cm, changes, visible, forced)) break;
  366. forced = false;
  367. updated = true;
  368. updateSelection(cm);
  369. updateScrollbars(cm);
  370. // Clip forced viewport to actual scrollable area
  371. if (viewPort)
  372. viewPort = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight,
  373. typeof viewPort == "number" ? viewPort : viewPort.top);
  374. visible = visibleLines(cm.display, cm.doc, viewPort);
  375. if (visible.from >= cm.display.showingFrom && visible.to <= cm.display.showingTo)
  376. break;
  377. changes = [];
  378. }
  379. if (updated) {
  380. signalLater(cm, "update", cm);
  381. if (cm.display.showingFrom != oldFrom || cm.display.showingTo != oldTo)
  382. signalLater(cm, "viewportChange", cm, cm.display.showingFrom, cm.display.showingTo);
  383. }
  384. return updated;
  385. }
  386. // Uses a set of changes plus the current scroll position to
  387. // determine which DOM updates have to be made, and makes the
  388. // updates.
  389. function updateDisplayInner(cm, changes, visible, forced) {
  390. var display = cm.display, doc = cm.doc;
  391. if (!display.wrapper.clientWidth) {
  392. display.showingFrom = display.showingTo = doc.first;
  393. display.viewOffset = 0;
  394. return;
  395. }
  396. // Bail out if the visible area is already rendered and nothing changed.
  397. if (!forced && changes.length == 0 &&
  398. visible.from > display.showingFrom && visible.to < display.showingTo)
  399. return;
  400. if (maybeUpdateLineNumberWidth(cm))
  401. changes = [{from: doc.first, to: doc.first + doc.size}];
  402. var gutterW = display.sizer.style.marginLeft = display.gutters.offsetWidth + "px";
  403. display.scrollbarH.style.left = cm.options.fixedGutter ? gutterW : "0";
  404. // Used to determine which lines need their line numbers updated
  405. var positionsChangedFrom = Infinity;
  406. if (cm.options.lineNumbers)
  407. for (var i = 0; i < changes.length; ++i)
  408. if (changes[i].diff && changes[i].from < positionsChangedFrom) { positionsChangedFrom = changes[i].from; }
  409. var end = doc.first + doc.size;
  410. var from = Math.max(visible.from - cm.options.viewportMargin, doc.first);
  411. var to = Math.min(end, visible.to + cm.options.viewportMargin);
  412. if (display.showingFrom < from && from - display.showingFrom < 20) from = Math.max(doc.first, display.showingFrom);
  413. if (display.showingTo > to && display.showingTo - to < 20) to = Math.min(end, display.showingTo);
  414. if (sawCollapsedSpans) {
  415. from = lineNo(visualLine(doc, getLine(doc, from)));
  416. while (to < end && lineIsHidden(doc, getLine(doc, to))) ++to;
  417. }
  418. // Create a range of theoretically intact lines, and punch holes
  419. // in that using the change info.
  420. var intact = [{from: Math.max(display.showingFrom, doc.first),
  421. to: Math.min(display.showingTo, end)}];
  422. if (intact[0].from >= intact[0].to) intact = [];
  423. else intact = computeIntact(intact, changes);
  424. // When merged lines are present, we might have to reduce the
  425. // intact ranges because changes in continued fragments of the
  426. // intact lines do require the lines to be redrawn.
  427. if (sawCollapsedSpans)
  428. for (var i = 0; i < intact.length; ++i) {
  429. var range = intact[i], merged;
  430. while (merged = collapsedSpanAtEnd(getLine(doc, range.to - 1))) {
  431. var newTo = merged.find().from.line;
  432. if (newTo > range.from) range.to = newTo;
  433. else { intact.splice(i--, 1); break; }
  434. }
  435. }
  436. // Clip off the parts that won't be visible
  437. var intactLines = 0;
  438. for (var i = 0; i < intact.length; ++i) {
  439. var range = intact[i];
  440. if (range.from < from) range.from = from;
  441. if (range.to > to) range.to = to;
  442. if (range.from >= range.to) intact.splice(i--, 1);
  443. else intactLines += range.to - range.from;
  444. }
  445. if (!forced && intactLines == to - from && from == display.showingFrom && to == display.showingTo) {
  446. updateViewOffset(cm);
  447. return;
  448. }
  449. intact.sort(function(a, b) {return a.from - b.from;});
  450. // Avoid crashing on IE's "unspecified error" when in iframes
  451. try {
  452. var focused = document.activeElement;
  453. } catch(e) {}
  454. if (intactLines < (to - from) * .7) display.lineDiv.style.display = "none";
  455. patchDisplay(cm, from, to, intact, positionsChangedFrom);
  456. display.lineDiv.style.display = "";
  457. if (focused && document.activeElement != focused && focused.offsetHeight) focused.focus();
  458. var different = from != display.showingFrom || to != display.showingTo ||
  459. display.lastSizeC != display.wrapper.clientHeight;
  460. // This is just a bogus formula that detects when the editor is
  461. // resized or the font size changes.
  462. if (different) {
  463. display.lastSizeC = display.wrapper.clientHeight;
  464. startWorker(cm, 400);
  465. }
  466. display.showingFrom = from; display.showingTo = to;
  467. updateHeightsInViewport(cm);
  468. updateViewOffset(cm);
  469. return true;
  470. }
  471. function updateHeightsInViewport(cm) {
  472. var display = cm.display;
  473. var prevBottom = display.lineDiv.offsetTop;
  474. for (var node = display.lineDiv.firstChild, height; node; node = node.nextSibling) if (node.lineObj) {
  475. if (ie_lt8) {
  476. var bot = node.offsetTop + node.offsetHeight;
  477. height = bot - prevBottom;
  478. prevBottom = bot;
  479. } else {
  480. var box = getRect(node);
  481. height = box.bottom - box.top;
  482. }
  483. var diff = node.lineObj.height - height;
  484. if (height < 2) height = textHeight(display);
  485. if (diff > .001 || diff < -.001) {
  486. updateLineHeight(node.lineObj, height);
  487. var widgets = node.lineObj.widgets;
  488. if (widgets) for (var i = 0; i < widgets.length; ++i)
  489. widgets[i].height = widgets[i].node.offsetHeight;
  490. }
  491. }
  492. }
  493. function updateViewOffset(cm) {
  494. var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom));
  495. // Position the mover div to align with the current virtual scroll position
  496. cm.display.mover.style.top = off + "px";
  497. }
  498. function computeIntact(intact, changes) {
  499. for (var i = 0, l = changes.length || 0; i < l; ++i) {
  500. var change = changes[i], intact2 = [], diff = change.diff || 0;
  501. for (var j = 0, l2 = intact.length; j < l2; ++j) {
  502. var range = intact[j];
  503. if (change.to <= range.from && change.diff) {
  504. intact2.push({from: range.from + diff, to: range.to + diff});
  505. } else if (change.to <= range.from || change.from >= range.to) {
  506. intact2.push(range);
  507. } else {
  508. if (change.from > range.from)
  509. intact2.push({from: range.from, to: change.from});
  510. if (change.to < range.to)
  511. intact2.push({from: change.to + diff, to: range.to + diff});
  512. }
  513. }
  514. intact = intact2;
  515. }
  516. return intact;
  517. }
  518. function getDimensions(cm) {
  519. var d = cm.display, left = {}, width = {};
  520. for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {
  521. left[cm.options.gutters[i]] = n.offsetLeft;
  522. width[cm.options.gutters[i]] = n.offsetWidth;
  523. }
  524. return {fixedPos: compensateForHScroll(d),
  525. gutterTotalWidth: d.gutters.offsetWidth,
  526. gutterLeft: left,
  527. gutterWidth: width,
  528. wrapperWidth: d.wrapper.clientWidth};
  529. }
  530. function patchDisplay(cm, from, to, intact, updateNumbersFrom) {
  531. var dims = getDimensions(cm);
  532. var display = cm.display, lineNumbers = cm.options.lineNumbers;
  533. if (!intact.length && (!webkit || !cm.display.currentWheelTarget))
  534. removeChildren(display.lineDiv);
  535. var container = display.lineDiv, cur = container.firstChild;
  536. function rm(node) {
  537. var next = node.nextSibling;
  538. if (webkit && mac && cm.display.currentWheelTarget == node) {
  539. node.style.display = "none";
  540. node.lineObj = null;
  541. } else {
  542. node.parentNode.removeChild(node);
  543. }
  544. return next;
  545. }
  546. var nextIntact = intact.shift(), lineN = from;
  547. cm.doc.iter(from, to, function(line) {
  548. if (nextIntact && nextIntact.to == lineN) nextIntact = intact.shift();
  549. if (lineIsHidden(cm.doc, line)) {
  550. if (line.height != 0) updateLineHeight(line, 0);
  551. if (line.widgets && cur && cur.previousSibling) for (var i = 0; i < line.widgets.length; ++i) {
  552. var w = line.widgets[i];
  553. if (w.showIfHidden) {
  554. var prev = cur.previousSibling;
  555. if (/pre/i.test(prev.nodeName)) {
  556. var wrap = elt("div", null, null, "position: relative");
  557. prev.parentNode.replaceChild(wrap, prev);
  558. wrap.appendChild(prev);
  559. prev = wrap;
  560. }
  561. var wnode = prev.appendChild(elt("div", [w.node], "CodeMirror-linewidget"));
  562. if (!w.handleMouseEvents) wnode.ignoreEvents = true;
  563. positionLineWidget(w, wnode, prev, dims);
  564. }
  565. }
  566. } else if (nextIntact && nextIntact.from <= lineN && nextIntact.to > lineN) {
  567. // This line is intact. Skip to the actual node. Update its
  568. // line number if needed.
  569. while (cur.lineObj != line) cur = rm(cur);
  570. if (lineNumbers && updateNumbersFrom <= lineN && cur.lineNumber)
  571. setTextContent(cur.lineNumber, lineNumberFor(cm.options, lineN));
  572. cur = cur.nextSibling;
  573. } else {
  574. // For lines with widgets, make an attempt to find and reuse
  575. // the existing element, so that widgets aren't needlessly
  576. // removed and re-inserted into the dom
  577. if (line.widgets) for (var j = 0, search = cur, reuse; search && j < 20; ++j, search = search.nextSibling)
  578. if (search.lineObj == line && /div/i.test(search.nodeName)) { reuse = search; break; }
  579. // This line needs to be generated.
  580. var lineNode = buildLineElement(cm, line, lineN, dims, reuse);
  581. if (lineNode != reuse) {
  582. container.insertBefore(lineNode, cur);
  583. } else {
  584. while (cur != reuse) cur = rm(cur);
  585. cur = cur.nextSibling;
  586. }
  587. lineNode.lineObj = line;
  588. }
  589. ++lineN;
  590. });
  591. while (cur) cur = rm(cur);
  592. }
  593. function buildLineElement(cm, line, lineNo, dims, reuse) {
  594. var lineElement = lineContent(cm, line);
  595. var markers = line.gutterMarkers, display = cm.display, wrap;
  596. if (!cm.options.lineNumbers && !markers && !line.bgClass && !line.wrapClass && !line.widgets)
  597. return lineElement;
  598. // Lines with gutter elements, widgets or a background class need
  599. // to be wrapped again, and have the extra elements added to the
  600. // wrapper div
  601. if (reuse) {
  602. reuse.alignable = null;
  603. var isOk = true, widgetsSeen = 0, insertBefore = null;
  604. for (var n = reuse.firstChild, next; n; n = next) {
  605. next = n.nextSibling;
  606. if (!/\bCodeMirror-linewidget\b/.test(n.className)) {
  607. reuse.removeChild(n);
  608. } else {
  609. for (var i = 0; i < line.widgets.length; ++i) {
  610. var widget = line.widgets[i];
  611. if (widget.node == n.firstChild) {
  612. if (!widget.above && !insertBefore) insertBefore = n;
  613. positionLineWidget(widget, n, reuse, dims);
  614. ++widgetsSeen;
  615. break;
  616. }
  617. }
  618. if (i == line.widgets.length) { isOk = false; break; }
  619. }
  620. }
  621. reuse.insertBefore(lineElement, insertBefore);
  622. if (isOk && widgetsSeen == line.widgets.length) {
  623. wrap = reuse;
  624. reuse.className = line.wrapClass || "";
  625. }
  626. }
  627. if (!wrap) {
  628. wrap = elt("div", null, line.wrapClass, "position: relative");
  629. wrap.appendChild(lineElement);
  630. }
  631. // Kludge to make sure the styled element lies behind the selection (by z-index)
  632. if (line.bgClass)
  633. wrap.insertBefore(elt("div", null, line.bgClass + " CodeMirror-linebackground"), wrap.firstChild);
  634. if (cm.options.lineNumbers || markers) {
  635. var gutterWrap = wrap.insertBefore(elt("div", null, null, "position: absolute; left: " +
  636. (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"),
  637. wrap.firstChild);
  638. if (cm.options.fixedGutter) (wrap.alignable || (wrap.alignable = [])).push(gutterWrap);
  639. if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"]))
  640. wrap.lineNumber = gutterWrap.appendChild(
  641. elt("div", lineNumberFor(cm.options, lineNo),
  642. "CodeMirror-linenumber CodeMirror-gutter-elt",
  643. "left: " + dims.gutterLeft["CodeMirror-linenumbers"] + "px; width: "
  644. + display.lineNumInnerWidth + "px"));
  645. if (markers)
  646. for (var k = 0; k < cm.options.gutters.length; ++k) {
  647. var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];
  648. if (found)
  649. gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", "left: " +
  650. dims.gutterLeft[id] + "px; width: " + dims.gutterWidth[id] + "px"));
  651. }
  652. }
  653. if (ie_lt8) wrap.style.zIndex = 2;
  654. if (line.widgets && wrap != reuse) for (var i = 0, ws = line.widgets; i < ws.length; ++i) {
  655. var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget");
  656. if (!widget.handleMouseEvents) node.ignoreEvents = true;
  657. positionLineWidget(widget, node, wrap, dims);
  658. if (widget.above)
  659. wrap.insertBefore(node, cm.options.lineNumbers && line.height != 0 ? gutterWrap : lineElement);
  660. else
  661. wrap.appendChild(node);
  662. signalLater(widget, "redraw");
  663. }
  664. return wrap;
  665. }
  666. function positionLineWidget(widget, node, wrap, dims) {
  667. if (widget.noHScroll) {
  668. (wrap.alignable || (wrap.alignable = [])).push(node);
  669. var width = dims.wrapperWidth;
  670. node.style.left = dims.fixedPos + "px";
  671. if (!widget.coverGutter) {
  672. width -= dims.gutterTotalWidth;
  673. node.style.paddingLeft = dims.gutterTotalWidth + "px";
  674. }
  675. node.style.width = width + "px";
  676. }
  677. if (widget.coverGutter) {
  678. node.style.zIndex = 5;
  679. node.style.position = "relative";
  680. if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + "px";
  681. }
  682. }
  683. // SELECTION / CURSOR
  684. function updateSelection(cm) {
  685. var display = cm.display;
  686. var collapsed = posEq(cm.doc.sel.from, cm.doc.sel.to);
  687. if (collapsed || cm.options.showCursorWhenSelecting)
  688. updateSelectionCursor(cm);
  689. else
  690. display.cursor.style.display = display.otherCursor.style.display = "none";
  691. if (!collapsed)
  692. updateSelectionRange(cm);
  693. else
  694. display.selectionDiv.style.display = "none";
  695. // Move the hidden textarea near the cursor to prevent scrolling artifacts
  696. if (cm.options.moveInputWithCursor) {
  697. var headPos = cursorCoords(cm, cm.doc.sel.head, "div");
  698. var wrapOff = getRect(display.wrapper), lineOff = getRect(display.lineDiv);
  699. display.inputDiv.style.top = Math.max(0, Math.min(display.wrapper.clientHeight - 10,
  700. headPos.top + lineOff.top - wrapOff.top)) + "px";
  701. display.inputDiv.style.left = Math.max(0, Math.min(display.wrapper.clientWidth - 10,
  702. headPos.left + lineOff.left - wrapOff.left)) + "px";
  703. }
  704. }
  705. // No selection, plain cursor
  706. function updateSelectionCursor(cm) {
  707. var display = cm.display, pos = cursorCoords(cm, cm.doc.sel.head, "div");
  708. display.cursor.style.left = pos.left + "px";
  709. display.cursor.style.top = pos.top + "px";
  710. display.cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px";
  711. display.cursor.style.display = "";
  712. if (pos.other) {
  713. display.otherCursor.style.display = "";
  714. display.otherCursor.style.left = pos.other.left + "px";
  715. display.otherCursor.style.top = pos.other.top + "px";
  716. display.otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px";
  717. } else { display.otherCursor.style.display = "none"; }
  718. }
  719. // Highlight selection
  720. function updateSelectionRange(cm) {
  721. var display = cm.display, doc = cm.doc, sel = cm.doc.sel;
  722. var fragment = document.createDocumentFragment();
  723. var clientWidth = display.lineSpace.offsetWidth, pl = paddingLeft(cm.display);
  724. function add(left, top, width, bottom) {
  725. if (top < 0) top = 0;
  726. fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left +
  727. "px; top: " + top + "px; width: " + (width == null ? clientWidth - left : width) +
  728. "px; height: " + (bottom - top) + "px"));
  729. }
  730. function drawForLine(line, fromArg, toArg) {
  731. var lineObj = getLine(doc, line);
  732. var lineLen = lineObj.text.length;
  733. var start, end;
  734. function coords(ch, bias) {
  735. return charCoords(cm, Pos(line, ch), "div", lineObj, bias);
  736. }
  737. iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) {
  738. var leftPos = coords(from, "left"), rightPos, left, right;
  739. if (from == to) {
  740. rightPos = leftPos;
  741. left = right = leftPos.left;
  742. } else {
  743. rightPos = coords(to - 1, "right");
  744. if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }
  745. left = leftPos.left;
  746. right = rightPos.right;
  747. }
  748. if (fromArg == null && from == 0) left = pl;
  749. if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part
  750. add(left, leftPos.top, null, leftPos.bottom);
  751. left = pl;
  752. if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);
  753. }
  754. if (toArg == null && to == lineLen) right = clientWidth;
  755. if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)
  756. start = leftPos;
  757. if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)
  758. end = rightPos;
  759. if (left < pl + 1) left = pl;
  760. add(left, rightPos.top, right - left, rightPos.bottom);
  761. });
  762. return {start: start, end: end};
  763. }
  764. if (sel.from.line == sel.to.line) {
  765. drawForLine(sel.from.line, sel.from.ch, sel.to.ch);
  766. } else {
  767. var fromLine = getLine(doc, sel.from.line), toLine = getLine(doc, sel.to.line);
  768. var singleVLine = visualLine(doc, fromLine) == visualLine(doc, toLine);
  769. var leftEnd = drawForLine(sel.from.line, sel.from.ch, singleVLine ? fromLine.text.length : null).end;
  770. var rightStart = drawForLine(sel.to.line, singleVLine ? 0 : null, sel.to.ch).start;
  771. if (singleVLine) {
  772. if (leftEnd.top < rightStart.top - 2) {
  773. add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);
  774. add(pl, rightStart.top, rightStart.left, rightStart.bottom);
  775. } else {
  776. add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);
  777. }
  778. }
  779. if (leftEnd.bottom < rightStart.top)
  780. add(pl, leftEnd.bottom, null, rightStart.top);
  781. }
  782. removeChildrenAndAdd(display.selectionDiv, fragment);
  783. display.selectionDiv.style.display = "";
  784. }
  785. // Cursor-blinking
  786. function restartBlink(cm) {
  787. if (!cm.state.focused) return;
  788. var display = cm.display;
  789. clearInterval(display.blinker);
  790. var on = true;
  791. display.cursor.style.visibility = display.otherCursor.style.visibility = "";
  792. if (cm.options.cursorBlinkRate > 0)
  793. display.blinker = setInterval(function() {
  794. display.cursor.style.visibility = display.otherCursor.style.visibility = (on = !on) ? "" : "hidden";
  795. }, cm.options.cursorBlinkRate);
  796. }
  797. // HIGHLIGHT WORKER
  798. function startWorker(cm, time) {
  799. if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo)
  800. cm.state.highlight.set(time, bind(highlightWorker, cm));
  801. }
  802. function highlightWorker(cm) {
  803. var doc = cm.doc;
  804. if (doc.frontier < doc.first) doc.frontier = doc.first;
  805. if (doc.frontier >= cm.display.showingTo) return;
  806. var end = +new Date + cm.options.workTime;
  807. var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
  808. var changed = [], prevChange;
  809. doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.showingTo + 500), function(line) {
  810. if (doc.frontier >= cm.display.showingFrom) { // Visible
  811. var oldStyles = line.styles;
  812. line.styles = highlightLine(cm, line, state);
  813. var ischange = !oldStyles || oldStyles.length != line.styles.length;
  814. for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i];
  815. if (ischange) {
  816. if (prevChange && prevChange.end == doc.frontier) prevChange.end++;
  817. else changed.push(prevChange = {start: doc.frontier, end: doc.frontier + 1});
  818. }
  819. line.stateAfter = copyState(doc.mode, state);
  820. } else {
  821. processLine(cm, line, state);
  822. line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null;
  823. }
  824. ++doc.frontier;
  825. if (+new Date > end) {
  826. startWorker(cm, cm.options.workDelay);
  827. return true;
  828. }
  829. });
  830. if (changed.length)
  831. operation(cm, function() {
  832. for (var i = 0; i < changed.length; ++i)
  833. regChange(this, changed[i].start, changed[i].end);
  834. })();
  835. }
  836. // Finds the line to start with when starting a parse. Tries to
  837. // find a line with a stateAfter, so that it can start with a
  838. // valid state. If that fails, it returns the line with the
  839. // smallest indentation, which tends to need the least context to
  840. // parse correctly.
  841. function findStartLine(cm, n, precise) {
  842. var minindent, minline, doc = cm.doc, maxScan = cm.doc.mode.innerMode ? 1000 : 100;
  843. for (var search = n, lim = n - maxScan; search > lim; --search) {
  844. if (search <= doc.first) return doc.first;
  845. var line = getLine(doc, search - 1);
  846. if (line.stateAfter && (!precise || search <= doc.frontier)) return search;
  847. var indented = countColumn(line.text, null, cm.options.tabSize);
  848. if (minline == null || minindent > indented) {
  849. minline = search - 1;
  850. minindent = indented;
  851. }
  852. }
  853. return minline;
  854. }
  855. function getStateBefore(cm, n, precise) {
  856. var doc = cm.doc, display = cm.display;
  857. if (!doc.mode.startState) return true;
  858. var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter;
  859. if (!state) state = startState(doc.mode);
  860. else state = copyState(doc.mode, state);
  861. doc.iter(pos, n, function(line) {
  862. processLine(cm, line, state);
  863. var save = pos == n - 1 || pos % 5 == 0 || pos >= display.showingFrom && pos < display.showingTo;
  864. line.stateAfter = save ? copyState(doc.mode, state) : null;
  865. ++pos;
  866. });
  867. return state;
  868. }
  869. // POSITION MEASUREMENT
  870. function paddingTop(display) {return display.lineSpace.offsetTop;}
  871. function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;}
  872. function paddingLeft(display) {
  873. var e = removeChildrenAndAdd(display.measure, elt("pre", null, null, "text-align: left")).appendChild(elt("span", "x"));
  874. return e.offsetLeft;
  875. }
  876. function measureChar(cm, line, ch, data, bias) {
  877. var dir = -1;
  878. data = data || measureLine(cm, line);
  879. for (var pos = ch;; pos += dir) {
  880. var r = data[pos];
  881. if (r) break;
  882. if (dir < 0 && pos == 0) dir = 1;
  883. }
  884. bias = pos > ch ? "left" : pos < ch ? "right" : bias;
  885. if (bias == "left" && r.leftSide) r = r.leftSide;
  886. else if (bias == "right" && r.rightSide) r = r.rightSide;
  887. return {left: pos < ch ? r.right : r.left,
  888. right: pos > ch ? r.left : r.right,
  889. top: r.top,
  890. bottom: r.bottom};
  891. }
  892. function findCachedMeasurement(cm, line) {
  893. var cache = cm.display.measureLineCache;
  894. for (var i = 0; i < cache.length; ++i) {
  895. var memo = cache[i];
  896. if (memo.text == line.text && memo.markedSpans == line.markedSpans &&
  897. cm.display.scroller.clientWidth == memo.width &&
  898. memo.classes == line.textClass + "|" + line.bgClass + "|" + line.wrapClass)
  899. return memo;
  900. }
  901. }
  902. function clearCachedMeasurement(cm, line) {
  903. var exists = findCachedMeasurement(cm, line);
  904. if (exists) exists.text = exists.measure = exists.markedSpans = null;
  905. }
  906. function measureLine(cm, line) {
  907. // First look in the cache
  908. var cached = findCachedMeasurement(cm, line);
  909. if (cached) return cached.measure;
  910. // Failing that, recompute and store result in cache
  911. var measure = measureLineInner(cm, line);
  912. var cache = cm.display.measureLineCache;
  913. var memo = {text: line.text, width: cm.display.scroller.clientWidth,
  914. markedSpans: line.markedSpans, measure: measure,
  915. classes: line.textClass + "|" + line.bgClass + "|" + line.wrapClass};
  916. if (cache.length == 16) cache[++cm.display.measureLineCachePos % 16] = memo;
  917. else cache.push(memo);
  918. return measure;
  919. }
  920. function measureLineInner(cm, line) {
  921. var display = cm.display, measure = emptyArray(line.text.length);
  922. var pre = lineContent(cm, line, measure, true);
  923. // IE does not cache element positions of inline elements between
  924. // calls to getBoundingClientRect. This makes the loop below,
  925. // which gathers the positions of all the characters on the line,
  926. // do an amount of layout work quadratic to the number of
  927. // characters. When line wrapping is off, we try to improve things
  928. // by first subdividing the line into a bunch of inline blocks, so
  929. // that IE can reuse most of the layout information from caches
  930. // for those blocks. This does interfere with line wrapping, so it
  931. // doesn't work when wrapping is on, but in that case the
  932. // situation is slightly better, since IE does cache line-wrapping
  933. // information and only recomputes per-line.
  934. if (ie && !ie_lt8 && !cm.options.lineWrapping && pre.childNodes.length > 100) {
  935. var fragment = document.createDocumentFragment();
  936. var chunk = 10, n = pre.childNodes.length;
  937. for (var i = 0, chunks = Math.ceil(n / chunk); i < chunks; ++i) {
  938. var wrap = elt("div", null, null, "display: inline-block");
  939. for (var j = 0; j < chunk && n; ++j) {
  940. wrap.appendChild(pre.firstChild);
  941. --n;
  942. }
  943. fragment.appendChild(wrap);
  944. }
  945. pre.appendChild(fragment);
  946. }
  947. removeChildrenAndAdd(display.measure, pre);
  948. var outer = getRect(display.lineDiv);
  949. var vranges = [], data = emptyArray(line.text.length), maxBot = pre.offsetHeight;
  950. // Work around an IE7/8 bug where it will sometimes have randomly
  951. // replaced our pre with a clone at this point.
  952. if (ie_lt9 && display.measure.first != pre)
  953. removeChildrenAndAdd(display.measure, pre);
  954. function measureRect(rect) {
  955. var top = rect.top - outer.top, bot = rect.bottom - outer.top;
  956. if (bot > maxBot) bot = maxBot;
  957. if (top < 0) top = 0;
  958. for (var i = vranges.length - 2; i >= 0; i -= 2) {
  959. var rtop = vranges[i], rbot = vranges[i+1];
  960. if (rtop > bot || rbot < top) continue;
  961. if (rtop <= top && rbot >= bot ||
  962. top <= rtop && bot >= rbot ||
  963. Math.min(bot, rbot) - Math.max(top, rtop) >= (bot - top) >> 1) {
  964. vranges[i] = Math.min(top, rtop);
  965. vranges[i+1] = Math.max(bot, rbot);
  966. break;
  967. }
  968. }
  969. if (i < 0) { i = vranges.length; vranges.push(top, bot); }
  970. return {left: rect.left - outer.left,
  971. right: rect.right - outer.left,
  972. top: i, bottom: null};
  973. }
  974. function finishRect(rect) {
  975. rect.bottom = vranges[rect.top+1];
  976. rect.top = vranges[rect.top];
  977. }
  978. for (var i = 0, cur; i < measure.length; ++i) if (cur = measure[i]) {
  979. var node = cur, rect = null;
  980. // A widget might wrap, needs special care
  981. if (/\bCodeMirror-widget\b/.test(cur.className) && cur.getClientRects) {
  982. if (cur.firstChild.nodeType == 1) node = cur.firstChild;
  983. var rects = node.getClientRects();
  984. if (rects.length > 1) {
  985. rect = data[i] = measureRect(rects[0]);
  986. rect.rightSide = measureRect(rects[rects.length - 1]);
  987. }
  988. }
  989. if (!rect) rect = data[i] = measureRect(getRect(node));
  990. if (cur.measureRight) rect.right = getRect(cur.measureRight).left;
  991. if (cur.leftSide) rect.leftSide = measureRect(getRect(cur.leftSide));
  992. }
  993. removeChildren(cm.display.measure);
  994. for (var i = 0, cur; i < data.length; ++i) if (cur = data[i]) {
  995. finishRect(cur);
  996. if (cur.leftSide) finishRect(cur.leftSide);
  997. if (cur.rightSide) finishRect(cur.rightSide);
  998. }
  999. return data;
  1000. }
  1001. function measureLineWidth(cm, line) {
  1002. var hasBadSpan = false;
  1003. if (line.markedSpans) for (var i = 0; i < line.markedSpans; ++i) {
  1004. var sp = line.markedSpans[i];
  1005. if (sp.collapsed && (sp.to == null || sp.to == line.text.length)) hasBadSpan = true;
  1006. }
  1007. var cached = !hasBadSpan && findCachedMeasurement(cm, line);
  1008. if (cached) return measureChar(cm, line, line.text.length, cached.measure, "right").right;
  1009. var pre = lineContent(cm, line, null, true);
  1010. var end = pre.appendChild(zeroWidthElement(cm.display.measure));
  1011. removeChildrenAndAdd(cm.display.measure, pre);
  1012. return getRect(end).right - getRect(cm.display.lineDiv).left;
  1013. }
  1014. function clearCaches(cm) {
  1015. cm.display.measureLineCache.length = cm.display.measureLineCachePos = 0;
  1016. cm.display.cachedCharWidth = cm.display.cachedTextHeight = null;
  1017. if (!cm.options.lineWrapping) cm.display.maxLineChanged = true;
  1018. cm.display.lineNumChars = null;
  1019. }
  1020. function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; }
  1021. function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; }
  1022. // Context is one of "line", "div" (display.lineDiv), "local"/null (editor), or "page"
  1023. function intoCoordSystem(cm, lineObj, rect, context) {
  1024. if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) {
  1025. var size = widgetHeight(lineObj.widgets[i]);
  1026. rect.top += size; rect.bottom += size;
  1027. }
  1028. if (context == "line") return rect;
  1029. if (!context) context = "local";
  1030. var yOff = heightAtLine(cm, lineObj);
  1031. if (context == "local") yOff += paddingTop(cm.display);
  1032. else yOff -= cm.display.viewOffset;
  1033. if (context == "page" || context == "window") {
  1034. var lOff = getRect(cm.display.lineSpace);
  1035. yOff += lOff.top + (context == "window" ? 0 : pageScrollY());
  1036. var xOff = lOff.left + (context == "window" ? 0 : pageScrollX());
  1037. rect.left += xOff; rect.right += xOff;
  1038. }
  1039. rect.top += yOff; rect.bottom += yOff;
  1040. return rect;
  1041. }
  1042. // Context may be "window", "page", "div", or "local"/null
  1043. // Result is in "div" coords
  1044. function fromCoordSystem(cm, coords, context) {
  1045. if (context == "div") return coords;
  1046. var left = coords.left, top = coords.top;
  1047. // First move into "page" coordinate system
  1048. if (context == "page") {
  1049. left -= pageScrollX();
  1050. top -= pageScrollY();
  1051. } else if (context == "local" || !context) {
  1052. var localBox = getRect(cm.display.sizer);
  1053. left += localBox.left;
  1054. top += localBox.top;
  1055. }
  1056. var lineSpaceBox = getRect(cm.display.lineSpace);
  1057. return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top};
  1058. }
  1059. function charCoords(cm, pos, context, lineObj, bias) {
  1060. if (!lineObj) lineObj = getLine(cm.doc, pos.line);
  1061. return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, null, bias), context);
  1062. }
  1063. function cursorCoords(cm, pos, context, lineObj, measurement) {
  1064. lineObj = lineObj || getLine(cm.doc, pos.line);
  1065. if (!measurement) measurement = measureLine(cm, lineObj);
  1066. function get(ch, right) {
  1067. var m = measureChar(cm, lineObj, ch, measurement, right ? "right" : "left");
  1068. if (right) m.left = m.right; else m.right = m.left;
  1069. return intoCoordSystem(cm, lineObj, m, context);
  1070. }
  1071. function getBidi(ch, partPos) {
  1072. var part = order[partPos], right = part.level % 2;
  1073. if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) {
  1074. part = order[--partPos];
  1075. ch = bidiRight(part) - (part.level % 2 ? 0 : 1);
  1076. right = true;
  1077. } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) {
  1078. part = order[++partPos];
  1079. ch = bidiLeft(part) - part.level % 2;
  1080. right = false;
  1081. }
  1082. if (right && ch == part.to && ch > part.from) return get(ch - 1);
  1083. return get(ch, right);
  1084. }
  1085. var order = getOrder(lineObj), ch = pos.ch;
  1086. if (!order) return get(ch);
  1087. var partPos = getBidiPartAt(order, ch);
  1088. var val = getBidi(ch, partPos);
  1089. if (bidiOther != null) val.other = getBidi(ch, bidiOther);
  1090. return val;
  1091. }
  1092. function PosWithInfo(line, ch, outside, xRel) {
  1093. var pos = new Pos(line, ch);
  1094. pos.xRel = xRel;
  1095. if (outside) pos.outside = true;
  1096. return pos;
  1097. }
  1098. // Coords must be lineSpace-local
  1099. function coordsChar(cm, x, y) {
  1100. var doc = cm.doc;
  1101. y += cm.display.viewOffset;
  1102. if (y < 0) return PosWithInfo(doc.first, 0, true, -1);
  1103. var lineNo = lineAtHeight(doc, y), last = doc.first + doc.size - 1;
  1104. if (lineNo > last)
  1105. return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1);
  1106. if (x < 0) x = 0;
  1107. for (;;) {
  1108. var lineObj = getLine(doc, lineNo);
  1109. var found = coordsCharInner(cm, lineObj, lineNo, x, y);
  1110. var merged = collapsedSpanAtEnd(lineObj);
  1111. var mergedPos = merged && merged.find();
  1112. if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))
  1113. lineNo = mergedPos.to.line;
  1114. else
  1115. return found;
  1116. }
  1117. }
  1118. function coordsCharInner(cm, lineObj, lineNo, x, y) {
  1119. var innerOff = y - heightAtLine(cm, lineObj);
  1120. var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth;
  1121. var measurement = measureLine(cm, lineObj);
  1122. function getX(ch) {
  1123. var sp = cursorCoords(cm, Pos(lineNo, ch), "line",
  1124. lineObj, measurement);
  1125. wrongLine = true;
  1126. if (innerOff > sp.bottom) return sp.left - adjust;
  1127. else if (innerOff < sp.top) return sp.left + adjust;
  1128. else wrongLine = false;
  1129. return sp.left;
  1130. }
  1131. var bidi = getOrder(lineObj), dist = lineObj.text.length;
  1132. var from = lineLeft(lineObj), to = lineRight(lineObj);
  1133. var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine;
  1134. if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1);
  1135. // Do a binary search between these bounds.
  1136. for (;;) {
  1137. if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) {
  1138. var ch = x < fromX || x - fromX <= toX - x ? from : to;
  1139. var xDiff = x - (ch == from ? fromX : toX);
  1140. while (isExtendingChar.test(lineObj.text.charAt(ch))) ++ch;
  1141. var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside,
  1142. xDiff < 0 ? -1 : xDiff ? 1 : 0);
  1143. return pos;
  1144. }
  1145. var step = Math.ceil(dist / 2), middle = from + step;
  1146. if (bidi) {
  1147. middle = from;
  1148. for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1);
  1149. }
  1150. var middleX = getX(middle);
  1151. if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;}
  1152. else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;}
  1153. }
  1154. }
  1155. var measureText;
  1156. function textHeight(display) {
  1157. if (display.cachedTextHeight != null) return display.cachedTextHeight;
  1158. if (measureText == null) {
  1159. measureText = elt("pre");
  1160. // Measure a bunch of lines, for browsers that compute
  1161. // fractional heights.
  1162. for (var i = 0; i < 49; ++i) {
  1163. measureText.appendChild(document.createTextNode("x"));
  1164. measureText.appendChild(elt("br"));
  1165. }
  1166. measureText.appendChild(document.createTextNode("x"));
  1167. }
  1168. removeChildrenAndAdd(display.measure, measureText);
  1169. var height = measureText.offsetHeight / 50;
  1170. if (height > 3) display.cachedTextHeight = height;
  1171. removeChildren(display.measure);
  1172. return height || 1;
  1173. }
  1174. function charWidth(display) {
  1175. if (display.cachedCharWidth != null) return display.cachedCharWidth;
  1176. var anchor = elt("span", "x");
  1177. var pre = elt("pre", [anchor]);
  1178. removeChildrenAndAdd(display.measure, pre);
  1179. var width = anchor.offsetWidth;
  1180. if (width > 2) display.cachedCharWidth = width;
  1181. return width || 10;
  1182. }
  1183. // OPERATIONS
  1184. // Operations are used to wrap changes in such a way that each
  1185. // change won't have to update the cursor and display (which would
  1186. // be awkward, slow, and error-prone), but instead updates are
  1187. // batched and then all combined and executed at once.
  1188. var nextOpId = 0;
  1189. function startOperation(cm) {
  1190. cm.curOp = {
  1191. // An array of ranges of lines that have to be updated. See
  1192. // updateDisplay.
  1193. changes: [],
  1194. forceUpdate: false,
  1195. updateInput: null,
  1196. userSelChange: null,
  1197. textChanged: null,
  1198. selectionChanged: false,
  1199. cursorActivity: false,
  1200. updateMaxLine: false,
  1201. updateScrollPos: false,
  1202. id: ++nextOpId
  1203. };
  1204. if (!delayedCallbackDepth++) delayedCallbacks = [];
  1205. }
  1206. function endOperation(cm) {
  1207. var op = cm.curOp, doc = cm.doc, display = cm.display;
  1208. cm.curOp = null;
  1209. if (op.updateMaxLine) computeMaxLength(cm);
  1210. if (display.maxLineChanged && !cm.options.lineWrapping && display.maxLine) {
  1211. var width = measureLineWidth(cm, display.maxLine);
  1212. display.sizer.style.minWidth = Math.max(0, width + 3 + scrollerCutOff) + "px";
  1213. display.maxLineChanged = false;
  1214. var maxScrollLeft = Math.max(0, display.sizer.offsetLeft + display.sizer.offsetWidth - display.scroller.clientWidth);
  1215. if (maxScrollLeft < doc.scrollLeft && !op.updateScrollPos)
  1216. setScrollLeft(cm, Math.min(display.scroller.scrollLeft, maxScrollLeft), true);
  1217. }
  1218. var newScrollPos, updated;
  1219. if (op.updateScrollPos) {
  1220. newScrollPos = op.updateScrollPos;
  1221. } else if (op.selectionChanged && display.scroller.clientHeight) { // don't rescroll if not visible
  1222. var coords = cursorCoords(cm, doc.sel.head);
  1223. newScrollPos = calculateScrollPos(cm, coords.left, coords.top, coords.left, coords.bottom);
  1224. }
  1225. if (op.changes.length || op.forceUpdate || newScrollPos && newScrollPos.scrollTop != null) {
  1226. updated = updateDisplay(cm, op.changes, newScrollPos && newScrollPos.scrollTop, op.forceUpdate);
  1227. if (cm.display.scroller.offsetHeight) cm.doc.scrollTop = cm.display.scroller.scrollTop;
  1228. }
  1229. if (!updated && op.selectionChanged) updateSelection(cm);
  1230. if (op.updateScrollPos) {
  1231. display.scroller.scrollTop = display.scrollbarV.scrollTop = doc.scrollTop = newScrollPos.scrollTop;
  1232. display.scroller.scrollLeft = display.scrollbarH.scrollLeft = doc.scrollLeft = newScrollPos.scrollLeft;
  1233. alignHorizontally(cm);
  1234. if (op.scrollToPos)
  1235. scrollPosIntoView(cm, clipPos(cm.doc, op.scrollToPos), op.scrollToPosMargin);
  1236. } else if (newScrollPos) {
  1237. scrollCursorIntoView(cm);
  1238. }
  1239. if (op.selectionChanged) restartBlink(cm);
  1240. if (cm.state.focused && op.updateInput)
  1241. resetInput(cm, op.userSelChange);
  1242. var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;
  1243. if (hidden) for (var i = 0; i < hidden.length; ++i)
  1244. if (!hidden[i].lines.length) signal(hidden[i], "hide");
  1245. if (unhidden) for (var i = 0; i < unhidden.length; ++i)
  1246. if (unhidden[i].lines.length) signal(unhidden[i], "unhide");
  1247. var delayed;
  1248. if (!--delayedCallbackDepth) {
  1249. delayed = delayedCallbacks;
  1250. delayedCallbacks = null;
  1251. }
  1252. if (op.textChanged)
  1253. signal(cm, "change", cm, op.textChanged);
  1254. if (op.cursorActivity) signal(cm, "cursorActivity", cm);
  1255. if (delayed) for (var i = 0; i < delayed.length; ++i) delayed[i]();
  1256. }
  1257. // Wraps a function in an operation. Returns the wrapped function.
  1258. function operation(cm1, f) {
  1259. return function() {
  1260. var cm = cm1 || this, withOp = !cm.curOp;
  1261. if (withOp) startOperation(cm);
  1262. try { var result = f.apply(cm, arguments); }
  1263. finally { if (withOp) endOperation(cm); }
  1264. return result;
  1265. };
  1266. }
  1267. function docOperation(f) {
  1268. return function() {
  1269. var withOp = this.cm && !this.cm.curOp, result;
  1270. if (withOp) startOperation(this.cm);
  1271. try { result = f.apply(this, arguments); }
  1272. finally { if (withOp) endOperation(this.cm); }
  1273. return result;
  1274. };
  1275. }
  1276. function runInOp(cm, f) {
  1277. var withOp = !cm.curOp, result;
  1278. if (withOp) startOperation(cm);
  1279. try { result = f(); }
  1280. finally { if (withOp) endOperation(cm); }
  1281. return result;
  1282. }
  1283. function regChange(cm, from, to, lendiff) {
  1284. if (from == null) from = cm.doc.first;
  1285. if (to == null) to = cm.doc.first + cm.doc.size;
  1286. cm.curOp.changes.push({from: from, to: to, diff: lendiff});
  1287. }
  1288. // INPUT HANDLING
  1289. function slowPoll(cm) {
  1290. if (cm.display.pollingFast) return;
  1291. cm.display.poll.set(cm.options.pollInterval, function() {
  1292. readInput(cm);
  1293. if (cm.state.focused) slowPoll(cm);
  1294. });
  1295. }
  1296. function fastPoll(cm) {
  1297. var missed = false;
  1298. cm.display.pollingFast = true;
  1299. function p() {
  1300. var changed = readInput(cm);
  1301. if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);}
  1302. else {cm.display.pollingFast = false; slowPoll(cm);}
  1303. }
  1304. cm.display.poll.set(20, p);
  1305. }
  1306. // prevInput is a hack to work with IME. If we reset the textarea
  1307. // on every change, that breaks IME. So we look for changes
  1308. // compared to the previous content instead. (Modern browsers have
  1309. // events that indicate IME taking place, but these are not widely
  1310. // supported or compatible enough yet to rely on.)
  1311. function readInput(cm) {
  1312. var input = cm.display.input, prevInput = cm.display.prevInput, doc = cm.doc, sel = doc.sel;
  1313. if (!cm.state.focused || hasSelection(input) || isReadOnly(cm) || cm.state.disableInput) return false;
  1314. if (cm.state.pasteIncoming && cm.state.fakedLastChar) {
  1315. input.value = input.value.substring(0, input.value.length - 1);
  1316. cm.state.fakedLastChar = false;
  1317. }
  1318. var text = input.value;
  1319. if (text == prevInput && posEq(sel.from, sel.to)) return false;
  1320. if (ie && !ie_lt9 && cm.display.inputHasSelection === text) {
  1321. resetInput(cm, true);
  1322. return false;
  1323. }
  1324. var withOp = !cm.curOp;
  1325. if (withOp) startOperation(cm);
  1326. sel.shift = false;
  1327. var same = 0, l = Math.min(prevInput.length, text.length);
  1328. while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;
  1329. var from = sel.from, to = sel.to;
  1330. if (same < prevInput.length)
  1331. from = Pos(from.line, from.ch - (prevInput.length - same));
  1332. else if (cm.state.overwrite && posEq(from, to) && !cm.state.pasteIncoming)
  1333. to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + (text.length - same)));
  1334. var updateInput = cm.curOp.updateInput;
  1335. var changeEvent = {from: from, to: to, text: splitLines(text.slice(same)),
  1336. origin: cm.state.pasteIncoming ? "paste" : "+input"};
  1337. makeChange(cm.doc, changeEvent, "end");
  1338. cm.curOp.updateInput = updateInput;
  1339. signalLater(cm, "inputRead", cm, changeEvent);
  1340. if (text.length > 1000 || text.indexOf("\n") > -1) input.value = cm.display.prevInput = "";
  1341. else cm.display.prevInput = text;
  1342. if (withOp) endOperation(cm);
  1343. cm.state.pasteIncoming = false;
  1344. return true;
  1345. }
  1346. function resetInput(cm, user) {
  1347. var minimal, selected, doc = cm.doc;
  1348. if (!posEq(doc.sel.from, doc.sel.to)) {
  1349. cm.display.prevInput = "";
  1350. minimal = hasCopyEvent &&
  1351. (doc.sel.to.line - doc.sel.from.line > 100 || (selected = cm.getSelection()).length > 1000);
  1352. var content = minimal ? "-" : selected || cm.getSelection();
  1353. cm.display.input.value = content;
  1354. if (cm.state.focused) selectInput(cm.display.input);
  1355. if (ie && !ie_lt9) cm.display.inputHasSelection = content;
  1356. } else if (user) {
  1357. cm.display.prevInput = cm.display.input.value = "";
  1358. if (ie && !ie_lt9) cm.display.inputHasSelection = null;
  1359. }
  1360. cm.display.inaccurateSelection = minimal;
  1361. }
  1362. function focusInput(cm) {
  1363. if (cm.options.readOnly != "nocursor" && (!mobile || document.activeElement != cm.display.input))
  1364. cm.display.input.focus();
  1365. }
  1366. function isReadOnly(cm) {
  1367. return cm.options.readOnly || cm.doc.cantEdit;
  1368. }
  1369. // EVENT HANDLERS
  1370. function registerEventHandlers(cm) {
  1371. var d = cm.display;
  1372. on(d.scroller, "mousedown", operation(cm, onMouseDown));
  1373. if (ie)
  1374. on(d.scroller, "dblclick", operation(cm, function(e) {
  1375. if (signalDOMEvent(cm, e)) return;
  1376. var pos = posFromMouse(cm, e);
  1377. if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return;
  1378. e_preventDefault(e);
  1379. var word = findWordAt(getLine(cm.doc, pos.line).text, pos);
  1380. extendSelection(cm.doc, word.from, word.to);
  1381. }));
  1382. else
  1383. on(d.scroller, "dblclick", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); });
  1384. on(d.lineSpace, "selectstart", function(e) {
  1385. if (!eventInWidget(d, e)) e_preventDefault(e);
  1386. });
  1387. // Gecko browsers fire contextmenu *after* opening the menu, at
  1388. // which point we can't mess with it anymore. Context menu is
  1389. // handled in onMouseDown for Gecko.
  1390. if (!captureMiddleClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);});
  1391. on(d.scroller, "scroll", function() {
  1392. if (d.scroller.clientHeight) {
  1393. setScrollTop(cm, d.scroller.scrollTop);
  1394. setScrollLeft(cm, d.scroller.scrollLeft, true);
  1395. signal(cm, "scroll", cm);
  1396. }
  1397. });
  1398. on(d.scrollbarV, "scroll", function() {
  1399. if (d.scroller.clientHeight) setScrollTop(cm, d.scrollbarV.scrollTop);
  1400. });
  1401. on(d.scrollbarH, "scroll", function() {
  1402. if (d.scroller.clientHeight) setScrollLeft(cm, d.scrollbarH.scrollLeft);
  1403. });
  1404. on(d.scroller, "mousewheel", function(e){onScrollWheel(cm, e);});
  1405. on(d.scroller, "DOMMouseScroll", function(e){onScrollWheel(cm, e);});
  1406. function reFocus() { if (cm.state.focused) setTimeout(bind(focusInput, cm), 0); }
  1407. on(d.scrollbarH, "mousedown", reFocus);
  1408. on(d.scrollbarV, "mousedown", reFocus);
  1409. // Prevent wrapper from ever scrolling
  1410. on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });
  1411. var resizeTimer;
  1412. function onResize() {
  1413. if (resizeTimer == null) resizeTimer = setTimeout(function() {
  1414. resizeTimer = null;
  1415. // Might be a text scaling operation, clear size caches.
  1416. d.cachedCharWidth = d.cachedTextHeight = knownScrollbarWidth = null;
  1417. clearCaches(cm);
  1418. runInOp(cm, bind(regChange, cm));
  1419. }, 100);
  1420. }
  1421. on(window, "resize", onResize);
  1422. // Above handler holds on to the editor and its data structures.
  1423. // Here we poll to unregister it when the editor is no longer in
  1424. // the document, so that it can be garbage-collected.
  1425. function unregister() {
  1426. for (var p = d.wrapper.parentNode; p && p != document.body; p = p.parentNode) {}
  1427. if (p) setTimeout(unregister, 5000);
  1428. else off(window, "resize", onResize);
  1429. }
  1430. setTimeout(unregister, 5000);
  1431. on(d.input, "keyup", operation(cm, function(e) {
  1432. if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
  1433. if (e.keyCode == 16) cm.doc.sel.shift = false;
  1434. }));
  1435. on(d.input, "input", bind(fastPoll, cm));
  1436. on(d.input, "keydown", operation(cm, onKeyDown));
  1437. on(d.input, "keypress", operation(cm, onKeyPress));
  1438. on(d.input, "focus", bind(onFocus, cm));
  1439. on(d.input, "blur", bind(onBlur, cm));
  1440. function drag_(e) {
  1441. if (signalDOMEvent(cm, e) || cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))) return;
  1442. e_stop(e);
  1443. }
  1444. if (cm.options.dragDrop) {
  1445. on(d.scroller, "dragstart", function(e){onDragStart(cm, e);});
  1446. on(d.scroller, "dragenter", drag_);
  1447. on(d.scroller, "dragover", drag_);
  1448. on(d.scroller, "drop", operation(cm, onDrop));
  1449. }
  1450. on(d.scroller, "paste", function(e) {
  1451. if (eventInWidget(d, e)) return;
  1452. focusInput(cm);
  1453. fastPoll(cm);
  1454. });
  1455. on(d.input, "paste", function() {
  1456. // Workaround for webkit bug https://bugs.webkit.org/show_bug.cgi?id=90206
  1457. // Add a char to the end of textarea before paste occur so that
  1458. // selection doesn't span to the end of textarea.
  1459. if (webkit && !cm.state.fakedLastChar && !(new Date - cm.state.lastMiddleDown < 200)) {
  1460. var start = d.input.selectionStart, end = d.input.selectionEnd;
  1461. d.input.value += "$";
  1462. d.input.selectionStart = start;
  1463. d.input.selectionEnd = end;
  1464. cm.state.fakedLastChar = true;
  1465. }
  1466. cm.state.pasteIncoming = true;
  1467. fastPoll(cm);
  1468. });
  1469. function prepareCopy() {
  1470. if (d.inaccurateSelection) {
  1471. d.prevInput = "";
  1472. d.inaccurateSelection = false;
  1473. d.input.value = cm.getSelection();
  1474. selectInput(d.input);
  1475. }
  1476. }
  1477. on(d.input, "cut", prepareCopy);
  1478. on(d.input, "copy", prepareCopy);
  1479. // Needed to handle Tab key in KHTML
  1480. if (khtml) on(d.sizer, "mouseup", function() {
  1481. if (document.activeElement == d.input) d.input.blur();
  1482. focusInput(cm);
  1483. });
  1484. }
  1485. function eventInWidget(display, e) {
  1486. for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {
  1487. if (!n || n.ignoreEvents || n.parentNode == display.sizer && n != display.mover) return true;
  1488. }
  1489. }
  1490. function posFromMouse(cm, e, liberal) {
  1491. var display = cm.display;
  1492. if (!liberal) {
  1493. var target = e_target(e);
  1494. if (target == display.scrollbarH || target == display.scrollbarH.firstChild ||
  1495. target == display.scrollbarV || target == display.scrollbarV.firstChild ||
  1496. target == display.scrollbarFiller || target == display.gutterFiller) return null;
  1497. }
  1498. var x, y, space = getRect(display.lineSpace);
  1499. // Fails unpredictably on IE[67] when mouse is dragged around quickly.
  1500. try { x = e.clientX; y = e.clientY; } catch (e) { return null; }
  1501. return coordsChar(cm, x - space.left, y - space.top);
  1502. }
  1503. var lastClick, lastDoubleClick;
  1504. function onMouseDown(e) {
  1505. if (signalDOMEvent(this, e)) return;
  1506. var cm = this, display = cm.display, doc = cm.doc, sel = doc.sel;
  1507. sel.shift = e.shiftKey;
  1508. if (eventInWidget(display, e)) {
  1509. if (!webkit) {
  1510. display.scroller.draggable = false;
  1511. setTimeout(function(){display.scroller.draggable = true;}, 100);
  1512. }
  1513. return;
  1514. }
  1515. if (clickInGutter(cm, e)) return;
  1516. var start = posFromMouse(cm, e);
  1517. switch (e_button(e)) {
  1518. case 3:
  1519. if (captureMiddleClick) onContextMenu.call(cm, cm, e);
  1520. return;
  1521. case 2:
  1522. if (webkit) cm.state.lastMiddleDown = +new Date;
  1523. if (start) extendSelection(cm.doc, start);
  1524. setTimeout(bind(focusInput, cm), 20);
  1525. e_preventDefault(e);
  1526. return;
  1527. }
  1528. // For button 1, if it was clicked inside the editor
  1529. // (posFromMouse returning non-null), we have to adjust the
  1530. // selection.
  1531. if (!start) {if (e_target(e) == display.scroller) e_preventDefault(e); return;}
  1532. if (!cm.state.focused) onFocus(cm);
  1533. var now = +new Date, type = "single";
  1534. if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) {
  1535. type = "triple";
  1536. e_preventDefault(e);
  1537. setTimeout(bind(focusInput, cm), 20);
  1538. selectLine(cm, start.line);
  1539. } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) {
  1540. type = "double";
  1541. lastDoubleClick = {time: now, pos: start};
  1542. e_preventDefault(e);
  1543. var word = findWordAt(getLine(doc, start.line).text, start);
  1544. extendSelection(cm.doc, word.from, word.to);
  1545. } else { lastClick = {time: now, pos: start}; }
  1546. var last = start;
  1547. if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) && !posEq(sel.from, sel.to) &&
  1548. !posLess(start, sel.from) && !posLess(sel.to, start) && type == "single") {
  1549. var dragEnd = operation(cm, function(e2) {
  1550. if (webkit) display.scroller.draggable = false;
  1551. cm.state.draggingText = false;
  1552. off(document, "mouseup", dragEnd);
  1553. off(display.scroller, "drop", dragEnd);
  1554. if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {
  1555. e_preventDefault(e2);
  1556. extendSelection(cm.doc, start);
  1557. focusInput(cm);
  1558. }
  1559. });
  1560. // Let the drag handler handle this.
  1561. if (webkit) display.scroller.draggable = true;
  1562. cm.state.draggingText = dragEnd;
  1563. // IE's approach to draggable
  1564. if (display.scroller.dragDrop) display.scroller.dragDrop();
  1565. on(document, "mouseup", dragEnd);
  1566. on(display.scroller, "drop", dragEnd);
  1567. return;
  1568. }
  1569. e_preventDefault(e);
  1570. if (type == "single") extendSelection(cm.doc, clipPos(doc, start));
  1571. var startstart = sel.from, startend = sel.to, lastPos = start;
  1572. function doSelect(cur) {
  1573. if (posEq(lastPos, cur)) return;
  1574. lastPos = cur;
  1575. if (type == "single") {
  1576. extendSelection(cm.doc, clipPos(doc, start), cur);
  1577. return;
  1578. }
  1579. startstart = clipPos(doc, startstart);
  1580. startend = clipPos(doc, startend);
  1581. if (type == "double") {
  1582. var word = findWordAt(getLine(doc, cur.line).text, cur);
  1583. if (posLess(cur, startstart)) extendSelection(cm.doc, word.from, startend);
  1584. else extendSelection(cm.doc, startstart, word.to);
  1585. } else if (type == "triple") {
  1586. if (posLess(cur, startstart)) extendSelection(cm.doc, startend, clipPos(doc, Pos(cur.line, 0)));
  1587. else extendSelection(cm.doc, startstart, clipPos(doc, Pos(cur.line + 1, 0)));
  1588. }
  1589. }
  1590. var editorSize = getRect(display.wrapper);
  1591. // Used to ensure timeout re-tries don't fire when another extend
  1592. // happened in the meantime (clearTimeout isn't reliable -- at
  1593. // least on Chrome, the timeouts still happen even when cleared,
  1594. // if the clear happens after their scheduled firing time).
  1595. var counter = 0;
  1596. function extend(e) {
  1597. var curCount = ++counter;
  1598. var cur = posFromMouse(cm, e, true);
  1599. if (!cur) return;
  1600. if (!posEq(cur, last)) {
  1601. if (!cm.state.focused) onFocus(cm);
  1602. last = cur;
  1603. doSelect(cur);
  1604. var visible = visibleLines(display, doc);
  1605. if (cur.line >= visible.to || cur.line < visible.from)
  1606. setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150);
  1607. } else {
  1608. var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;
  1609. if (outside) setTimeout(operation(cm, function() {
  1610. if (counter != curCount) return;
  1611. display.scroller.scrollTop += outside;
  1612. extend(e);
  1613. }), 50);
  1614. }
  1615. }
  1616. function done(e) {
  1617. counter = Infinity;
  1618. e_preventDefault(e);
  1619. focusInput(cm);
  1620. off(document, "mousemove", move);
  1621. off(document, "mouseup", up);
  1622. }
  1623. var move = operation(cm, function(e) {
  1624. if (!ie && !e_button(e)) done(e);
  1625. else extend(e);
  1626. });
  1627. var up = operation(cm, done);
  1628. on(document, "mousemove", move);
  1629. on(document, "mouseup", up);
  1630. }
  1631. function clickInGutter(cm, e) {
  1632. var display = cm.display;
  1633. try { var mX = e.clientX, mY = e.clientY; }
  1634. catch(e) { return false; }
  1635. if (mX >= Math.floor(getRect(display.gutters).right)) return false;
  1636. e_preventDefault(e);
  1637. if (!hasHandler(cm, "gutterClick")) return true;
  1638. var lineBox = getRect(display.lineDiv);
  1639. if (mY > lineBox.bottom) return true;
  1640. mY -= lineBox.top - display.viewOffset;
  1641. for (var i = 0; i < cm.options.gutters.length; ++i) {
  1642. var g = display.gutters.childNodes[i];
  1643. if (g && getRect(g).right >= mX) {
  1644. var line = lineAtHeight(cm.doc, mY);
  1645. var gutter = cm.options.gutters[i];
  1646. signalLater(cm, "gutterClick", cm, line, gutter, e);
  1647. break;
  1648. }
  1649. }
  1650. return true;
  1651. }
  1652. // Kludge to work around strange IE behavior where it'll sometimes
  1653. // re-fire a series of drag-related events right after the drop (#1551)
  1654. var lastDrop = 0;
  1655. function onDrop(e) {
  1656. var cm = this;
  1657. if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e) || (cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))))
  1658. return;
  1659. e_preventDefault(e);
  1660. if (ie) lastDrop = +new Date;
  1661. var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;
  1662. if (!pos || isReadOnly(cm)) return;
  1663. if (files && files.length && window.FileReader && window.File) {
  1664. var n = files.length, text = Array(n), read = 0;
  1665. var loadFile = function(file, i) {
  1666. var reader = new FileReader;
  1667. reader.onload = function() {
  1668. text[i] = reader.result;
  1669. if (++read == n) {
  1670. pos = clipPos(cm.doc, pos);
  1671. makeChange(cm.doc, {from: pos, to: pos, text: splitLines(text.join("\n")), origin: "paste"}, "around");
  1672. }
  1673. };
  1674. reader.readAsText(file);
  1675. };
  1676. for (var i = 0; i < n; ++i) loadFile(files[i], i);
  1677. } else {
  1678. // Don't do a replace if the drop happened inside of the selected text.
  1679. if (cm.state.draggingText && !(posLess(pos, cm.doc.sel.from) || posLess(cm.doc.sel.to, pos))) {
  1680. cm.state.draggingText(e);
  1681. // Ensure the editor is re-focused
  1682. setTimeout(bind(focusInput, cm), 20);
  1683. return;
  1684. }
  1685. try {
  1686. var text = e.dataTransfer.getData("Text");
  1687. if (text) {
  1688. var curFrom = cm.doc.sel.from, curTo = cm.doc.sel.to;
  1689. setSelection(cm.doc, pos, pos);
  1690. if (cm.state.draggingText) replaceRange(cm.doc, "", curFrom, curTo, "paste");
  1691. cm.replaceSelection(text, null, "paste");
  1692. focusInput(cm);
  1693. onFocus(cm);
  1694. }
  1695. }
  1696. catch(e){}
  1697. }
  1698. }
  1699. function onDragStart(cm, e) {
  1700. if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; }
  1701. if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return;
  1702. var txt = cm.getSelection();
  1703. e.dataTransfer.setData("Text", txt);
  1704. // Use dummy image instead of default browsers image.
  1705. // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
  1706. if (e.dataTransfer.setDragImage && !safari) {
  1707. var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
  1708. if (opera) {
  1709. img.width = img.height = 1;
  1710. cm.display.wrapper.appendChild(img);
  1711. // Force a relayout, or Opera won't use our image for some obscure reason
  1712. img._top = img.offsetTop;
  1713. }
  1714. e.dataTransfer.setDragImage(img, 0, 0);
  1715. if (opera) img.parentNode.removeChild(img);
  1716. }
  1717. }
  1718. function setScrollTop(cm, val) {
  1719. if (Math.abs(cm.doc.scrollTop - val) < 2) return;
  1720. cm.doc.scrollTop = val;
  1721. if (!gecko) updateDisplay(cm, [], val);
  1722. if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val;
  1723. if (cm.display.scrollbarV.scrollTop != val) cm.display.scrollbarV.scrollTop = val;
  1724. if (gecko) updateDisplay(cm, []);
  1725. startWorker(cm, 100);
  1726. }
  1727. function setScrollLeft(cm, val, isScroller) {
  1728. if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return;
  1729. val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);
  1730. cm.doc.scrollLeft = val;
  1731. alignHorizontally(cm);
  1732. if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val;
  1733. if (cm.display.scrollbarH.scrollLeft != val) cm.display.scrollbarH.scrollLeft = val;
  1734. }
  1735. // Since the delta values reported on mouse wheel events are
  1736. // unstandardized between browsers and even browser versions, and
  1737. // generally horribly unpredictable, this code starts by measuring
  1738. // the scroll effect that the first few mouse wheel events have,
  1739. // and, from that, detects the way it can convert deltas to pixel
  1740. // offsets afterwards.
  1741. //
  1742. // The reason we want to know the amount a wheel event will scroll
  1743. // is that it gives us a chance to update the display before the
  1744. // actual scrolling happens, reducing flickering.
  1745. var wheelSamples = 0, wheelPixelsPerUnit = null;
  1746. // Fill in a browser-detected starting value on browsers where we
  1747. // know one. These don't have to be accurate -- the result of them
  1748. // being wrong would just be a slight flicker on the first wheel
  1749. // scroll (if it is large enough).
  1750. if (ie) wheelPixelsPerUnit = -.53;
  1751. else if (gecko) wheelPixelsPerUnit = 15;
  1752. else if (chrome) wheelPixelsPerUnit = -.7;
  1753. else if (safari) wheelPixelsPerUnit = -1/3;
  1754. function onScrollWheel(cm, e) {
  1755. var dx = e.wheelDeltaX, dy = e.wheelDeltaY;
  1756. if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail;
  1757. if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail;
  1758. else if (dy == null) dy = e.wheelDelta;
  1759. var display = cm.display, scroll = display.scroller;
  1760. // Quit if there's nothing to scroll here
  1761. if (!(dx && scroll.scrollWidth > scroll.clientWidth ||
  1762. dy && scroll.scrollHeight > scroll.clientHeight)) return;
  1763. // Webkit browsers on OS X abort momentum scrolls when the target
  1764. // of the scroll event is removed from the scrollable element.
  1765. // This hack (see related code in patchDisplay) makes sure the
  1766. // element is kept around.
  1767. if (dy && mac && webkit) {
  1768. for (var cur = e.target; cur != scroll; cur = cur.parentNode) {
  1769. if (cur.lineObj) {
  1770. cm.display.currentWheelTarget = cur;
  1771. break;
  1772. }
  1773. }
  1774. }
  1775. // On some browsers, horizontal scrolling will cause redraws to
  1776. // happen before the gutter has been realigned, causing it to
  1777. // wriggle around in a most unseemly way. When we have an
  1778. // estimated pixels/delta value, we just handle horizontal
  1779. // scrolling entirely here. It'll be slightly off from native, but
  1780. // better than glitching out.
  1781. if (dx && !gecko && !opera && wheelPixelsPerUnit != null) {
  1782. if (dy)
  1783. setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight)));
  1784. setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth)));
  1785. e_preventDefault(e);
  1786. display.wheelStartX = null; // Abort measurement, if in progress
  1787. return;
  1788. }
  1789. if (dy && wheelPixelsPerUnit != null) {
  1790. var pixels = dy * wheelPixelsPerUnit;
  1791. var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;
  1792. if (pixels < 0) top = Math.max(0, top + pixels - 50);
  1793. else bot = Math.min(cm.doc.height, bot + pixels + 50);
  1794. updateDisplay(cm, [], {top: top, bottom: bot});
  1795. }
  1796. if (wheelSamples < 20) {
  1797. if (display.wheelStartX == null) {
  1798. display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;
  1799. display.wheelDX = dx; display.wheelDY = dy;
  1800. setTimeout(function() {
  1801. if (display.wheelStartX == null) return;
  1802. var movedX = scroll.scrollLeft - display.wheelStartX;
  1803. var movedY = scroll.scrollTop - display.wheelStartY;
  1804. var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||
  1805. (movedX && display.wheelDX && movedX / display.wheelDX);
  1806. display.wheelStartX = display.wheelStartY = null;
  1807. if (!sample) return;
  1808. wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);
  1809. ++wheelSamples;
  1810. }, 200);
  1811. } else {
  1812. display.wheelDX += dx; display.wheelDY += dy;
  1813. }
  1814. }
  1815. }
  1816. function doHandleBinding(cm, bound, dropShift) {
  1817. if (typeof bound == "string") {
  1818. bound = commands[bound];
  1819. if (!bound) return false;
  1820. }
  1821. // Ensure previous input has been read, so that the handler sees a
  1822. // consistent view of the document
  1823. if (cm.display.pollingFast && readInput(cm)) cm.display.pollingFast = false;
  1824. var doc = cm.doc, prevShift = doc.sel.shift, done = false;
  1825. try {
  1826. if (isReadOnly(cm)) cm.state.suppressEdits = true;
  1827. if (dropShift) doc.sel.shift = false;
  1828. done = bound(cm) != Pass;
  1829. } finally {
  1830. doc.sel.shift = prevShift;
  1831. cm.state.suppressEdits = false;
  1832. }
  1833. return done;
  1834. }
  1835. function allKeyMaps(cm) {
  1836. var maps = cm.state.keyMaps.slice(0);
  1837. if (cm.options.extraKeys) maps.push(cm.options.extraKeys);
  1838. maps.push(cm.options.keyMap);
  1839. return maps;
  1840. }
  1841. var maybeTransition;
  1842. function handleKeyBinding(cm, e) {
  1843. // Handle auto keymap transitions
  1844. var startMap = getKeyMap(cm.options.keyMap), next = startMap.auto;
  1845. clearTimeout(maybeTransition);
  1846. if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() {
  1847. if (getKeyMap(cm.options.keyMap) == startMap) {
  1848. cm.options.keyMap = (next.call ? next.call(null, cm) : next);
  1849. keyMapChanged(cm);
  1850. }
  1851. }, 50);
  1852. var name = keyName(e, true), handled = false;
  1853. if (!name) return false;
  1854. var keymaps = allKeyMaps(cm);
  1855. if (e.shiftKey) {
  1856. // First try to resolve full name (including 'Shift-'). Failing
  1857. // that, see if there is a cursor-motion command (starting with
  1858. // 'go') bound to the keyname without 'Shift-'.
  1859. handled = lookupKey("Shift-" + name, keymaps, function(b) {return doHandleBinding(cm, b, true);})
  1860. || lookupKey(name, keymaps, function(b) {
  1861. if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion)
  1862. return doHandleBinding(cm, b);
  1863. });
  1864. } else {
  1865. handled = lookupKey(name, keymaps, function(b) { return doHandleBinding(cm, b); });
  1866. }
  1867. if (handled) {
  1868. e_preventDefault(e);
  1869. restartBlink(cm);
  1870. if (ie_lt9) { e.oldKeyCode = e.keyCode; e.keyCode = 0; }
  1871. signalLater(cm, "keyHandled", cm, name, e);
  1872. }
  1873. return handled;
  1874. }
  1875. function handleCharBinding(cm, e, ch) {
  1876. var handled = lookupKey("'" + ch + "'", allKeyMaps(cm),
  1877. function(b) { return doHandleBinding(cm, b, true); });
  1878. if (handled) {
  1879. e_preventDefault(e);
  1880. restartBlink(cm);
  1881. signalLater(cm, "keyHandled", cm, "'" + ch + "'", e);
  1882. }
  1883. return handled;
  1884. }
  1885. var lastStoppedKey = null;
  1886. function onKeyDown(e) {
  1887. var cm = this;
  1888. if (!cm.state.focused) onFocus(cm);
  1889. if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
  1890. if (ie && e.keyCode == 27) e.returnValue = false;
  1891. var code = e.keyCode;
  1892. // IE does strange things with escape.
  1893. cm.doc.sel.shift = code == 16 || e.shiftKey;
  1894. // First give onKeyEvent option a chance to handle this.
  1895. var handled = handleKeyBinding(cm, e);
  1896. if (opera) {
  1897. lastStoppedKey = handled ? code : null;
  1898. // Opera has no cut event... we try to at least catch the key combo
  1899. if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))
  1900. cm.replaceSelection("");
  1901. }
  1902. }
  1903. function onKeyPress(e) {
  1904. var cm = this;
  1905. if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
  1906. var keyCode = e.keyCode, charCode = e.charCode;
  1907. if (opera && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}
  1908. if (((opera && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(cm, e)) return;
  1909. var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
  1910. if (this.options.electricChars && this.doc.mode.electricChars &&
  1911. this.options.smartIndent && !isReadOnly(this) &&
  1912. this.doc.mode.electricChars.indexOf(ch) > -1)
  1913. setTimeout(operation(cm, function() {indentLine(cm, cm.doc.sel.to.line, "smart");}), 75);
  1914. if (handleCharBinding(cm, e, ch)) return;
  1915. if (ie && !ie_lt9) cm.display.inputHasSelection = null;
  1916. fastPoll(cm);
  1917. }
  1918. function onFocus(cm) {
  1919. if (cm.options.readOnly == "nocursor") return;
  1920. if (!cm.state.focused) {
  1921. signal(cm, "focus", cm);
  1922. cm.state.focused = true;
  1923. if (cm.display.wrapper.className.search(/\bCodeMirror-focused\b/) == -1)
  1924. cm.display.wrapper.className += " CodeMirror-focused";
  1925. if (!cm.curOp) {
  1926. resetInput(cm, true);
  1927. if (webkit) setTimeout(bind(resetInput, cm, true), 0); // Issue #1730
  1928. }
  1929. }
  1930. slowPoll(cm);
  1931. restartBlink(cm);
  1932. }
  1933. function onBlur(cm) {
  1934. if (cm.state.focused) {
  1935. signal(cm, "blur", cm);
  1936. cm.state.focused = false;
  1937. cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-focused", "");
  1938. }
  1939. clearInterval(cm.display.blinker);
  1940. setTimeout(function() {if (!cm.state.focused) cm.doc.sel.shift = false;}, 150);
  1941. }
  1942. var detectingSelectAll;
  1943. function onContextMenu(cm, e) {
  1944. if (signalDOMEvent(cm, e, "contextmenu")) return;
  1945. var display = cm.display, sel = cm.doc.sel;
  1946. if (eventInWidget(display, e)) return;
  1947. var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
  1948. if (!pos || opera) return; // Opera is difficult.
  1949. if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to))
  1950. operation(cm, setSelection)(cm.doc, pos, pos);
  1951. var oldCSS = display.input.style.cssText;
  1952. display.inputDiv.style.position = "absolute";
  1953. display.input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) +
  1954. "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: white; outline: none;" +
  1955. "border-width: 0; outline: none; overflow: hidden; opacity: .05; -ms-opacity: .05; filter: alpha(opacity=5);";
  1956. focusInput(cm);
  1957. resetInput(cm, true);
  1958. // Adds "Select all" to context menu in FF
  1959. if (posEq(sel.from, sel.to)) display.input.value = display.prevInput = " ";
  1960. function prepareSelectAllHack() {
  1961. if (display.input.selectionStart != null) {
  1962. var extval = display.input.value = " " + (posEq(sel.from, sel.to) ? "" : display.input.value);
  1963. display.prevInput = " ";
  1964. display.input.selectionStart = 1; display.input.selectionEnd = extval.length;
  1965. }
  1966. }
  1967. function rehide() {
  1968. display.inputDiv.style.position = "relative";
  1969. display.input.style.cssText = oldCSS;
  1970. if (ie_lt9) display.scrollbarV.scrollTop = display.scroller.scrollTop = scrollPos;
  1971. slowPoll(cm);
  1972. // Try to detect the user choosing select-all
  1973. if (display.input.selectionStart != null) {
  1974. if (!ie || ie_lt9) prepareSelectAllHack();
  1975. clearTimeout(detectingSelectAll);
  1976. var i = 0, poll = function(){
  1977. if (display.prevInput == " " && display.input.selectionStart == 0)
  1978. operation(cm, commands.selectAll)(cm);
  1979. else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500);
  1980. else resetInput(cm);
  1981. };
  1982. detectingSelectAll = setTimeout(poll, 200);
  1983. }
  1984. }
  1985. if (ie && !ie_lt9) prepareSelectAllHack();
  1986. if (captureMiddleClick) {
  1987. e_stop(e);
  1988. var mouseup = function() {
  1989. off(window, "mouseup", mouseup);
  1990. setTimeout(rehide, 20);
  1991. };
  1992. on(window, "mouseup", mouseup);
  1993. } else {
  1994. setTimeout(rehide, 50);
  1995. }
  1996. }
  1997. // UPDATING
  1998. var changeEnd = CodeMirror.changeEnd = function(change) {
  1999. if (!change.text) return change.to;
  2000. return Pos(change.from.line + change.text.length - 1,
  2001. lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0));
  2002. };
  2003. // Make sure a position will be valid after the given change.
  2004. function clipPostChange(doc, change, pos) {
  2005. if (!posLess(change.from, pos)) return clipPos(doc, pos);
  2006. var diff = (change.text.length - 1) - (change.to.line - change.from.line);
  2007. if (pos.line > change.to.line + diff) {
  2008. var preLine = pos.line - diff, lastLine = doc.first + doc.size - 1;
  2009. if (preLine > lastLine) return Pos(lastLine, getLine(doc, lastLine).text.length);
  2010. return clipToLen(pos, getLine(doc, preLine).text.length);
  2011. }
  2012. if (pos.line == change.to.line + diff)
  2013. return clipToLen(pos, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0) +
  2014. getLine(doc, change.to.line).text.length - change.to.ch);
  2015. var inside = pos.line - change.from.line;
  2016. return clipToLen(pos, change.text[inside].length + (inside ? 0 : change.from.ch));
  2017. }
  2018. // Hint can be null|"end"|"start"|"around"|{anchor,head}
  2019. function computeSelAfterChange(doc, change, hint) {
  2020. if (hint && typeof hint == "object") // Assumed to be {anchor, head} object
  2021. return {anchor: clipPostChange(doc, change, hint.anchor),
  2022. head: clipPostChange(doc, change, hint.head)};
  2023. if (hint == "start") return {anchor: change.from, head: change.from};
  2024. var end = changeEnd(change);
  2025. if (hint == "around") return {anchor: change.from, head: end};
  2026. if (hint == "end") return {anchor: end, head: end};
  2027. // hint is null, leave the selection alone as much as possible
  2028. var adjustPos = function(pos) {
  2029. if (posLess(pos, change.from)) return pos;
  2030. if (!posLess(change.to, pos)) return end;
  2031. var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;
  2032. if (pos.line == change.to.line) ch += end.ch - change.to.ch;
  2033. return Pos(line, ch);
  2034. };
  2035. return {anchor: adjustPos(doc.sel.anchor), head: adjustPos(doc.sel.head)};
  2036. }
  2037. function filterChange(doc, change, update) {
  2038. var obj = {
  2039. canceled: false,
  2040. from: change.from,
  2041. to: change.to,
  2042. text: change.text,
  2043. origin: change.origin,
  2044. cancel: function() { this.canceled = true; }
  2045. };
  2046. if (update) obj.update = function(from, to, text, origin) {
  2047. if (from) this.from = clipPos(doc, from);
  2048. if (to) this.to = clipPos(doc, to);
  2049. if (text) this.text = text;
  2050. if (origin !== undefined) this.origin = origin;
  2051. };
  2052. signal(doc, "beforeChange", doc, obj);
  2053. if (doc.cm) signal(doc.cm, "beforeChange", doc.cm, obj);
  2054. if (obj.canceled) return null;
  2055. return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin};
  2056. }
  2057. // Replace the range from from to to by the strings in replacement.
  2058. // change is a {from, to, text [, origin]} object
  2059. function makeChange(doc, change, selUpdate, ignoreReadOnly) {
  2060. if (doc.cm) {
  2061. if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, selUpdate, ignoreReadOnly);
  2062. if (doc.cm.state.suppressEdits) return;
  2063. }
  2064. if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) {
  2065. change = filterChange(doc, change, true);
  2066. if (!change) return;
  2067. }
  2068. // Possibly split or suppress the update based on the presence
  2069. // of read-only spans in its range.
  2070. var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);
  2071. if (split) {
  2072. for (var i = split.length - 1; i >= 1; --i)
  2073. makeChangeNoReadonly(doc, {from: split[i].from, to: split[i].to, text: [""]});
  2074. if (split.length)
  2075. makeChangeNoReadonly(doc, {from: split[0].from, to: split[0].to, text: change.text}, selUpdate);
  2076. } else {
  2077. makeChangeNoReadonly(doc, change, selUpdate);
  2078. }
  2079. }
  2080. function makeChangeNoReadonly(doc, change, selUpdate) {
  2081. var selAfter = computeSelAfterChange(doc, change, selUpdate);
  2082. addToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);
  2083. makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));
  2084. var rebased = [];
  2085. linkedDocs(doc, function(doc, sharedHist) {
  2086. if (!sharedHist && indexOf(rebased, doc.history) == -1) {
  2087. rebaseHist(doc.history, change);
  2088. rebased.push(doc.history);
  2089. }
  2090. makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));
  2091. });
  2092. }
  2093. function makeChangeFromHistory(doc, type) {
  2094. if (doc.cm && doc.cm.state.suppressEdits) return;
  2095. var hist = doc.history;
  2096. var event = (type == "undo" ? hist.done : hist.undone).pop();
  2097. if (!event) return;
  2098. var anti = {changes: [], anchorBefore: event.anchorAfter, headBefore: event.headAfter,
  2099. anchorAfter: event.anchorBefore, headAfter: event.headBefore,
  2100. generation: hist.generation};
  2101. (type == "undo" ? hist.undone : hist.done).push(anti);
  2102. hist.generation = event.generation || ++hist.maxGeneration;
  2103. var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange");
  2104. for (var i = event.changes.length - 1; i >= 0; --i) {
  2105. var change = event.changes[i];
  2106. change.origin = type;
  2107. if (filter && !filterChange(doc, change, false)) {
  2108. (type == "undo" ? hist.done : hist.undone).length = 0;
  2109. return;
  2110. }
  2111. anti.changes.push(historyChangeFromChange(doc, change));
  2112. var after = i ? computeSelAfterChange(doc, change, null)
  2113. : {anchor: event.anchorBefore, head: event.headBefore};
  2114. makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));
  2115. var rebased = [];
  2116. linkedDocs(doc, function(doc, sharedHist) {
  2117. if (!sharedHist && indexOf(rebased, doc.history) == -1) {
  2118. rebaseHist(doc.history, change);
  2119. rebased.push(doc.history);
  2120. }
  2121. makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));
  2122. });
  2123. }
  2124. }
  2125. function shiftDoc(doc, distance) {
  2126. function shiftPos(pos) {return Pos(pos.line + distance, pos.ch);}
  2127. doc.first += distance;
  2128. if (doc.cm) regChange(doc.cm, doc.first, doc.first, distance);
  2129. doc.sel.head = shiftPos(doc.sel.head); doc.sel.anchor = shiftPos(doc.sel.anchor);
  2130. doc.sel.from = shiftPos(doc.sel.from); doc.sel.to = shiftPos(doc.sel.to);
  2131. }
  2132. function makeChangeSingleDoc(doc, change, selAfter, spans) {
  2133. if (doc.cm && !doc.cm.curOp)
  2134. return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans);
  2135. if (change.to.line < doc.first) {
  2136. shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));
  2137. return;
  2138. }
  2139. if (change.from.line > doc.lastLine()) return;
  2140. // Clip the change to the size of this doc
  2141. if (change.from.line < doc.first) {
  2142. var shift = change.text.length - 1 - (doc.first - change.from.line);
  2143. shiftDoc(doc, shift);
  2144. change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),
  2145. text: [lst(change.text)], origin: change.origin};
  2146. }
  2147. var last = doc.lastLine();
  2148. if (change.to.line > last) {
  2149. change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),
  2150. text: [change.text[0]], origin: change.origin};
  2151. }
  2152. change.removed = getBetween(doc, change.from, change.to);
  2153. if (!selAfter) selAfter = computeSelAfterChange(doc, change, null);
  2154. if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans, selAfter);
  2155. else updateDoc(doc, change, spans, selAfter);
  2156. }
  2157. function makeChangeSingleDocInEditor(cm, change, spans, selAfter) {
  2158. var doc = cm.doc, display = cm.display, from = change.from, to = change.to;
  2159. var recomputeMaxLength = false, checkWidthStart = from.line;
  2160. if (!cm.options.lineWrapping) {
  2161. checkWidthStart = lineNo(visualLine(doc, getLine(doc, from.line)));
  2162. doc.iter(checkWidthStart, to.line + 1, function(line) {
  2163. if (line == display.maxLine) {
  2164. recomputeMaxLength = true;
  2165. return true;
  2166. }
  2167. });
  2168. }
  2169. if (!posLess(doc.sel.head, change.from) && !posLess(change.to, doc.sel.head))
  2170. cm.curOp.cursorActivity = true;
  2171. updateDoc(doc, change, spans, selAfter, estimateHeight(cm));
  2172. if (!cm.options.lineWrapping) {
  2173. doc.iter(checkWidthStart, from.line + change.text.length, function(line) {
  2174. var len = lineLength(doc, line);
  2175. if (len > display.maxLineLength) {
  2176. display.maxLine = line;
  2177. display.maxLineLength = len;
  2178. display.maxLineChanged = true;
  2179. recomputeMaxLength = false;
  2180. }
  2181. });
  2182. if (recomputeMaxLength) cm.curOp.updateMaxLine = true;
  2183. }
  2184. // Adjust frontier, schedule worker
  2185. doc.frontier = Math.min(doc.frontier, from.line);
  2186. startWorker(cm, 400);
  2187. var lendiff = change.text.length - (to.line - from.line) - 1;
  2188. // Remember that these lines changed, for updating the display
  2189. regChange(cm, from.line, to.line + 1, lendiff);
  2190. if (hasHandler(cm, "change")) {
  2191. var changeObj = {from: from, to: to,
  2192. text: change.text,
  2193. removed: change.removed,
  2194. origin: change.origin};
  2195. if (cm.curOp.textChanged) {
  2196. for (var cur = cm.curOp.textChanged; cur.next; cur = cur.next) {}
  2197. cur.next = changeObj;
  2198. } else cm.curOp.textChanged = changeObj;
  2199. }
  2200. }
  2201. function replaceRange(doc, code, from, to, origin) {
  2202. if (!to) to = from;
  2203. if (posLess(to, from)) { var tmp = to; to = from; from = tmp; }
  2204. if (typeof code == "string") code = splitLines(code);
  2205. makeChange(doc, {from: from, to: to, text: code, origin: origin}, null);
  2206. }
  2207. // POSITION OBJECT
  2208. function Pos(line, ch) {
  2209. if (!(this instanceof Pos)) return new Pos(line, ch);
  2210. this.line = line; this.ch = ch;
  2211. }
  2212. CodeMirror.Pos = Pos;
  2213. function posEq(a, b) {return a.line == b.line && a.ch == b.ch;}
  2214. function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);}
  2215. function copyPos(x) {return Pos(x.line, x.ch);}
  2216. // SELECTION
  2217. function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));}
  2218. function clipPos(doc, pos) {
  2219. if (pos.line < doc.first) return Pos(doc.first, 0);
  2220. var last = doc.first + doc.size - 1;
  2221. if (pos.line > last) return Pos(last, getLine(doc, last).text.length);
  2222. return clipToLen(pos, getLine(doc, pos.line).text.length);
  2223. }
  2224. function clipToLen(pos, linelen) {
  2225. var ch = pos.ch;
  2226. if (ch == null || ch > linelen) return Pos(pos.line, linelen);
  2227. else if (ch < 0) return Pos(pos.line, 0);
  2228. else return pos;
  2229. }
  2230. function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}
  2231. // If shift is held, this will move the selection anchor. Otherwise,
  2232. // it'll set the whole selection.
  2233. function extendSelection(doc, pos, other, bias) {
  2234. if (doc.sel.shift || doc.sel.extend) {
  2235. var anchor = doc.sel.anchor;
  2236. if (other) {
  2237. var posBefore = posLess(pos, anchor);
  2238. if (posBefore != posLess(other, anchor)) {
  2239. anchor = pos;
  2240. pos = other;
  2241. } else if (posBefore != posLess(pos, other)) {
  2242. pos = other;
  2243. }
  2244. }
  2245. setSelection(doc, anchor, pos, bias);
  2246. } else {
  2247. setSelection(doc, pos, other || pos, bias);
  2248. }
  2249. if (doc.cm) doc.cm.curOp.userSelChange = true;
  2250. }
  2251. function filterSelectionChange(doc, anchor, head) {
  2252. var obj = {anchor: anchor, head: head};
  2253. signal(doc, "beforeSelectionChange", doc, obj);
  2254. if (doc.cm) signal(doc.cm, "beforeSelectionChange", doc.cm, obj);
  2255. obj.anchor = clipPos(doc, obj.anchor); obj.head = clipPos(doc, obj.head);
  2256. return obj;
  2257. }
  2258. // Update the selection. Last two args are only used by
  2259. // updateDoc, since they have to be expressed in the line
  2260. // numbers before the update.
  2261. function setSelection(doc, anchor, head, bias, checkAtomic) {
  2262. if (!checkAtomic && hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) {
  2263. var filtered = filterSelectionChange(doc, anchor, head);
  2264. head = filtered.head;
  2265. anchor = filtered.anchor;
  2266. }
  2267. var sel = doc.sel;
  2268. sel.goalColumn = null;
  2269. // Skip over atomic spans.
  2270. if (checkAtomic || !posEq(anchor, sel.anchor))
  2271. anchor = skipAtomic(doc, anchor, bias, checkAtomic != "push");
  2272. if (checkAtomic || !posEq(head, sel.head))
  2273. head = skipAtomic(doc, head, bias, checkAtomic != "push");
  2274. if (posEq(sel.anchor, anchor) && posEq(sel.head, head)) return;
  2275. sel.anchor = anchor; sel.head = head;
  2276. var inv = posLess(head, anchor);
  2277. sel.from = inv ? head : anchor;
  2278. sel.to = inv ? anchor : head;
  2279. if (doc.cm)
  2280. doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged =
  2281. doc.cm.curOp.cursorActivity = true;
  2282. signalLater(doc, "cursorActivity", doc);
  2283. }
  2284. function reCheckSelection(cm) {
  2285. setSelection(cm.doc, cm.doc.sel.from, cm.doc.sel.to, null, "push");
  2286. }
  2287. function skipAtomic(doc, pos, bias, mayClear) {
  2288. var flipped = false, curPos = pos;
  2289. var dir = bias || 1;
  2290. doc.cantEdit = false;
  2291. search: for (;;) {
  2292. var line = getLine(doc, curPos.line);
  2293. if (line.markedSpans) {
  2294. for (var i = 0; i < line.markedSpans.length; ++i) {
  2295. var sp = line.markedSpans[i], m = sp.marker;
  2296. if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) &&
  2297. (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) {
  2298. if (mayClear) {
  2299. signal(m, "beforeCursorEnter");
  2300. if (m.explicitlyCleared) {
  2301. if (!line.markedSpans) break;
  2302. else {--i; continue;}
  2303. }
  2304. }
  2305. if (!m.atomic) continue;
  2306. var newPos = m.find()[dir < 0 ? "from" : "to"];
  2307. if (posEq(newPos, curPos)) {
  2308. newPos.ch += dir;
  2309. if (newPos.ch < 0) {
  2310. if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1));
  2311. else newPos = null;
  2312. } else if (newPos.ch > line.text.length) {
  2313. if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0);
  2314. else newPos = null;
  2315. }
  2316. if (!newPos) {
  2317. if (flipped) {
  2318. // Driven in a corner -- no valid cursor position found at all
  2319. // -- try again *with* clearing, if we didn't already
  2320. if (!mayClear) return skipAtomic(doc, pos, bias, true);
  2321. // Otherwise, turn off editing until further notice, and return the start of the doc
  2322. doc.cantEdit = true;
  2323. return Pos(doc.first, 0);
  2324. }
  2325. flipped = true; newPos = pos; dir = -dir;
  2326. }
  2327. }
  2328. curPos = newPos;
  2329. continue search;
  2330. }
  2331. }
  2332. }
  2333. return curPos;
  2334. }
  2335. }
  2336. // SCROLLING
  2337. function scrollCursorIntoView(cm) {
  2338. var coords = scrollPosIntoView(cm, cm.doc.sel.head, cm.options.cursorScrollMargin);
  2339. if (!cm.state.focused) return;
  2340. var display = cm.display, box = getRect(display.sizer), doScroll = null;
  2341. if (coords.top + box.top < 0) doScroll = true;
  2342. else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false;
  2343. if (doScroll != null && !phantom) {
  2344. var hidden = display.cursor.style.display == "none";
  2345. if (hidden) {
  2346. display.cursor.style.display = "";
  2347. display.cursor.style.left = coords.left + "px";
  2348. display.cursor.style.top = (coords.top - display.viewOffset) + "px";
  2349. }
  2350. display.cursor.scrollIntoView(doScroll);
  2351. if (hidden) display.cursor.style.display = "none";
  2352. }
  2353. }
  2354. function scrollPosIntoView(cm, pos, margin) {
  2355. if (margin == null) margin = 0;
  2356. for (;;) {
  2357. var changed = false, coords = cursorCoords(cm, pos);
  2358. var scrollPos = calculateScrollPos(cm, coords.left, coords.top - margin, coords.left, coords.bottom + margin);
  2359. var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;
  2360. if (scrollPos.scrollTop != null) {
  2361. setScrollTop(cm, scrollPos.scrollTop);
  2362. if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true;
  2363. }
  2364. if (scrollPos.scrollLeft != null) {
  2365. setScrollLeft(cm, scrollPos.scrollLeft);
  2366. if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true;
  2367. }
  2368. if (!changed) return coords;
  2369. }
  2370. }
  2371. function scrollIntoView(cm, x1, y1, x2, y2) {
  2372. var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2);
  2373. if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop);
  2374. if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft);
  2375. }
  2376. function calculateScrollPos(cm, x1, y1, x2, y2) {
  2377. var display = cm.display, snapMargin = textHeight(cm.display);
  2378. if (y1 < 0) y1 = 0;
  2379. var screen = display.scroller.clientHeight - scrollerCutOff, screentop = display.scroller.scrollTop, result = {};
  2380. var docBottom = cm.doc.height + paddingVert(display);
  2381. var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin;
  2382. if (y1 < screentop) {
  2383. result.scrollTop = atTop ? 0 : y1;
  2384. } else if (y2 > screentop + screen) {
  2385. var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen);
  2386. if (newTop != screentop) result.scrollTop = newTop;
  2387. }
  2388. var screenw = display.scroller.clientWidth - scrollerCutOff, screenleft = display.scroller.scrollLeft;
  2389. x1 += display.gutters.offsetWidth; x2 += display.gutters.offsetWidth;
  2390. var gutterw = display.gutters.offsetWidth;
  2391. var atLeft = x1 < gutterw + 10;
  2392. if (x1 < screenleft + gutterw || atLeft) {
  2393. if (atLeft) x1 = 0;
  2394. result.scrollLeft = Math.max(0, x1 - 10 - gutterw);
  2395. } else if (x2 > screenw + screenleft - 3) {
  2396. result.scrollLeft = x2 + 10 - screenw;
  2397. }
  2398. return result;
  2399. }
  2400. function updateScrollPos(cm, left, top) {
  2401. cm.curOp.updateScrollPos = {scrollLeft: left == null ? cm.doc.scrollLeft : left,
  2402. scrollTop: top == null ? cm.doc.scrollTop : top};
  2403. }
  2404. function addToScrollPos(cm, left, top) {
  2405. var pos = cm.curOp.updateScrollPos || (cm.curOp.updateScrollPos = {scrollLeft: cm.doc.scrollLeft, scrollTop: cm.doc.scrollTop});
  2406. var scroll = cm.display.scroller;
  2407. pos.scrollTop = Math.max(0, Math.min(scroll.scrollHeight - scroll.clientHeight, pos.scrollTop + top));
  2408. pos.scrollLeft = Math.max(0, Math.min(scroll.scrollWidth - scroll.clientWidth, pos.scrollLeft + left));
  2409. }
  2410. // API UTILITIES
  2411. function indentLine(cm, n, how, aggressive) {
  2412. var doc = cm.doc;
  2413. if (how == null) how = "add";
  2414. if (how == "smart") {
  2415. if (!cm.doc.mode.indent) how = "prev";
  2416. else var state = getStateBefore(cm, n);
  2417. }
  2418. var tabSize = cm.options.tabSize;
  2419. var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);
  2420. var curSpaceString = line.text.match(/^\s*/)[0], indentation;
  2421. if (how == "smart") {
  2422. indentation = cm.doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);
  2423. if (indentation == Pass) {
  2424. if (!aggressive) return;
  2425. how = "prev";
  2426. }
  2427. }
  2428. if (how == "prev") {
  2429. if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize);
  2430. else indentation = 0;
  2431. } else if (how == "add") {
  2432. indentation = curSpace + cm.options.indentUnit;
  2433. } else if (how == "subtract") {
  2434. indentation = curSpace - cm.options.indentUnit;
  2435. } else if (typeof how == "number") {
  2436. indentation = curSpace + how;
  2437. }
  2438. indentation = Math.max(0, indentation);
  2439. var indentString = "", pos = 0;
  2440. if (cm.options.indentWithTabs)
  2441. for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";}
  2442. if (pos < indentation) indentString += spaceStr(indentation - pos);
  2443. if (indentString != curSpaceString)
  2444. replaceRange(cm.doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input");
  2445. line.stateAfter = null;
  2446. }
  2447. function changeLine(cm, handle, op) {
  2448. var no = handle, line = handle, doc = cm.doc;
  2449. if (typeof handle == "number") line = getLine(doc, clipLine(doc, handle));
  2450. else no = lineNo(handle);
  2451. if (no == null) return null;
  2452. if (op(line, no)) regChange(cm, no, no + 1);
  2453. else return null;
  2454. return line;
  2455. }
  2456. function findPosH(doc, pos, dir, unit, visually) {
  2457. var line = pos.line, ch = pos.ch, origDir = dir;
  2458. var lineObj = getLine(doc, line);
  2459. var possible = true;
  2460. function findNextLine() {
  2461. var l = line + dir;
  2462. if (l < doc.first || l >= doc.first + doc.size) return (possible = false);
  2463. line = l;
  2464. return lineObj = getLine(doc, l);
  2465. }
  2466. function moveOnce(boundToLine) {
  2467. var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true);
  2468. if (next == null) {
  2469. if (!boundToLine && findNextLine()) {
  2470. if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj);
  2471. else ch = dir < 0 ? lineObj.text.length : 0;
  2472. } else return (possible = false);
  2473. } else ch = next;
  2474. return true;
  2475. }
  2476. if (unit == "char") moveOnce();
  2477. else if (unit == "column") moveOnce(true);
  2478. else if (unit == "word" || unit == "group") {
  2479. var sawType = null, group = unit == "group";
  2480. for (var first = true;; first = false) {
  2481. if (dir < 0 && !moveOnce(!first)) break;
  2482. var cur = lineObj.text.charAt(ch) || "\n";
  2483. var type = isWordChar(cur) ? "w"
  2484. : !group ? null
  2485. : /\s/.test(cur) ? null
  2486. : "p";
  2487. if (sawType && sawType != type) {
  2488. if (dir < 0) {dir = 1; moveOnce();}
  2489. break;
  2490. }
  2491. if (type) sawType = type;
  2492. if (dir > 0 && !moveOnce(!first)) break;
  2493. }
  2494. }
  2495. var result = skipAtomic(doc, Pos(line, ch), origDir, true);
  2496. if (!possible) result.hitSide = true;
  2497. return result;
  2498. }
  2499. function findPosV(cm, pos, dir, unit) {
  2500. var doc = cm.doc, x = pos.left, y;
  2501. if (unit == "page") {
  2502. var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);
  2503. y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display));
  2504. } else if (unit == "line") {
  2505. y = dir > 0 ? pos.bottom + 3 : pos.top - 3;
  2506. }
  2507. for (;;) {
  2508. var target = coordsChar(cm, x, y);
  2509. if (!target.outside) break;
  2510. if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; }
  2511. y += dir * 5;
  2512. }
  2513. return target;
  2514. }
  2515. function findWordAt(line, pos) {
  2516. var start = pos.ch, end = pos.ch;
  2517. if (line) {
  2518. if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end;
  2519. var startChar = line.charAt(start);
  2520. var check = isWordChar(startChar) ? isWordChar
  2521. : /\s/.test(startChar) ? function(ch) {return /\s/.test(ch);}
  2522. : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);};
  2523. while (start > 0 && check(line.charAt(start - 1))) --start;
  2524. while (end < line.length && check(line.charAt(end))) ++end;
  2525. }
  2526. return {from: Pos(pos.line, start), to: Pos(pos.line, end)};
  2527. }
  2528. function selectLine(cm, line) {
  2529. extendSelection(cm.doc, Pos(line, 0), clipPos(cm.doc, Pos(line + 1, 0)));
  2530. }
  2531. // PROTOTYPE
  2532. // The publicly visible API. Note that operation(null, f) means
  2533. // 'wrap f in an operation, performed on its `this` parameter'
  2534. CodeMirror.prototype = {
  2535. constructor: CodeMirror,
  2536. focus: function(){window.focus(); focusInput(this); onFocus(this); fastPoll(this);},
  2537. setOption: function(option, value) {
  2538. var options = this.options, old = options[option];
  2539. if (options[option] == value && option != "mode") return;
  2540. options[option] = value;
  2541. if (optionHandlers.hasOwnProperty(option))
  2542. operation(this, optionHandlers[option])(this, value, old);
  2543. },
  2544. getOption: function(option) {return this.options[option];},
  2545. getDoc: function() {return this.doc;},
  2546. addKeyMap: function(map, bottom) {
  2547. this.state.keyMaps[bottom ? "push" : "unshift"](map);
  2548. },
  2549. removeKeyMap: function(map) {
  2550. var maps = this.state.keyMaps;
  2551. for (var i = 0; i < maps.length; ++i)
  2552. if (maps[i] == map || (typeof maps[i] != "string" && maps[i].name == map)) {
  2553. maps.splice(i, 1);
  2554. return true;
  2555. }
  2556. },
  2557. addOverlay: operation(null, function(spec, options) {
  2558. var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);
  2559. if (mode.startState) throw new Error("Overlays may not be stateful.");
  2560. this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque});
  2561. this.state.modeGen++;
  2562. regChange(this);
  2563. }),
  2564. removeOverlay: operation(null, function(spec) {
  2565. var overlays = this.state.overlays;
  2566. for (var i = 0; i < overlays.length; ++i) {
  2567. var cur = overlays[i].modeSpec;
  2568. if (cur == spec || typeof spec == "string" && cur.name == spec) {
  2569. overlays.splice(i, 1);
  2570. this.state.modeGen++;
  2571. regChange(this);
  2572. return;
  2573. }
  2574. }
  2575. }),
  2576. indentLine: operation(null, function(n, dir, aggressive) {
  2577. if (typeof dir != "string" && typeof dir != "number") {
  2578. if (dir == null) dir = this.options.smartIndent ? "smart" : "prev";
  2579. else dir = dir ? "add" : "subtract";
  2580. }
  2581. if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);
  2582. }),
  2583. indentSelection: operation(null, function(how) {
  2584. var sel = this.doc.sel;
  2585. if (posEq(sel.from, sel.to)) return indentLine(this, sel.from.line, how);
  2586. var e = sel.to.line - (sel.to.ch ? 0 : 1);
  2587. for (var i = sel.from.line; i <= e; ++i) indentLine(this, i, how);
  2588. }),
  2589. // Fetch the parser token for a given character. Useful for hacks
  2590. // that want to inspect the mode state (say, for completion).
  2591. getTokenAt: function(pos, precise) {
  2592. var doc = this.doc;
  2593. pos = clipPos(doc, pos);
  2594. var state = getStateBefore(this, pos.line, precise), mode = this.doc.mode;
  2595. var line = getLine(doc, pos.line);
  2596. var stream = new StringStream(line.text, this.options.tabSize);
  2597. while (stream.pos < pos.ch && !stream.eol()) {
  2598. stream.start = stream.pos;
  2599. var style = mode.token(stream, state);
  2600. }
  2601. return {start: stream.start,
  2602. end: stream.pos,
  2603. string: stream.current(),
  2604. className: style || null, // Deprecated, use 'type' instead
  2605. type: style || null,
  2606. state: state};
  2607. },
  2608. getTokenTypeAt: function(pos) {
  2609. pos = clipPos(this.doc, pos);
  2610. var styles = getLineStyles(this, getLine(this.doc, pos.line));
  2611. var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;
  2612. if (ch == 0) return styles[2];
  2613. for (;;) {
  2614. var mid = (before + after) >> 1;
  2615. if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid;
  2616. else if (styles[mid * 2 + 1] < ch) before = mid + 1;
  2617. else return styles[mid * 2 + 2];
  2618. }
  2619. },
  2620. getModeAt: function(pos) {
  2621. var mode = this.doc.mode;
  2622. if (!mode.innerMode) return mode;
  2623. return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode;
  2624. },
  2625. getHelper: function(pos, type) {
  2626. if (!helpers.hasOwnProperty(type)) return;
  2627. var help = helpers[type], mode = this.getModeAt(pos);
  2628. return mode[type] && help[mode[type]] ||
  2629. mode.helperType && help[mode.helperType] ||
  2630. help[mode.name];
  2631. },
  2632. getStateAfter: function(line, precise) {
  2633. var doc = this.doc;
  2634. line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);
  2635. return getStateBefore(this, line + 1, precise);
  2636. },
  2637. cursorCoords: function(start, mode) {
  2638. var pos, sel = this.doc.sel;
  2639. if (start == null) pos = sel.head;
  2640. else if (typeof start == "object") pos = clipPos(this.doc, start);
  2641. else pos = start ? sel.from : sel.to;
  2642. return cursorCoords(this, pos, mode || "page");
  2643. },
  2644. charCoords: function(pos, mode) {
  2645. return charCoords(this, clipPos(this.doc, pos), mode || "page");
  2646. },
  2647. coordsChar: function(coords, mode) {
  2648. coords = fromCoordSystem(this, coords, mode || "page");
  2649. return coordsChar(this, coords.left, coords.top);
  2650. },
  2651. lineAtHeight: function(height, mode) {
  2652. height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top;
  2653. return lineAtHeight(this.doc, height + this.display.viewOffset);
  2654. },
  2655. heightAtLine: function(line, mode) {
  2656. var end = false, last = this.doc.first + this.doc.size - 1;
  2657. if (line < this.doc.first) line = this.doc.first;
  2658. else if (line > last) { line = last; end = true; }
  2659. var lineObj = getLine(this.doc, line);
  2660. return intoCoordSystem(this, getLine(this.doc, line), {top: 0, left: 0}, mode || "page").top +
  2661. (end ? lineObj.height : 0);
  2662. },
  2663. defaultTextHeight: function() { return textHeight(this.display); },
  2664. defaultCharWidth: function() { return charWidth(this.display); },
  2665. setGutterMarker: operation(null, function(line, gutterID, value) {
  2666. return changeLine(this, line, function(line) {
  2667. var markers = line.gutterMarkers || (line.gutterMarkers = {});
  2668. markers[gutterID] = value;
  2669. if (!value && isEmpty(markers)) line.gutterMarkers = null;
  2670. return true;
  2671. });
  2672. }),
  2673. clearGutter: operation(null, function(gutterID) {
  2674. var cm = this, doc = cm.doc, i = doc.first;
  2675. doc.iter(function(line) {
  2676. if (line.gutterMarkers && line.gutterMarkers[gutterID]) {
  2677. line.gutterMarkers[gutterID] = null;
  2678. regChange(cm, i, i + 1);
  2679. if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null;
  2680. }
  2681. ++i;
  2682. });
  2683. }),
  2684. addLineClass: operation(null, function(handle, where, cls) {
  2685. return changeLine(this, handle, function(line) {
  2686. var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass";
  2687. if (!line[prop]) line[prop] = cls;
  2688. else if (new RegExp("(?:^|\\s)" + cls + "(?:$|\\s)").test(line[prop])) return false;
  2689. else line[prop] += " " + cls;
  2690. return true;
  2691. });
  2692. }),
  2693. removeLineClass: operation(null, function(handle, where, cls) {
  2694. return changeLine(this, handle, function(line) {
  2695. var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass";
  2696. var cur = line[prop];
  2697. if (!cur) return false;
  2698. else if (cls == null) line[prop] = null;
  2699. else {
  2700. var found = cur.match(new RegExp("(?:^|\\s+)" + cls + "(?:$|\\s+)"));
  2701. if (!found) return false;
  2702. var end = found.index + found[0].length;
  2703. line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null;
  2704. }
  2705. return true;
  2706. });
  2707. }),
  2708. addLineWidget: operation(null, function(handle, node, options) {
  2709. return addLineWidget(this, handle, node, options);
  2710. }),
  2711. removeLineWidget: function(widget) { widget.clear(); },
  2712. lineInfo: function(line) {
  2713. if (typeof line == "number") {
  2714. if (!isLine(this.doc, line)) return null;
  2715. var n = line;
  2716. line = getLine(this.doc, line);
  2717. if (!line) return null;
  2718. } else {
  2719. var n = lineNo(line);
  2720. if (n == null) return null;
  2721. }
  2722. return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,
  2723. textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,
  2724. widgets: line.widgets};
  2725. },
  2726. getViewport: function() { return {from: this.display.showingFrom, to: this.display.showingTo};},
  2727. addWidget: function(pos, node, scroll, vert, horiz) {
  2728. var display = this.display;
  2729. pos = cursorCoords(this, clipPos(this.doc, pos));
  2730. var top = pos.bottom, left = pos.left;
  2731. node.style.position = "absolute";
  2732. display.sizer.appendChild(node);
  2733. if (vert == "over") {
  2734. top = pos.top;
  2735. } else if (vert == "above" || vert == "near") {
  2736. var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),
  2737. hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);
  2738. // Default to positioning above (if specified and possible); otherwise default to positioning below
  2739. if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)
  2740. top = pos.top - node.offsetHeight;
  2741. else if (pos.bottom + node.offsetHeight <= vspace)
  2742. top = pos.bottom;
  2743. if (left + node.offsetWidth > hspace)
  2744. left = hspace - node.offsetWidth;
  2745. }
  2746. node.style.top = top + "px";
  2747. node.style.left = node.style.right = "";
  2748. if (horiz == "right") {
  2749. left = display.sizer.clientWidth - node.offsetWidth;
  2750. node.style.right = "0px";
  2751. } else {
  2752. if (horiz == "left") left = 0;
  2753. else if (horiz == "middle") left = (display.sizer.clientWidth - node.offsetWidth) / 2;
  2754. node.style.left = left + "px";
  2755. }
  2756. if (scroll)
  2757. scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight);
  2758. },
  2759. triggerOnKeyDown: operation(null, onKeyDown),
  2760. execCommand: function(cmd) {return commands[cmd](this);},
  2761. findPosH: function(from, amount, unit, visually) {
  2762. var dir = 1;
  2763. if (amount < 0) { dir = -1; amount = -amount; }
  2764. for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
  2765. cur = findPosH(this.doc, cur, dir, unit, visually);
  2766. if (cur.hitSide) break;
  2767. }
  2768. return cur;
  2769. },
  2770. moveH: operation(null, function(dir, unit) {
  2771. var sel = this.doc.sel, pos;
  2772. if (sel.shift || sel.extend || posEq(sel.from, sel.to))
  2773. pos = findPosH(this.doc, sel.head, dir, unit, this.options.rtlMoveVisually);
  2774. else
  2775. pos = dir < 0 ? sel.from : sel.to;
  2776. extendSelection(this.doc, pos, pos, dir);
  2777. }),
  2778. deleteH: operation(null, function(dir, unit) {
  2779. var sel = this.doc.sel;
  2780. if (!posEq(sel.from, sel.to)) replaceRange(this.doc, "", sel.from, sel.to, "+delete");
  2781. else replaceRange(this.doc, "", sel.from, findPosH(this.doc, sel.head, dir, unit, false), "+delete");
  2782. this.curOp.userSelChange = true;
  2783. }),
  2784. findPosV: function(from, amount, unit, goalColumn) {
  2785. var dir = 1, x = goalColumn;
  2786. if (amount < 0) { dir = -1; amount = -amount; }
  2787. for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
  2788. var coords = cursorCoords(this, cur, "div");
  2789. if (x == null) x = coords.left;
  2790. else coords.left = x;
  2791. cur = findPosV(this, coords, dir, unit);
  2792. if (cur.hitSide) break;
  2793. }
  2794. return cur;
  2795. },
  2796. moveV: operation(null, function(dir, unit) {
  2797. var sel = this.doc.sel;
  2798. var pos = cursorCoords(this, sel.head, "div");
  2799. if (sel.goalColumn != null) pos.left = sel.goalColumn;
  2800. var target = findPosV(this, pos, dir, unit);
  2801. if (unit == "page") addToScrollPos(this, 0, charCoords(this, target, "div").top - pos.top);
  2802. extendSelection(this.doc, target, target, dir);
  2803. sel.goalColumn = pos.left;
  2804. }),
  2805. toggleOverwrite: function(value) {
  2806. if (value != null && value == this.state.overwrite) return;
  2807. if (this.state.overwrite = !this.state.overwrite)
  2808. this.display.cursor.className += " CodeMirror-overwrite";
  2809. else
  2810. this.display.cursor.className = this.display.cursor.className.replace(" CodeMirror-overwrite", "");
  2811. },
  2812. hasFocus: function() { return this.state.focused; },
  2813. scrollTo: operation(null, function(x, y) {
  2814. updateScrollPos(this, x, y);
  2815. }),
  2816. getScrollInfo: function() {
  2817. var scroller = this.display.scroller, co = scrollerCutOff;
  2818. return {left: scroller.scrollLeft, top: scroller.scrollTop,
  2819. height: scroller.scrollHeight - co, width: scroller.scrollWidth - co,
  2820. clientHeight: scroller.clientHeight - co, clientWidth: scroller.clientWidth - co};
  2821. },
  2822. scrollIntoView: operation(null, function(pos, margin) {
  2823. if (typeof pos == "number") pos = Pos(pos, 0);
  2824. if (!margin) margin = 0;
  2825. var coords = pos;
  2826. if (!pos || pos.line != null) {
  2827. this.curOp.scrollToPos = pos ? clipPos(this.doc, pos) : this.doc.sel.head;
  2828. this.curOp.scrollToPosMargin = margin;
  2829. coords = cursorCoords(this, this.curOp.scrollToPos);
  2830. }
  2831. var sPos = calculateScrollPos(this, coords.left, coords.top - margin, coords.right, coords.bottom + margin);
  2832. updateScrollPos(this, sPos.scrollLeft, sPos.scrollTop);
  2833. }),
  2834. setSize: operation(null, function(width, height) {
  2835. function interpret(val) {
  2836. return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val;
  2837. }
  2838. if (width != null) this.display.wrapper.style.width = interpret(width);
  2839. if (height != null) this.display.wrapper.style.height = interpret(height);
  2840. if (this.options.lineWrapping)
  2841. this.display.measureLineCache.length = this.display.measureLineCachePos = 0;
  2842. this.curOp.forceUpdate = true;
  2843. }),
  2844. operation: function(f){return runInOp(this, f);},
  2845. refresh: operation(null, function() {
  2846. clearCaches(this);
  2847. updateScrollPos(this, this.doc.scrollLeft, this.doc.scrollTop);
  2848. regChange(this);
  2849. }),
  2850. swapDoc: operation(null, function(doc) {
  2851. var old = this.doc;
  2852. old.cm = null;
  2853. attachDoc(this, doc);
  2854. clearCaches(this);
  2855. resetInput(this, true);
  2856. updateScrollPos(this, doc.scrollLeft, doc.scrollTop);
  2857. return old;
  2858. }),
  2859. getInputField: function(){return this.display.input;},
  2860. getWrapperElement: function(){return this.display.wrapper;},
  2861. getScrollerElement: function(){return this.display.scroller;},
  2862. getGutterElement: function(){return this.display.gutters;}
  2863. };
  2864. eventMixin(CodeMirror);
  2865. // OPTION DEFAULTS
  2866. var optionHandlers = CodeMirror.optionHandlers = {};
  2867. // The default configuration options.
  2868. var defaults = CodeMirror.defaults = {};
  2869. function option(name, deflt, handle, notOnInit) {
  2870. CodeMirror.defaults[name] = deflt;
  2871. if (handle) optionHandlers[name] =
  2872. notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle;
  2873. }
  2874. var Init = CodeMirror.Init = {toString: function(){return "CodeMirror.Init";}};
  2875. // These two are, on init, called from the constructor because they
  2876. // have to be initialized before the editor can start at all.
  2877. option("value", "", function(cm, val) {
  2878. cm.setValue(val);
  2879. }, true);
  2880. option("mode", null, function(cm, val) {
  2881. cm.doc.modeOption = val;
  2882. loadMode(cm);
  2883. }, true);
  2884. option("indentUnit", 2, loadMode, true);
  2885. option("indentWithTabs", false);
  2886. option("smartIndent", true);
  2887. option("tabSize", 4, function(cm) {
  2888. loadMode(cm);
  2889. clearCaches(cm);
  2890. regChange(cm);
  2891. }, true);
  2892. option("electricChars", true);
  2893. option("rtlMoveVisually", !windows);
  2894. option("theme", "default", function(cm) {
  2895. themeChanged(cm);
  2896. guttersChanged(cm);
  2897. }, true);
  2898. option("keyMap", "default", keyMapChanged);
  2899. option("extraKeys", null);
  2900. option("onKeyEvent", null);
  2901. option("onDragEvent", null);
  2902. option("lineWrapping", false, wrappingChanged, true);
  2903. option("gutters", [], function(cm) {
  2904. setGuttersForLineNumbers(cm.options);
  2905. guttersChanged(cm);
  2906. }, true);
  2907. option("fixedGutter", true, function(cm, val) {
  2908. cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0";
  2909. cm.refresh();
  2910. }, true);
  2911. option("coverGutterNextToScrollbar", false, updateScrollbars, true);
  2912. option("lineNumbers", false, function(cm) {
  2913. setGuttersForLineNumbers(cm.options);
  2914. guttersChanged(cm);
  2915. }, true);
  2916. option("firstLineNumber", 1, guttersChanged, true);
  2917. option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true);
  2918. option("showCursorWhenSelecting", false, updateSelection, true);
  2919. option("readOnly", false, function(cm, val) {
  2920. if (val == "nocursor") {onBlur(cm); cm.display.input.blur();}
  2921. else if (!val) resetInput(cm, true);
  2922. });
  2923. option("dragDrop", true);
  2924. option("cursorBlinkRate", 530);
  2925. option("cursorScrollMargin", 0);
  2926. option("cursorHeight", 1);
  2927. option("workTime", 100);
  2928. option("workDelay", 100);
  2929. option("flattenSpans", true);
  2930. option("pollInterval", 100);
  2931. option("undoDepth", 40, function(cm, val){cm.doc.history.undoDepth = val;});
  2932. option("historyEventDelay", 500);
  2933. option("viewportMargin", 10, function(cm){cm.refresh();}, true);
  2934. option("maxHighlightLength", 10000, function(cm){loadMode(cm); cm.refresh();}, true);
  2935. option("moveInputWithCursor", true, function(cm, val) {
  2936. if (!val) cm.display.inputDiv.style.top = cm.display.inputDiv.style.left = 0;
  2937. });
  2938. option("tabindex", null, function(cm, val) {
  2939. cm.display.input.tabIndex = val || "";
  2940. });
  2941. option("autofocus", null);
  2942. // MODE DEFINITION AND QUERYING
  2943. // Known modes, by name and by MIME
  2944. var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};
  2945. CodeMirror.defineMode = function(name, mode) {
  2946. if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name;
  2947. if (arguments.length > 2) {
  2948. mode.dependencies = [];
  2949. for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]);
  2950. }
  2951. modes[name] = mode;
  2952. };
  2953. CodeMirror.defineMIME = function(mime, spec) {
  2954. mimeModes[mime] = spec;
  2955. };
  2956. CodeMirror.resolveMode = function(spec) {
  2957. if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) {
  2958. spec = mimeModes[spec];
  2959. } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) {
  2960. var found = mimeModes[spec.name];
  2961. spec = createObj(found, spec);
  2962. spec.name = found.name;
  2963. } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) {
  2964. return CodeMirror.resolveMode("application/xml");
  2965. }
  2966. if (typeof spec == "string") return {name: spec};
  2967. else return spec || {name: "null"};
  2968. };
  2969. CodeMirror.getMode = function(options, spec) {
  2970. var spec = CodeMirror.resolveMode(spec);
  2971. var mfactory = modes[spec.name];
  2972. if (!mfactory) return CodeMirror.getMode(options, "text/plain");
  2973. var modeObj = mfactory(options, spec);
  2974. if (modeExtensions.hasOwnProperty(spec.name)) {
  2975. var exts = modeExtensions[spec.name];
  2976. for (var prop in exts) {
  2977. if (!exts.hasOwnProperty(prop)) continue;
  2978. if (modeObj.hasOwnProperty(prop)) modeObj["_" + prop] = modeObj[prop];
  2979. modeObj[prop] = exts[prop];
  2980. }
  2981. }
  2982. modeObj.name = spec.name;
  2983. return modeObj;
  2984. };
  2985. CodeMirror.defineMode("null", function() {
  2986. return {token: function(stream) {stream.skipToEnd();}};
  2987. });
  2988. CodeMirror.defineMIME("text/plain", "null");
  2989. var modeExtensions = CodeMirror.modeExtensions = {};
  2990. CodeMirror.extendMode = function(mode, properties) {
  2991. var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});
  2992. copyObj(properties, exts);
  2993. };
  2994. // EXTENSIONS
  2995. CodeMirror.defineExtension = function(name, func) {
  2996. CodeMirror.prototype[name] = func;
  2997. };
  2998. CodeMirror.defineDocExtension = function(name, func) {
  2999. Doc.prototype[name] = func;
  3000. };
  3001. CodeMirror.defineOption = option;
  3002. var initHooks = [];
  3003. CodeMirror.defineInitHook = function(f) {initHooks.push(f);};
  3004. var helpers = CodeMirror.helpers = {};
  3005. CodeMirror.registerHelper = function(type, name, value) {
  3006. if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {};
  3007. helpers[type][name] = value;
  3008. };
  3009. // UTILITIES
  3010. CodeMirror.isWordChar = isWordChar;
  3011. // MODE STATE HANDLING
  3012. // Utility functions for working with state. Exported because modes
  3013. // sometimes need to do this.
  3014. function copyState(mode, state) {
  3015. if (state === true) return state;
  3016. if (mode.copyState) return mode.copyState(state);
  3017. var nstate = {};
  3018. for (var n in state) {
  3019. var val = state[n];
  3020. if (val instanceof Array) val = val.concat([]);
  3021. nstate[n] = val;
  3022. }
  3023. return nstate;
  3024. }
  3025. CodeMirror.copyState = copyState;
  3026. function startState(mode, a1, a2) {
  3027. return mode.startState ? mode.startState(a1, a2) : true;
  3028. }
  3029. CodeMirror.startState = startState;
  3030. CodeMirror.innerMode = function(mode, state) {
  3031. while (mode.innerMode) {
  3032. var info = mode.innerMode(state);
  3033. if (!info || info.mode == mode) break;
  3034. state = info.state;
  3035. mode = info.mode;
  3036. }
  3037. return info || {mode: mode, state: state};
  3038. };
  3039. // STANDARD COMMANDS
  3040. var commands = CodeMirror.commands = {
  3041. selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()));},
  3042. killLine: function(cm) {
  3043. var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to);
  3044. if (!sel && cm.getLine(from.line).length == from.ch)
  3045. cm.replaceRange("", from, Pos(from.line + 1, 0), "+delete");
  3046. else cm.replaceRange("", from, sel ? to : Pos(from.line), "+delete");
  3047. },
  3048. deleteLine: function(cm) {
  3049. var l = cm.getCursor().line;
  3050. cm.replaceRange("", Pos(l, 0), Pos(l), "+delete");
  3051. },
  3052. delLineLeft: function(cm) {
  3053. var cur = cm.getCursor();
  3054. cm.replaceRange("", Pos(cur.line, 0), cur, "+delete");
  3055. },
  3056. undo: function(cm) {cm.undo();},
  3057. redo: function(cm) {cm.redo();},
  3058. goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));},
  3059. goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},
  3060. goLineStart: function(cm) {
  3061. cm.extendSelection(lineStart(cm, cm.getCursor().line));
  3062. },
  3063. goLineStartSmart: function(cm) {
  3064. var cur = cm.getCursor(), start = lineStart(cm, cur.line);
  3065. var line = cm.getLineHandle(start.line);
  3066. var order = getOrder(line);
  3067. if (!order || order[0].level == 0) {
  3068. var firstNonWS = Math.max(0, line.text.search(/\S/));
  3069. var inWS = cur.line == start.line && cur.ch <= firstNonWS && cur.ch;
  3070. cm.extendSelection(Pos(start.line, inWS ? 0 : firstNonWS));
  3071. } else cm.extendSelection(start);
  3072. },
  3073. goLineEnd: function(cm) {
  3074. cm.extendSelection(lineEnd(cm, cm.getCursor().line));
  3075. },
  3076. goLineRight: function(cm) {
  3077. var top = cm.charCoords(cm.getCursor(), "div").top + 5;
  3078. cm.extendSelection(cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div"));
  3079. },
  3080. goLineLeft: function(cm) {
  3081. var top = cm.charCoords(cm.getCursor(), "div").top + 5;
  3082. cm.extendSelection(cm.coordsChar({left: 0, top: top}, "div"));
  3083. },
  3084. goLineUp: function(cm) {cm.moveV(-1, "line");},
  3085. goLineDown: function(cm) {cm.moveV(1, "line");},
  3086. goPageUp: function(cm) {cm.moveV(-1, "page");},
  3087. goPageDown: function(cm) {cm.moveV(1, "page");},
  3088. goCharLeft: function(cm) {cm.moveH(-1, "char");},
  3089. goCharRight: function(cm) {cm.moveH(1, "char");},
  3090. goColumnLeft: function(cm) {cm.moveH(-1, "column");},
  3091. goColumnRight: function(cm) {cm.moveH(1, "column");},
  3092. goWordLeft: function(cm) {cm.moveH(-1, "word");},
  3093. goGroupRight: function(cm) {cm.moveH(1, "group");},
  3094. goGroupLeft: function(cm) {cm.moveH(-1, "group");},
  3095. goWordRight: function(cm) {cm.moveH(1, "word");},
  3096. delCharBefore: function(cm) {cm.deleteH(-1, "char");},
  3097. delCharAfter: function(cm) {cm.deleteH(1, "char");},
  3098. delWordBefore: function(cm) {cm.deleteH(-1, "word");},
  3099. delWordAfter: function(cm) {cm.deleteH(1, "word");},
  3100. delGroupBefore: function(cm) {cm.deleteH(-1, "group");},
  3101. delGroupAfter: function(cm) {cm.deleteH(1, "group");},
  3102. indentAuto: function(cm) {cm.indentSelection("smart");},
  3103. indentMore: function(cm) {cm.indentSelection("add");},
  3104. indentLess: function(cm) {cm.indentSelection("subtract");},
  3105. insertTab: function(cm) {cm.replaceSelection("\t", "end", "+input");},
  3106. defaultTab: function(cm) {
  3107. if (cm.somethingSelected()) cm.indentSelection("add");
  3108. else cm.replaceSelection("\t", "end", "+input");
  3109. },
  3110. transposeChars: function(cm) {
  3111. var cur = cm.getCursor(), line = cm.getLine(cur.line);
  3112. if (cur.ch > 0 && cur.ch < line.length - 1)
  3113. cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1),
  3114. Pos(cur.line, cur.ch - 1), Pos(cur.line, cur.ch + 1));
  3115. },
  3116. newlineAndIndent: function(cm) {
  3117. operation(cm, function() {
  3118. cm.replaceSelection("\n", "end", "+input");
  3119. cm.indentLine(cm.getCursor().line, null, true);
  3120. })();
  3121. },
  3122. toggleOverwrite: function(cm) {cm.toggleOverwrite();}
  3123. };
  3124. // STANDARD KEYMAPS
  3125. var keyMap = CodeMirror.keyMap = {};
  3126. keyMap.basic = {
  3127. "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
  3128. "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
  3129. "Delete": "delCharAfter", "Backspace": "delCharBefore", "Tab": "defaultTab", "Shift-Tab": "indentAuto",
  3130. "Enter": "newlineAndIndent", "Insert": "toggleOverwrite"
  3131. };
  3132. // Note that the save and find-related commands aren't defined by
  3133. // default. Unknown commands are simply ignored.
  3134. keyMap.pcDefault = {
  3135. "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
  3136. "Ctrl-Home": "goDocStart", "Alt-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd",
  3137. "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
  3138. "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find",
  3139. "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
  3140. "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
  3141. fallthrough: "basic"
  3142. };
  3143. keyMap.macDefault = {
  3144. "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
  3145. "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft",
  3146. "Alt-Right": "goGroupRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delGroupBefore",
  3147. "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find",
  3148. "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
  3149. "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delLineLeft",
  3150. fallthrough: ["basic", "emacsy"]
  3151. };
  3152. keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
  3153. keyMap.emacsy = {
  3154. "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
  3155. "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
  3156. "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore",
  3157. "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars"
  3158. };
  3159. // KEYMAP DISPATCH
  3160. function getKeyMap(val) {
  3161. if (typeof val == "string") return keyMap[val];
  3162. else return val;
  3163. }
  3164. function lookupKey(name, maps, handle) {
  3165. function lookup(map) {
  3166. map = getKeyMap(map);
  3167. var found = map[name];
  3168. if (found === false) return "stop";
  3169. if (found != null && handle(found)) return true;
  3170. if (map.nofallthrough) return "stop";
  3171. var fallthrough = map.fallthrough;
  3172. if (fallthrough == null) return false;
  3173. if (Object.prototype.toString.call(fallthrough) != "[object Array]")
  3174. return lookup(fallthrough);
  3175. for (var i = 0, e = fallthrough.length; i < e; ++i) {
  3176. var done = lookup(fallthrough[i]);
  3177. if (done) return done;
  3178. }
  3179. return false;
  3180. }
  3181. for (var i = 0; i < maps.length; ++i) {
  3182. var done = lookup(maps[i]);
  3183. if (done) return done != "stop";
  3184. }
  3185. }
  3186. function isModifierKey(event) {
  3187. var name = keyNames[event.keyCode];
  3188. return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod";
  3189. }
  3190. function keyName(event, noShift) {
  3191. if (opera && event.keyCode == 34 && event["char"]) return false;
  3192. var name = keyNames[event.keyCode];
  3193. if (name == null || event.altGraphKey) return false;
  3194. if (event.altKey) name = "Alt-" + name;
  3195. if (flipCtrlCmd ? event.metaKey : event.ctrlKey) name = "Ctrl-" + name;
  3196. if (flipCtrlCmd ? event.ctrlKey : event.metaKey) name = "Cmd-" + name;
  3197. if (!noShift && event.shiftKey) name = "Shift-" + name;
  3198. return name;
  3199. }
  3200. CodeMirror.lookupKey = lookupKey;
  3201. CodeMirror.isModifierKey = isModifierKey;
  3202. CodeMirror.keyName = keyName;
  3203. // FROMTEXTAREA
  3204. CodeMirror.fromTextArea = function(textarea, options) {
  3205. if (!options) options = {};
  3206. options.value = textarea.value;
  3207. if (!options.tabindex && textarea.tabindex)
  3208. options.tabindex = textarea.tabindex;
  3209. if (!options.placeholder && textarea.placeholder)
  3210. options.placeholder = textarea.placeholder;
  3211. // Set autofocus to true if this textarea is focused, or if it has
  3212. // autofocus and no other element is focused.
  3213. if (options.autofocus == null) {
  3214. var hasFocus = document.body;
  3215. // doc.activeElement occasionally throws on IE
  3216. try { hasFocus = document.activeElement; } catch(e) {}
  3217. options.autofocus = hasFocus == textarea ||
  3218. textarea.getAttribute("autofocus") != null && hasFocus == document.body;
  3219. }
  3220. function save() {textarea.value = cm.getValue();}
  3221. if (textarea.form) {
  3222. on(textarea.form, "submit", save);
  3223. // Deplorable hack to make the submit method do the right thing.
  3224. if (!options.leaveSubmitMethodAlone) {
  3225. var form = textarea.form, realSubmit = form.submit;
  3226. try {
  3227. var wrappedSubmit = form.submit = function() {
  3228. save();
  3229. form.submit = realSubmit;
  3230. form.submit();
  3231. form.submit = wrappedSubmit;
  3232. };
  3233. } catch(e) {}
  3234. }
  3235. }
  3236. textarea.style.display = "none";
  3237. var cm = CodeMirror(function(node) {
  3238. textarea.parentNode.insertBefore(node, textarea.nextSibling);
  3239. }, options);
  3240. cm.save = save;
  3241. cm.getTextArea = function() { return textarea; };
  3242. cm.toTextArea = function() {
  3243. save();
  3244. textarea.parentNode.removeChild(cm.getWrapperElement());
  3245. textarea.style.display = "";
  3246. if (textarea.form) {
  3247. off(textarea.form, "submit", save);
  3248. if (typeof textarea.form.submit == "function")
  3249. textarea.form.submit = realSubmit;
  3250. }
  3251. };
  3252. return cm;
  3253. };
  3254. // STRING STREAM
  3255. // Fed to the mode parsers, provides helper functions to make
  3256. // parsers more succinct.
  3257. // The character stream used by a mode's parser.
  3258. function StringStream(string, tabSize) {
  3259. this.pos = this.start = 0;
  3260. this.string = string;
  3261. this.tabSize = tabSize || 8;
  3262. this.lastColumnPos = this.lastColumnValue = 0;
  3263. }
  3264. StringStream.prototype = {
  3265. eol: function() {return this.pos >= this.string.length;},
  3266. sol: function() {return this.pos == 0;},
  3267. peek: function() {return this.string.charAt(this.pos) || undefined;},
  3268. next: function() {
  3269. if (this.pos < this.string.length)
  3270. return this.string.charAt(this.pos++);
  3271. },
  3272. eat: function(match) {
  3273. var ch = this.string.charAt(this.pos);
  3274. if (typeof match == "string") var ok = ch == match;
  3275. else var ok = ch && (match.test ? match.test(ch) : match(ch));
  3276. if (ok) {++this.pos; return ch;}
  3277. },
  3278. eatWhile: function(match) {
  3279. var start = this.pos;
  3280. while (this.eat(match)){}
  3281. return this.pos > start;
  3282. },
  3283. eatSpace: function() {
  3284. var start = this.pos;
  3285. while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
  3286. return this.pos > start;
  3287. },
  3288. skipToEnd: function() {this.pos = this.string.length;},
  3289. skipTo: function(ch) {
  3290. var found = this.string.indexOf(ch, this.pos);
  3291. if (found > -1) {this.pos = found; return true;}
  3292. },
  3293. backUp: function(n) {this.pos -= n;},
  3294. column: function() {
  3295. if (this.lastColumnPos < this.start) {
  3296. this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);
  3297. this.lastColumnPos = this.start;
  3298. }
  3299. return this.lastColumnValue;
  3300. },
  3301. indentation: function() {return countColumn(this.string, null, this.tabSize);},
  3302. match: function(pattern, consume, caseInsensitive) {
  3303. if (typeof pattern == "string") {
  3304. var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;};
  3305. var substr = this.string.substr(this.pos, pattern.length);
  3306. if (cased(substr) == cased(pattern)) {
  3307. if (consume !== false) this.pos += pattern.length;
  3308. return true;
  3309. }
  3310. } else {
  3311. var match = this.string.slice(this.pos).match(pattern);
  3312. if (match && match.index > 0) return null;
  3313. if (match && consume !== false) this.pos += match[0].length;
  3314. return match;
  3315. }
  3316. },
  3317. current: function(){return this.string.slice(this.start, this.pos);}
  3318. };
  3319. CodeMirror.StringStream = StringStream;
  3320. // TEXTMARKERS
  3321. function TextMarker(doc, type) {
  3322. this.lines = [];
  3323. this.type = type;
  3324. this.doc = doc;
  3325. }
  3326. CodeMirror.TextMarker = TextMarker;
  3327. eventMixin(TextMarker);
  3328. TextMarker.prototype.clear = function() {
  3329. if (this.explicitlyCleared) return;
  3330. var cm = this.doc.cm, withOp = cm && !cm.curOp;
  3331. if (withOp) startOperation(cm);
  3332. if (hasHandler(this, "clear")) {
  3333. var found = this.find();
  3334. if (found) signalLater(this, "clear", found.from, found.to);
  3335. }
  3336. var min = null, max = null;
  3337. for (var i = 0; i < this.lines.length; ++i) {
  3338. var line = this.lines[i];
  3339. var span = getMarkedSpanFor(line.markedSpans, this);
  3340. if (span.to != null) max = lineNo(line);
  3341. line.markedSpans = removeMarkedSpan(line.markedSpans, span);
  3342. if (span.from != null)
  3343. min = lineNo(line);
  3344. else if (this.collapsed && !lineIsHidden(this.doc, line) && cm)
  3345. updateLineHeight(line, textHeight(cm.display));
  3346. }
  3347. if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) {
  3348. var visual = visualLine(cm.doc, this.lines[i]), len = lineLength(cm.doc, visual);
  3349. if (len > cm.display.maxLineLength) {
  3350. cm.display.maxLine = visual;
  3351. cm.display.maxLineLength = len;
  3352. cm.display.maxLineChanged = true;
  3353. }
  3354. }
  3355. if (min != null && cm) regChange(cm, min, max + 1);
  3356. this.lines.length = 0;
  3357. this.explicitlyCleared = true;
  3358. if (this.atomic && this.doc.cantEdit) {
  3359. this.doc.cantEdit = false;
  3360. if (cm) reCheckSelection(cm);
  3361. }
  3362. if (withOp) endOperation(cm);
  3363. };
  3364. TextMarker.prototype.find = function() {
  3365. var from, to;
  3366. for (var i = 0; i < this.lines.length; ++i) {
  3367. var line = this.lines[i];
  3368. var span = getMarkedSpanFor(line.markedSpans, this);
  3369. if (span.from != null || span.to != null) {
  3370. var found = lineNo(line);
  3371. if (span.from != null) from = Pos(found, span.from);
  3372. if (span.to != null) to = Pos(found, span.to);
  3373. }
  3374. }
  3375. if (this.type == "bookmark") return from;
  3376. return from && {from: from, to: to};
  3377. };
  3378. TextMarker.prototype.changed = function() {
  3379. var pos = this.find(), cm = this.doc.cm;
  3380. if (!pos || !cm) return;
  3381. if (this.type != "bookmark") pos = pos.from;
  3382. var line = getLine(this.doc, pos.line);
  3383. clearCachedMeasurement(cm, line);
  3384. if (pos.line >= cm.display.showingFrom && pos.line < cm.display.showingTo) {
  3385. for (var node = cm.display.lineDiv.firstChild; node; node = node.nextSibling) if (node.lineObj == line) {
  3386. if (node.offsetHeight != line.height) updateLineHeight(line, node.offsetHeight);
  3387. break;
  3388. }
  3389. runInOp(cm, function() {
  3390. cm.curOp.selectionChanged = cm.curOp.forceUpdate = cm.curOp.updateMaxLine = true;
  3391. });
  3392. }
  3393. };
  3394. TextMarker.prototype.attachLine = function(line) {
  3395. if (!this.lines.length && this.doc.cm) {
  3396. var op = this.doc.cm.curOp;
  3397. if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)
  3398. (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this);
  3399. }
  3400. this.lines.push(line);
  3401. };
  3402. TextMarker.prototype.detachLine = function(line) {
  3403. this.lines.splice(indexOf(this.lines, line), 1);
  3404. if (!this.lines.length && this.doc.cm) {
  3405. var op = this.doc.cm.curOp;
  3406. (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);
  3407. }
  3408. };
  3409. function markText(doc, from, to, options, type) {
  3410. if (options && options.shared) return markTextShared(doc, from, to, options, type);
  3411. if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type);
  3412. var marker = new TextMarker(doc, type);
  3413. if (type == "range" && !posLess(from, to)) return marker;
  3414. if (options) copyObj(options, marker);
  3415. if (marker.replacedWith) {
  3416. marker.collapsed = true;
  3417. marker.replacedWith = elt("span", [marker.replacedWith], "CodeMirror-widget");
  3418. if (!options.handleMouseEvents) marker.replacedWith.ignoreEvents = true;
  3419. }
  3420. if (marker.collapsed) sawCollapsedSpans = true;
  3421. if (marker.addToHistory)
  3422. addToHistory(doc, {from: from, to: to, origin: "markText"},
  3423. {head: doc.sel.head, anchor: doc.sel.anchor}, NaN);
  3424. var curLine = from.line, size = 0, collapsedAtStart, collapsedAtEnd, cm = doc.cm, updateMaxLine;
  3425. doc.iter(curLine, to.line + 1, function(line) {
  3426. if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(doc, line) == cm.display.maxLine)
  3427. updateMaxLine = true;
  3428. var span = {from: null, to: null, marker: marker};
  3429. size += line.text.length;
  3430. if (curLine == from.line) {span.from = from.ch; size -= from.ch;}
  3431. if (curLine == to.line) {span.to = to.ch; size -= line.text.length - to.ch;}
  3432. if (marker.collapsed) {
  3433. if (curLine == to.line) collapsedAtEnd = collapsedSpanAt(line, to.ch);
  3434. if (curLine == from.line) collapsedAtStart = collapsedSpanAt(line, from.ch);
  3435. else updateLineHeight(line, 0);
  3436. }
  3437. addMarkedSpan(line, span);
  3438. ++curLine;
  3439. });
  3440. if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) {
  3441. if (lineIsHidden(doc, line)) updateLineHeight(line, 0);
  3442. });
  3443. if (marker.clearOnEnter) on(marker, "beforeCursorEnter", function() { marker.clear(); });
  3444. if (marker.readOnly) {
  3445. sawReadOnlySpans = true;
  3446. if (doc.history.done.length || doc.history.undone.length)
  3447. doc.clearHistory();
  3448. }
  3449. if (marker.collapsed) {
  3450. if (collapsedAtStart != collapsedAtEnd)
  3451. throw new Error("Inserting collapsed marker overlapping an existing one");
  3452. marker.size = size;
  3453. marker.atomic = true;
  3454. }
  3455. if (cm) {
  3456. if (updateMaxLine) cm.curOp.updateMaxLine = true;
  3457. if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.collapsed)
  3458. regChange(cm, from.line, to.line + 1);
  3459. if (marker.atomic) reCheckSelection(cm);
  3460. }
  3461. return marker;
  3462. }
  3463. // SHARED TEXTMARKERS
  3464. function SharedTextMarker(markers, primary) {
  3465. this.markers = markers;
  3466. this.primary = primary;
  3467. for (var i = 0, me = this; i < markers.length; ++i) {
  3468. markers[i].parent = this;
  3469. on(markers[i], "clear", function(){me.clear();});
  3470. }
  3471. }
  3472. CodeMirror.SharedTextMarker = SharedTextMarker;
  3473. eventMixin(SharedTextMarker);
  3474. SharedTextMarker.prototype.clear = function() {
  3475. if (this.explicitlyCleared) return;
  3476. this.explicitlyCleared = true;
  3477. for (var i = 0; i < this.markers.length; ++i)
  3478. this.markers[i].clear();
  3479. signalLater(this, "clear");
  3480. };
  3481. SharedTextMarker.prototype.find = function() {
  3482. return this.primary.find();
  3483. };
  3484. function markTextShared(doc, from, to, options, type) {
  3485. options = copyObj(options);
  3486. options.shared = false;
  3487. var markers = [markText(doc, from, to, options, type)], primary = markers[0];
  3488. var widget = options.replacedWith;
  3489. linkedDocs(doc, function(doc) {
  3490. if (widget) options.replacedWith = widget.cloneNode(true);
  3491. markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));
  3492. for (var i = 0; i < doc.linked.length; ++i)
  3493. if (doc.linked[i].isParent) return;
  3494. primary = lst(markers);
  3495. });
  3496. return new SharedTextMarker(markers, primary);
  3497. }
  3498. // TEXTMARKER SPANS
  3499. function getMarkedSpanFor(spans, marker) {
  3500. if (spans) for (var i = 0; i < spans.length; ++i) {
  3501. var span = spans[i];
  3502. if (span.marker == marker) return span;
  3503. }
  3504. }
  3505. function removeMarkedSpan(spans, span) {
  3506. for (var r, i = 0; i < spans.length; ++i)
  3507. if (spans[i] != span) (r || (r = [])).push(spans[i]);
  3508. return r;
  3509. }
  3510. function addMarkedSpan(line, span) {
  3511. line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
  3512. span.marker.attachLine(line);
  3513. }
  3514. function markedSpansBefore(old, startCh, isInsert) {
  3515. if (old) for (var i = 0, nw; i < old.length; ++i) {
  3516. var span = old[i], marker = span.marker;
  3517. var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);
  3518. if (startsBefore || marker.type == "bookmark" && span.from == startCh && (!isInsert || !span.marker.insertLeft)) {
  3519. var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);
  3520. (nw || (nw = [])).push({from: span.from,
  3521. to: endsAfter ? null : span.to,
  3522. marker: marker});
  3523. }
  3524. }
  3525. return nw;
  3526. }
  3527. function markedSpansAfter(old, endCh, isInsert) {
  3528. if (old) for (var i = 0, nw; i < old.length; ++i) {
  3529. var span = old[i], marker = span.marker;
  3530. var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);
  3531. if (endsAfter || marker.type == "bookmark" && span.from == endCh && (!isInsert || span.marker.insertLeft)) {
  3532. var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);
  3533. (nw || (nw = [])).push({from: startsBefore ? null : span.from - endCh,
  3534. to: span.to == null ? null : span.to - endCh,
  3535. marker: marker});
  3536. }
  3537. }
  3538. return nw;
  3539. }
  3540. function stretchSpansOverChange(doc, change) {
  3541. var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
  3542. var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
  3543. if (!oldFirst && !oldLast) return null;
  3544. var startCh = change.from.ch, endCh = change.to.ch, isInsert = posEq(change.from, change.to);
  3545. // Get the spans that 'stick out' on both sides
  3546. var first = markedSpansBefore(oldFirst, startCh, isInsert);
  3547. var last = markedSpansAfter(oldLast, endCh, isInsert);
  3548. // Next, merge those two ends
  3549. var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);
  3550. if (first) {
  3551. // Fix up .to properties of first
  3552. for (var i = 0; i < first.length; ++i) {
  3553. var span = first[i];
  3554. if (span.to == null) {
  3555. var found = getMarkedSpanFor(last, span.marker);
  3556. if (!found) span.to = startCh;
  3557. else if (sameLine) span.to = found.to == null ? null : found.to + offset;
  3558. }
  3559. }
  3560. }
  3561. if (last) {
  3562. // Fix up .from in last (or move them into first in case of sameLine)
  3563. for (var i = 0; i < last.length; ++i) {
  3564. var span = last[i];
  3565. if (span.to != null) span.to += offset;
  3566. if (span.from == null) {
  3567. var found = getMarkedSpanFor(first, span.marker);
  3568. if (!found) {
  3569. span.from = offset;
  3570. if (sameLine) (first || (first = [])).push(span);
  3571. }
  3572. } else {
  3573. span.from += offset;
  3574. if (sameLine) (first || (first = [])).push(span);
  3575. }
  3576. }
  3577. }
  3578. if (sameLine && first) {
  3579. // Make sure we didn't create any zero-length spans
  3580. for (var i = 0; i < first.length; ++i)
  3581. if (first[i].from != null && first[i].from == first[i].to && first[i].marker.type != "bookmark")
  3582. first.splice(i--, 1);
  3583. if (!first.length) first = null;
  3584. }
  3585. var newMarkers = [first];
  3586. if (!sameLine) {
  3587. // Fill gap with whole-line-spans
  3588. var gap = change.text.length - 2, gapMarkers;
  3589. if (gap > 0 && first)
  3590. for (var i = 0; i < first.length; ++i)
  3591. if (first[i].to == null)
  3592. (gapMarkers || (gapMarkers = [])).push({from: null, to: null, marker: first[i].marker});
  3593. for (var i = 0; i < gap; ++i)
  3594. newMarkers.push(gapMarkers);
  3595. newMarkers.push(last);
  3596. }
  3597. return newMarkers;
  3598. }
  3599. function mergeOldSpans(doc, change) {
  3600. var old = getOldSpans(doc, change);
  3601. var stretched = stretchSpansOverChange(doc, change);
  3602. if (!old) return stretched;
  3603. if (!stretched) return old;
  3604. for (var i = 0; i < old.length; ++i) {
  3605. var oldCur = old[i], stretchCur = stretched[i];
  3606. if (oldCur && stretchCur) {
  3607. spans: for (var j = 0; j < stretchCur.length; ++j) {
  3608. var span = stretchCur[j];
  3609. for (var k = 0; k < oldCur.length; ++k)
  3610. if (oldCur[k].marker == span.marker) continue spans;
  3611. oldCur.push(span);
  3612. }
  3613. } else if (stretchCur) {
  3614. old[i] = stretchCur;
  3615. }
  3616. }
  3617. return old;
  3618. }
  3619. function removeReadOnlyRanges(doc, from, to) {
  3620. var markers = null;
  3621. doc.iter(from.line, to.line + 1, function(line) {
  3622. if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {
  3623. var mark = line.markedSpans[i].marker;
  3624. if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))
  3625. (markers || (markers = [])).push(mark);
  3626. }
  3627. });
  3628. if (!markers) return null;
  3629. var parts = [{from: from, to: to}];
  3630. for (var i = 0; i < markers.length; ++i) {
  3631. var mk = markers[i], m = mk.find();
  3632. for (var j = 0; j < parts.length; ++j) {
  3633. var p = parts[j];
  3634. if (posLess(p.to, m.from) || posLess(m.to, p.from)) continue;
  3635. var newParts = [j, 1];
  3636. if (posLess(p.from, m.from) || !mk.inclusiveLeft && posEq(p.from, m.from))
  3637. newParts.push({from: p.from, to: m.from});
  3638. if (posLess(m.to, p.to) || !mk.inclusiveRight && posEq(p.to, m.to))
  3639. newParts.push({from: m.to, to: p.to});
  3640. parts.splice.apply(parts, newParts);
  3641. j += newParts.length - 1;
  3642. }
  3643. }
  3644. return parts;
  3645. }
  3646. function collapsedSpanAt(line, ch) {
  3647. var sps = sawCollapsedSpans && line.markedSpans, found;
  3648. if (sps) for (var sp, i = 0; i < sps.length; ++i) {
  3649. sp = sps[i];
  3650. if (!sp.marker.collapsed) continue;
  3651. if ((sp.from == null || sp.from < ch) &&
  3652. (sp.to == null || sp.to > ch) &&
  3653. (!found || found.width < sp.marker.width))
  3654. found = sp.marker;
  3655. }
  3656. return found;
  3657. }
  3658. function collapsedSpanAtStart(line) { return collapsedSpanAt(line, -1); }
  3659. function collapsedSpanAtEnd(line) { return collapsedSpanAt(line, line.text.length + 1); }
  3660. function visualLine(doc, line) {
  3661. var merged;
  3662. while (merged = collapsedSpanAtStart(line))
  3663. line = getLine(doc, merged.find().from.line);
  3664. return line;
  3665. }
  3666. function lineIsHidden(doc, line) {
  3667. var sps = sawCollapsedSpans && line.markedSpans;
  3668. if (sps) for (var sp, i = 0; i < sps.length; ++i) {
  3669. sp = sps[i];
  3670. if (!sp.marker.collapsed) continue;
  3671. if (sp.from == null) return true;
  3672. if (sp.marker.replacedWith) continue;
  3673. if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))
  3674. return true;
  3675. }
  3676. }
  3677. function lineIsHiddenInner(doc, line, span) {
  3678. if (span.to == null) {
  3679. var end = span.marker.find().to, endLine = getLine(doc, end.line);
  3680. return lineIsHiddenInner(doc, endLine, getMarkedSpanFor(endLine.markedSpans, span.marker));
  3681. }
  3682. if (span.marker.inclusiveRight && span.to == line.text.length)
  3683. return true;
  3684. for (var sp, i = 0; i < line.markedSpans.length; ++i) {
  3685. sp = line.markedSpans[i];
  3686. if (sp.marker.collapsed && !sp.marker.replacedWith && sp.from == span.to &&
  3687. (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&
  3688. lineIsHiddenInner(doc, line, sp)) return true;
  3689. }
  3690. }
  3691. function detachMarkedSpans(line) {
  3692. var spans = line.markedSpans;
  3693. if (!spans) return;
  3694. for (var i = 0; i < spans.length; ++i)
  3695. spans[i].marker.detachLine(line);
  3696. line.markedSpans = null;
  3697. }
  3698. function attachMarkedSpans(line, spans) {
  3699. if (!spans) return;
  3700. for (var i = 0; i < spans.length; ++i)
  3701. spans[i].marker.attachLine(line);
  3702. line.markedSpans = spans;
  3703. }
  3704. // LINE WIDGETS
  3705. var LineWidget = CodeMirror.LineWidget = function(cm, node, options) {
  3706. if (options) for (var opt in options) if (options.hasOwnProperty(opt))
  3707. this[opt] = options[opt];
  3708. this.cm = cm;
  3709. this.node = node;
  3710. };
  3711. eventMixin(LineWidget);
  3712. function widgetOperation(f) {
  3713. return function() {
  3714. var withOp = !this.cm.curOp;
  3715. if (withOp) startOperation(this.cm);
  3716. try {var result = f.apply(this, arguments);}
  3717. finally {if (withOp) endOperation(this.cm);}
  3718. return result;
  3719. };
  3720. }
  3721. LineWidget.prototype.clear = widgetOperation(function() {
  3722. var ws = this.line.widgets, no = lineNo(this.line);
  3723. if (no == null || !ws) return;
  3724. for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1);
  3725. if (!ws.length) this.line.widgets = null;
  3726. var aboveVisible = heightAtLine(this.cm, this.line) < this.cm.doc.scrollTop;
  3727. updateLineHeight(this.line, Math.max(0, this.line.height - widgetHeight(this)));
  3728. if (aboveVisible) addToScrollPos(this.cm, 0, -this.height);
  3729. regChange(this.cm, no, no + 1);
  3730. });
  3731. LineWidget.prototype.changed = widgetOperation(function() {
  3732. var oldH = this.height;
  3733. this.height = null;
  3734. var diff = widgetHeight(this) - oldH;
  3735. if (!diff) return;
  3736. updateLineHeight(this.line, this.line.height + diff);
  3737. var no = lineNo(this.line);
  3738. regChange(this.cm, no, no + 1);
  3739. });
  3740. function widgetHeight(widget) {
  3741. if (widget.height != null) return widget.height;
  3742. if (!widget.node.parentNode || widget.node.parentNode.nodeType != 1)
  3743. removeChildrenAndAdd(widget.cm.display.measure, elt("div", [widget.node], null, "position: relative"));
  3744. return widget.height = widget.node.offsetHeight;
  3745. }
  3746. function addLineWidget(cm, handle, node, options) {
  3747. var widget = new LineWidget(cm, node, options);
  3748. if (widget.noHScroll) cm.display.alignWidgets = true;
  3749. changeLine(cm, handle, function(line) {
  3750. var widgets = line.widgets || (line.widgets = []);
  3751. if (widget.insertAt == null) widgets.push(widget);
  3752. else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget);
  3753. widget.line = line;
  3754. if (!lineIsHidden(cm.doc, line) || widget.showIfHidden) {
  3755. var aboveVisible = heightAtLine(cm, line) < cm.doc.scrollTop;
  3756. updateLineHeight(line, line.height + widgetHeight(widget));
  3757. if (aboveVisible) addToScrollPos(cm, 0, widget.height);
  3758. }
  3759. return true;
  3760. });
  3761. return widget;
  3762. }
  3763. // LINE DATA STRUCTURE
  3764. // Line objects. These hold state related to a line, including
  3765. // highlighting info (the styles array).
  3766. var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) {
  3767. this.text = text;
  3768. attachMarkedSpans(this, markedSpans);
  3769. this.height = estimateHeight ? estimateHeight(this) : 1;
  3770. };
  3771. eventMixin(Line);
  3772. function updateLine(line, text, markedSpans, estimateHeight) {
  3773. line.text = text;
  3774. if (line.stateAfter) line.stateAfter = null;
  3775. if (line.styles) line.styles = null;
  3776. if (line.order != null) line.order = null;
  3777. detachMarkedSpans(line);
  3778. attachMarkedSpans(line, markedSpans);
  3779. var estHeight = estimateHeight ? estimateHeight(line) : 1;
  3780. if (estHeight != line.height) updateLineHeight(line, estHeight);
  3781. }
  3782. function cleanUpLine(line) {
  3783. line.parent = null;
  3784. detachMarkedSpans(line);
  3785. }
  3786. // Run the given mode's parser over a line, update the styles
  3787. // array, which contains alternating fragments of text and CSS
  3788. // classes.
  3789. function runMode(cm, text, mode, state, f) {
  3790. var flattenSpans = mode.flattenSpans;
  3791. if (flattenSpans == null) flattenSpans = cm.options.flattenSpans;
  3792. var curStart = 0, curStyle = null;
  3793. var stream = new StringStream(text, cm.options.tabSize), style;
  3794. if (text == "" && mode.blankLine) mode.blankLine(state);
  3795. while (!stream.eol()) {
  3796. if (stream.pos > cm.options.maxHighlightLength) {
  3797. flattenSpans = false;
  3798. // Webkit seems to refuse to render text nodes longer than 57444 characters
  3799. stream.pos = Math.min(text.length, stream.start + 50000);
  3800. style = null;
  3801. } else {
  3802. style = mode.token(stream, state);
  3803. }
  3804. if (!flattenSpans || curStyle != style) {
  3805. if (curStart < stream.start) f(stream.start, curStyle);
  3806. curStart = stream.start; curStyle = style;
  3807. }
  3808. stream.start = stream.pos;
  3809. }
  3810. if (curStart < stream.pos) f(stream.pos, curStyle);
  3811. }
  3812. function highlightLine(cm, line, state) {
  3813. // A styles array always starts with a number identifying the
  3814. // mode/overlays that it is based on (for easy invalidation).
  3815. var st = [cm.state.modeGen];
  3816. // Compute the base array of styles
  3817. runMode(cm, line.text, cm.doc.mode, state, function(end, style) {st.push(end, style);});
  3818. // Run overlays, adjust style array.
  3819. for (var o = 0; o < cm.state.overlays.length; ++o) {
  3820. var overlay = cm.state.overlays[o], i = 1, at = 0;
  3821. runMode(cm, line.text, overlay.mode, true, function(end, style) {
  3822. var start = i;
  3823. // Ensure there's a token end at the current position, and that i points at it
  3824. while (at < end) {
  3825. var i_end = st[i];
  3826. if (i_end > end)
  3827. st.splice(i, 1, end, st[i+1], i_end);
  3828. i += 2;
  3829. at = Math.min(end, i_end);
  3830. }
  3831. if (!style) return;
  3832. if (overlay.opaque) {
  3833. st.splice(start, i - start, end, style);
  3834. i = start + 2;
  3835. } else {
  3836. for (; start < i; start += 2) {
  3837. var cur = st[start+1];
  3838. st[start+1] = cur ? cur + " " + style : style;
  3839. }
  3840. }
  3841. });
  3842. }
  3843. return st;
  3844. }
  3845. function getLineStyles(cm, line) {
  3846. if (!line.styles || line.styles[0] != cm.state.modeGen)
  3847. line.styles = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line)));
  3848. return line.styles;
  3849. }
  3850. // Lightweight form of highlight -- proceed over this line and
  3851. // update state, but don't save a style array.
  3852. function processLine(cm, line, state) {
  3853. var mode = cm.doc.mode;
  3854. var stream = new StringStream(line.text, cm.options.tabSize);
  3855. if (line.text == "" && mode.blankLine) mode.blankLine(state);
  3856. while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) {
  3857. mode.token(stream, state);
  3858. stream.start = stream.pos;
  3859. }
  3860. }
  3861. var styleToClassCache = {};
  3862. function styleToClass(style) {
  3863. if (!style) return null;
  3864. return styleToClassCache[style] ||
  3865. (styleToClassCache[style] = "cm-" + style.replace(/ +/g, " cm-"));
  3866. }
  3867. function lineContent(cm, realLine, measure, copyWidgets) {
  3868. var merged, line = realLine, empty = true;
  3869. while (merged = collapsedSpanAtStart(line))
  3870. line = getLine(cm.doc, merged.find().from.line);
  3871. var builder = {pre: elt("pre"), col: 0, pos: 0,
  3872. measure: null, measuredSomething: false, cm: cm,
  3873. copyWidgets: copyWidgets};
  3874. if (line.textClass) builder.pre.className = line.textClass;
  3875. do {
  3876. if (line.text) empty = false;
  3877. builder.measure = line == realLine && measure;
  3878. builder.pos = 0;
  3879. builder.addToken = builder.measure ? buildTokenMeasure : buildToken;
  3880. if ((ie || webkit) && cm.getOption("lineWrapping"))
  3881. builder.addToken = buildTokenSplitSpaces(builder.addToken);
  3882. var next = insertLineContent(line, builder, getLineStyles(cm, line));
  3883. if (measure && line == realLine && !builder.measuredSomething) {
  3884. measure[0] = builder.pre.appendChild(zeroWidthElement(cm.display.measure));
  3885. builder.measuredSomething = true;
  3886. }
  3887. if (next) line = getLine(cm.doc, next.to.line);
  3888. } while (next);
  3889. if (measure && !builder.measuredSomething && !measure[0])
  3890. measure[0] = builder.pre.appendChild(empty ? elt("span", "\u00a0") : zeroWidthElement(cm.display.measure));
  3891. if (!builder.pre.firstChild && !lineIsHidden(cm.doc, realLine))
  3892. builder.pre.appendChild(document.createTextNode("\u00a0"));
  3893. var order;
  3894. // Work around problem with the reported dimensions of single-char
  3895. // direction spans on IE (issue #1129). See also the comment in
  3896. // cursorCoords.
  3897. if (measure && ie && (order = getOrder(line))) {
  3898. var l = order.length - 1;
  3899. if (order[l].from == order[l].to) --l;
  3900. var last = order[l], prev = order[l - 1];
  3901. if (last.from + 1 == last.to && prev && last.level < prev.level) {
  3902. var span = measure[builder.pos - 1];
  3903. if (span) span.parentNode.insertBefore(span.measureRight = zeroWidthElement(cm.display.measure),
  3904. span.nextSibling);
  3905. }
  3906. }
  3907. signal(cm, "renderLine", cm, realLine, builder.pre);
  3908. return builder.pre;
  3909. }
  3910. var tokenSpecialChars = /[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\uFEFF]/g;
  3911. function buildToken(builder, text, style, startStyle, endStyle, title) {
  3912. if (!text) return;
  3913. if (!tokenSpecialChars.test(text)) {
  3914. builder.col += text.length;
  3915. var content = document.createTextNode(text);
  3916. } else {
  3917. var content = document.createDocumentFragment(), pos = 0;
  3918. while (true) {
  3919. tokenSpecialChars.lastIndex = pos;
  3920. var m = tokenSpecialChars.exec(text);
  3921. var skipped = m ? m.index - pos : text.length - pos;
  3922. if (skipped) {
  3923. content.appendChild(document.createTextNode(text.slice(pos, pos + skipped)));
  3924. builder.col += skipped;
  3925. }
  3926. if (!m) break;
  3927. pos += skipped + 1;
  3928. if (m[0] == "\t") {
  3929. var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;
  3930. content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab"));
  3931. builder.col += tabWidth;
  3932. } else {
  3933. var token = elt("span", "\u2022", "cm-invalidchar");
  3934. token.title = "\\u" + m[0].charCodeAt(0).toString(16);
  3935. content.appendChild(token);
  3936. builder.col += 1;
  3937. }
  3938. }
  3939. }
  3940. if (style || startStyle || endStyle || builder.measure) {
  3941. var fullStyle = style || "";
  3942. if (startStyle) fullStyle += startStyle;
  3943. if (endStyle) fullStyle += endStyle;
  3944. var token = elt("span", [content], fullStyle);
  3945. if (title) token.title = title;
  3946. return builder.pre.appendChild(token);
  3947. }
  3948. builder.pre.appendChild(content);
  3949. }
  3950. function buildTokenMeasure(builder, text, style, startStyle, endStyle) {
  3951. var wrapping = builder.cm.options.lineWrapping;
  3952. for (var i = 0; i < text.length; ++i) {
  3953. var ch = text.charAt(i), start = i == 0;
  3954. if (ch >= "\ud800" && ch < "\udbff" && i < text.length - 1) {
  3955. ch = text.slice(i, i + 2);
  3956. ++i;
  3957. } else if (i && wrapping && spanAffectsWrapping(text, i)) {
  3958. builder.pre.appendChild(elt("wbr"));
  3959. }
  3960. var old = builder.measure[builder.pos];
  3961. var span = builder.measure[builder.pos] =
  3962. buildToken(builder, ch, style,
  3963. start && startStyle, i == text.length - 1 && endStyle);
  3964. if (old) span.leftSide = old.leftSide || old;
  3965. // In IE single-space nodes wrap differently than spaces
  3966. // embedded in larger text nodes, except when set to
  3967. // white-space: normal (issue #1268).
  3968. if (ie && wrapping && ch == " " && i && !/\s/.test(text.charAt(i - 1)) &&
  3969. i < text.length - 1 && !/\s/.test(text.charAt(i + 1)))
  3970. span.style.whiteSpace = "normal";
  3971. builder.pos += ch.length;
  3972. }
  3973. if (text.length) builder.measuredSomething = true;
  3974. }
  3975. function buildTokenSplitSpaces(inner) {
  3976. function split(old) {
  3977. var out = " ";
  3978. for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0";
  3979. out += " ";
  3980. return out;
  3981. }
  3982. return function(builder, text, style, startStyle, endStyle, title) {
  3983. return inner(builder, text.replace(/ {3,}/, split), style, startStyle, endStyle, title);
  3984. };
  3985. }
  3986. function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
  3987. var widget = !ignoreWidget && marker.replacedWith;
  3988. if (widget) {
  3989. if (builder.copyWidgets) widget = widget.cloneNode(true);
  3990. builder.pre.appendChild(widget);
  3991. if (builder.measure) {
  3992. if (size) {
  3993. builder.measure[builder.pos] = widget;
  3994. } else {
  3995. var elt = zeroWidthElement(builder.cm.display.measure);
  3996. if (marker.type == "bookmark" && !marker.insertLeft)
  3997. builder.measure[builder.pos] = builder.pre.appendChild(elt);
  3998. else if (builder.measure[builder.pos])
  3999. return;
  4000. else
  4001. builder.measure[builder.pos] = builder.pre.insertBefore(elt, widget);
  4002. }
  4003. builder.measuredSomething = true;
  4004. }
  4005. }
  4006. builder.pos += size;
  4007. }
  4008. // Outputs a number of spans to make up a line, taking highlighting
  4009. // and marked text into account.
  4010. function insertLineContent(line, builder, styles) {
  4011. var spans = line.markedSpans, allText = line.text, at = 0;
  4012. if (!spans) {
  4013. for (var i = 1; i < styles.length; i+=2)
  4014. builder.addToken(builder, allText.slice(at, at = styles[i]), styleToClass(styles[i+1]));
  4015. return;
  4016. }
  4017. var len = allText.length, pos = 0, i = 1, text = "", style;
  4018. var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;
  4019. for (;;) {
  4020. if (nextChange == pos) { // Update current marker set
  4021. spanStyle = spanEndStyle = spanStartStyle = title = "";
  4022. collapsed = null; nextChange = Infinity;
  4023. var foundBookmarks = [];
  4024. for (var j = 0; j < spans.length; ++j) {
  4025. var sp = spans[j], m = sp.marker;
  4026. if (sp.from <= pos && (sp.to == null || sp.to > pos)) {
  4027. if (sp.to != null && nextChange > sp.to) { nextChange = sp.to; spanEndStyle = ""; }
  4028. if (m.className) spanStyle += " " + m.className;
  4029. if (m.startStyle && sp.from == pos) spanStartStyle += " " + m.startStyle;
  4030. if (m.endStyle && sp.to == nextChange) spanEndStyle += " " + m.endStyle;
  4031. if (m.title && !title) title = m.title;
  4032. if (m.collapsed && (!collapsed || collapsed.marker.size < m.size))
  4033. collapsed = sp;
  4034. } else if (sp.from > pos && nextChange > sp.from) {
  4035. nextChange = sp.from;
  4036. }
  4037. if (m.type == "bookmark" && sp.from == pos && m.replacedWith) foundBookmarks.push(m);
  4038. }
  4039. if (collapsed && (collapsed.from || 0) == pos) {
  4040. buildCollapsedSpan(builder, (collapsed.to == null ? len : collapsed.to) - pos,
  4041. collapsed.marker, collapsed.from == null);
  4042. if (collapsed.to == null) return collapsed.marker.find();
  4043. }
  4044. if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j)
  4045. buildCollapsedSpan(builder, 0, foundBookmarks[j]);
  4046. }
  4047. if (pos >= len) break;
  4048. var upto = Math.min(len, nextChange);
  4049. while (true) {
  4050. if (text) {
  4051. var end = pos + text.length;
  4052. if (!collapsed) {
  4053. var tokenText = end > upto ? text.slice(0, upto - pos) : text;
  4054. builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,
  4055. spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title);
  4056. }
  4057. if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
  4058. pos = end;
  4059. spanStartStyle = "";
  4060. }
  4061. text = allText.slice(at, at = styles[i++]);
  4062. style = styleToClass(styles[i++]);
  4063. }
  4064. }
  4065. }
  4066. // DOCUMENT DATA STRUCTURE
  4067. function updateDoc(doc, change, markedSpans, selAfter, estimateHeight) {
  4068. function spansFor(n) {return markedSpans ? markedSpans[n] : null;}
  4069. function update(line, text, spans) {
  4070. updateLine(line, text, spans, estimateHeight);
  4071. signalLater(line, "change", line, change);
  4072. }
  4073. var from = change.from, to = change.to, text = change.text;
  4074. var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
  4075. var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;
  4076. // First adjust the line structure
  4077. if (from.ch == 0 && to.ch == 0 && lastText == "") {
  4078. // This is a whole-line replace. Treated specially to make
  4079. // sure line objects move the way they are supposed to.
  4080. for (var i = 0, e = text.length - 1, added = []; i < e; ++i)
  4081. added.push(new Line(text[i], spansFor(i), estimateHeight));
  4082. update(lastLine, lastLine.text, lastSpans);
  4083. if (nlines) doc.remove(from.line, nlines);
  4084. if (added.length) doc.insert(from.line, added);
  4085. } else if (firstLine == lastLine) {
  4086. if (text.length == 1) {
  4087. update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);
  4088. } else {
  4089. for (var added = [], i = 1, e = text.length - 1; i < e; ++i)
  4090. added.push(new Line(text[i], spansFor(i), estimateHeight));
  4091. added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));
  4092. update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
  4093. doc.insert(from.line + 1, added);
  4094. }
  4095. } else if (text.length == 1) {
  4096. update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));
  4097. doc.remove(from.line + 1, nlines);
  4098. } else {
  4099. update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
  4100. update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);
  4101. for (var i = 1, e = text.length - 1, added = []; i < e; ++i)
  4102. added.push(new Line(text[i], spansFor(i), estimateHeight));
  4103. if (nlines > 1) doc.remove(from.line + 1, nlines - 1);
  4104. doc.insert(from.line + 1, added);
  4105. }
  4106. signalLater(doc, "change", doc, change);
  4107. setSelection(doc, selAfter.anchor, selAfter.head, null, true);
  4108. }
  4109. function LeafChunk(lines) {
  4110. this.lines = lines;
  4111. this.parent = null;
  4112. for (var i = 0, e = lines.length, height = 0; i < e; ++i) {
  4113. lines[i].parent = this;
  4114. height += lines[i].height;
  4115. }
  4116. this.height = height;
  4117. }
  4118. LeafChunk.prototype = {
  4119. chunkSize: function() { return this.lines.length; },
  4120. removeInner: function(at, n) {
  4121. for (var i = at, e = at + n; i < e; ++i) {
  4122. var line = this.lines[i];
  4123. this.height -= line.height;
  4124. cleanUpLine(line);
  4125. signalLater(line, "delete");
  4126. }
  4127. this.lines.splice(at, n);
  4128. },
  4129. collapse: function(lines) {
  4130. lines.splice.apply(lines, [lines.length, 0].concat(this.lines));
  4131. },
  4132. insertInner: function(at, lines, height) {
  4133. this.height += height;
  4134. this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
  4135. for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this;
  4136. },
  4137. iterN: function(at, n, op) {
  4138. for (var e = at + n; at < e; ++at)
  4139. if (op(this.lines[at])) return true;
  4140. }
  4141. };
  4142. function BranchChunk(children) {
  4143. this.children = children;
  4144. var size = 0, height = 0;
  4145. for (var i = 0, e = children.length; i < e; ++i) {
  4146. var ch = children[i];
  4147. size += ch.chunkSize(); height += ch.height;
  4148. ch.parent = this;
  4149. }
  4150. this.size = size;
  4151. this.height = height;
  4152. this.parent = null;
  4153. }
  4154. BranchChunk.prototype = {
  4155. chunkSize: function() { return this.size; },
  4156. removeInner: function(at, n) {
  4157. this.size -= n;
  4158. for (var i = 0; i < this.children.length; ++i) {
  4159. var child = this.children[i], sz = child.chunkSize();
  4160. if (at < sz) {
  4161. var rm = Math.min(n, sz - at), oldHeight = child.height;
  4162. child.removeInner(at, rm);
  4163. this.height -= oldHeight - child.height;
  4164. if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
  4165. if ((n -= rm) == 0) break;
  4166. at = 0;
  4167. } else at -= sz;
  4168. }
  4169. if (this.size - n < 25) {
  4170. var lines = [];
  4171. this.collapse(lines);
  4172. this.children = [new LeafChunk(lines)];
  4173. this.children[0].parent = this;
  4174. }
  4175. },
  4176. collapse: function(lines) {
  4177. for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines);
  4178. },
  4179. insertInner: function(at, lines, height) {
  4180. this.size += lines.length;
  4181. this.height += height;
  4182. for (var i = 0, e = this.children.length; i < e; ++i) {
  4183. var child = this.children[i], sz = child.chunkSize();
  4184. if (at <= sz) {
  4185. child.insertInner(at, lines, height);
  4186. if (child.lines && child.lines.length > 50) {
  4187. while (child.lines.length > 50) {
  4188. var spilled = child.lines.splice(child.lines.length - 25, 25);
  4189. var newleaf = new LeafChunk(spilled);
  4190. child.height -= newleaf.height;
  4191. this.children.splice(i + 1, 0, newleaf);
  4192. newleaf.parent = this;
  4193. }
  4194. this.maybeSpill();
  4195. }
  4196. break;
  4197. }
  4198. at -= sz;
  4199. }
  4200. },
  4201. maybeSpill: function() {
  4202. if (this.children.length <= 10) return;
  4203. var me = this;
  4204. do {
  4205. var spilled = me.children.splice(me.children.length - 5, 5);
  4206. var sibling = new BranchChunk(spilled);
  4207. if (!me.parent) { // Become the parent node
  4208. var copy = new BranchChunk(me.children);
  4209. copy.parent = me;
  4210. me.children = [copy, sibling];
  4211. me = copy;
  4212. } else {
  4213. me.size -= sibling.size;
  4214. me.height -= sibling.height;
  4215. var myIndex = indexOf(me.parent.children, me);
  4216. me.parent.children.splice(myIndex + 1, 0, sibling);
  4217. }
  4218. sibling.parent = me.parent;
  4219. } while (me.children.length > 10);
  4220. me.parent.maybeSpill();
  4221. },
  4222. iterN: function(at, n, op) {
  4223. for (var i = 0, e = this.children.length; i < e; ++i) {
  4224. var child = this.children[i], sz = child.chunkSize();
  4225. if (at < sz) {
  4226. var used = Math.min(n, sz - at);
  4227. if (child.iterN(at, used, op)) return true;
  4228. if ((n -= used) == 0) break;
  4229. at = 0;
  4230. } else at -= sz;
  4231. }
  4232. }
  4233. };
  4234. var nextDocId = 0;
  4235. var Doc = CodeMirror.Doc = function(text, mode, firstLine) {
  4236. if (!(this instanceof Doc)) return new Doc(text, mode, firstLine);
  4237. if (firstLine == null) firstLine = 0;
  4238. BranchChunk.call(this, [new LeafChunk([new Line("", null)])]);
  4239. this.first = firstLine;
  4240. this.scrollTop = this.scrollLeft = 0;
  4241. this.cantEdit = false;
  4242. this.history = makeHistory();
  4243. this.cleanGeneration = 1;
  4244. this.frontier = firstLine;
  4245. var start = Pos(firstLine, 0);
  4246. this.sel = {from: start, to: start, head: start, anchor: start, shift: false, extend: false, goalColumn: null};
  4247. this.id = ++nextDocId;
  4248. this.modeOption = mode;
  4249. if (typeof text == "string") text = splitLines(text);
  4250. updateDoc(this, {from: start, to: start, text: text}, null, {head: start, anchor: start});
  4251. };
  4252. Doc.prototype = createObj(BranchChunk.prototype, {
  4253. constructor: Doc,
  4254. iter: function(from, to, op) {
  4255. if (op) this.iterN(from - this.first, to - from, op);
  4256. else this.iterN(this.first, this.first + this.size, from);
  4257. },
  4258. insert: function(at, lines) {
  4259. var height = 0;
  4260. for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height;
  4261. this.insertInner(at - this.first, lines, height);
  4262. },
  4263. remove: function(at, n) { this.removeInner(at - this.first, n); },
  4264. getValue: function(lineSep) {
  4265. var lines = getLines(this, this.first, this.first + this.size);
  4266. if (lineSep === false) return lines;
  4267. return lines.join(lineSep || "\n");
  4268. },
  4269. setValue: function(code) {
  4270. var top = Pos(this.first, 0), last = this.first + this.size - 1;
  4271. makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),
  4272. text: splitLines(code), origin: "setValue"},
  4273. {head: top, anchor: top}, true);
  4274. },
  4275. replaceRange: function(code, from, to, origin) {
  4276. from = clipPos(this, from);
  4277. to = to ? clipPos(this, to) : from;
  4278. replaceRange(this, code, from, to, origin);
  4279. },
  4280. getRange: function(from, to, lineSep) {
  4281. var lines = getBetween(this, clipPos(this, from), clipPos(this, to));
  4282. if (lineSep === false) return lines;
  4283. return lines.join(lineSep || "\n");
  4284. },
  4285. getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;},
  4286. setLine: function(line, text) {
  4287. if (isLine(this, line))
  4288. replaceRange(this, text, Pos(line, 0), clipPos(this, Pos(line)));
  4289. },
  4290. removeLine: function(line) {
  4291. if (line) replaceRange(this, "", clipPos(this, Pos(line - 1)), clipPos(this, Pos(line)));
  4292. else replaceRange(this, "", Pos(0, 0), clipPos(this, Pos(1, 0)));
  4293. },
  4294. getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},
  4295. getLineNumber: function(line) {return lineNo(line);},
  4296. getLineHandleVisualStart: function(line) {
  4297. if (typeof line == "number") line = getLine(this, line);
  4298. return visualLine(this, line);
  4299. },
  4300. lineCount: function() {return this.size;},
  4301. firstLine: function() {return this.first;},
  4302. lastLine: function() {return this.first + this.size - 1;},
  4303. clipPos: function(pos) {return clipPos(this, pos);},
  4304. getCursor: function(start) {
  4305. var sel = this.sel, pos;
  4306. if (start == null || start == "head") pos = sel.head;
  4307. else if (start == "anchor") pos = sel.anchor;
  4308. else if (start == "end" || start === false) pos = sel.to;
  4309. else pos = sel.from;
  4310. return copyPos(pos);
  4311. },
  4312. somethingSelected: function() {return !posEq(this.sel.head, this.sel.anchor);},
  4313. setCursor: docOperation(function(line, ch, extend) {
  4314. var pos = clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line);
  4315. if (extend) extendSelection(this, pos);
  4316. else setSelection(this, pos, pos);
  4317. }),
  4318. setSelection: docOperation(function(anchor, head, bias) {
  4319. setSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), bias);
  4320. }),
  4321. extendSelection: docOperation(function(from, to, bias) {
  4322. extendSelection(this, clipPos(this, from), to && clipPos(this, to), bias);
  4323. }),
  4324. getSelection: function(lineSep) {return this.getRange(this.sel.from, this.sel.to, lineSep);},
  4325. replaceSelection: function(code, collapse, origin) {
  4326. makeChange(this, {from: this.sel.from, to: this.sel.to, text: splitLines(code), origin: origin}, collapse || "around");
  4327. },
  4328. undo: docOperation(function() {makeChangeFromHistory(this, "undo");}),
  4329. redo: docOperation(function() {makeChangeFromHistory(this, "redo");}),
  4330. setExtending: function(val) {this.sel.extend = val;},
  4331. historySize: function() {
  4332. var hist = this.history;
  4333. return {undo: hist.done.length, redo: hist.undone.length};
  4334. },
  4335. clearHistory: function() {this.history = makeHistory(this.history.maxGeneration);},
  4336. markClean: function() {
  4337. this.cleanGeneration = this.changeGeneration();
  4338. },
  4339. changeGeneration: function() {
  4340. this.history.lastOp = this.history.lastOrigin = null;
  4341. return this.history.generation;
  4342. },
  4343. isClean: function (gen) {
  4344. return this.history.generation == (gen || this.cleanGeneration);
  4345. },
  4346. getHistory: function() {
  4347. return {done: copyHistoryArray(this.history.done),
  4348. undone: copyHistoryArray(this.history.undone)};
  4349. },
  4350. setHistory: function(histData) {
  4351. var hist = this.history = makeHistory(this.history.maxGeneration);
  4352. hist.done = histData.done.slice(0);
  4353. hist.undone = histData.undone.slice(0);
  4354. },
  4355. markText: function(from, to, options) {
  4356. return markText(this, clipPos(this, from), clipPos(this, to), options, "range");
  4357. },
  4358. setBookmark: function(pos, options) {
  4359. var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),
  4360. insertLeft: options && options.insertLeft};
  4361. pos = clipPos(this, pos);
  4362. return markText(this, pos, pos, realOpts, "bookmark");
  4363. },
  4364. findMarksAt: function(pos) {
  4365. pos = clipPos(this, pos);
  4366. var markers = [], spans = getLine(this, pos.line).markedSpans;
  4367. if (spans) for (var i = 0; i < spans.length; ++i) {
  4368. var span = spans[i];
  4369. if ((span.from == null || span.from <= pos.ch) &&
  4370. (span.to == null || span.to >= pos.ch))
  4371. markers.push(span.marker.parent || span.marker);
  4372. }
  4373. return markers;
  4374. },
  4375. getAllMarks: function() {
  4376. var markers = [];
  4377. this.iter(function(line) {
  4378. var sps = line.markedSpans;
  4379. if (sps) for (var i = 0; i < sps.length; ++i)
  4380. if (sps[i].from != null) markers.push(sps[i].marker);
  4381. });
  4382. return markers;
  4383. },
  4384. posFromIndex: function(off) {
  4385. var ch, lineNo = this.first;
  4386. this.iter(function(line) {
  4387. var sz = line.text.length + 1;
  4388. if (sz > off) { ch = off; return true; }
  4389. off -= sz;
  4390. ++lineNo;
  4391. });
  4392. return clipPos(this, Pos(lineNo, ch));
  4393. },
  4394. indexFromPos: function (coords) {
  4395. coords = clipPos(this, coords);
  4396. var index = coords.ch;
  4397. if (coords.line < this.first || coords.ch < 0) return 0;
  4398. this.iter(this.first, coords.line, function (line) {
  4399. index += line.text.length + 1;
  4400. });
  4401. return index;
  4402. },
  4403. copy: function(copyHistory) {
  4404. var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first);
  4405. doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;
  4406. doc.sel = {from: this.sel.from, to: this.sel.to, head: this.sel.head, anchor: this.sel.anchor,
  4407. shift: this.sel.shift, extend: false, goalColumn: this.sel.goalColumn};
  4408. if (copyHistory) {
  4409. doc.history.undoDepth = this.history.undoDepth;
  4410. doc.setHistory(this.getHistory());
  4411. }
  4412. return doc;
  4413. },
  4414. linkedDoc: function(options) {
  4415. if (!options) options = {};
  4416. var from = this.first, to = this.first + this.size;
  4417. if (options.from != null && options.from > from) from = options.from;
  4418. if (options.to != null && options.to < to) to = options.to;
  4419. var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from);
  4420. if (options.sharedHist) copy.history = this.history;
  4421. (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});
  4422. copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];
  4423. return copy;
  4424. },
  4425. unlinkDoc: function(other) {
  4426. if (other instanceof CodeMirror) other = other.doc;
  4427. if (this.linked) for (var i = 0; i < this.linked.length; ++i) {
  4428. var link = this.linked[i];
  4429. if (link.doc != other) continue;
  4430. this.linked.splice(i, 1);
  4431. other.unlinkDoc(this);
  4432. break;
  4433. }
  4434. // If the histories were shared, split them again
  4435. if (other.history == this.history) {
  4436. var splitIds = [other.id];
  4437. linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true);
  4438. other.history = makeHistory();
  4439. other.history.done = copyHistoryArray(this.history.done, splitIds);
  4440. other.history.undone = copyHistoryArray(this.history.undone, splitIds);
  4441. }
  4442. },
  4443. iterLinkedDocs: function(f) {linkedDocs(this, f);},
  4444. getMode: function() {return this.mode;},
  4445. getEditor: function() {return this.cm;}
  4446. });
  4447. Doc.prototype.eachLine = Doc.prototype.iter;
  4448. // The Doc methods that should be available on CodeMirror instances
  4449. var dontDelegate = "iter insert remove copy getEditor".split(" ");
  4450. for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)
  4451. CodeMirror.prototype[prop] = (function(method) {
  4452. return function() {return method.apply(this.doc, arguments);};
  4453. })(Doc.prototype[prop]);
  4454. eventMixin(Doc);
  4455. function linkedDocs(doc, f, sharedHistOnly) {
  4456. function propagate(doc, skip, sharedHist) {
  4457. if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) {
  4458. var rel = doc.linked[i];
  4459. if (rel.doc == skip) continue;
  4460. var shared = sharedHist && rel.sharedHist;
  4461. if (sharedHistOnly && !shared) continue;
  4462. f(rel.doc, shared);
  4463. propagate(rel.doc, doc, shared);
  4464. }
  4465. }
  4466. propagate(doc, null, true);
  4467. }
  4468. function attachDoc(cm, doc) {
  4469. if (doc.cm) throw new Error("This document is already in use.");
  4470. cm.doc = doc;
  4471. doc.cm = cm;
  4472. estimateLineHeights(cm);
  4473. loadMode(cm);
  4474. if (!cm.options.lineWrapping) computeMaxLength(cm);
  4475. cm.options.mode = doc.modeOption;
  4476. regChange(cm);
  4477. }
  4478. // LINE UTILITIES
  4479. function getLine(chunk, n) {
  4480. n -= chunk.first;
  4481. while (!chunk.lines) {
  4482. for (var i = 0;; ++i) {
  4483. var child = chunk.children[i], sz = child.chunkSize();
  4484. if (n < sz) { chunk = child; break; }
  4485. n -= sz;
  4486. }
  4487. }
  4488. return chunk.lines[n];
  4489. }
  4490. function getBetween(doc, start, end) {
  4491. var out = [], n = start.line;
  4492. doc.iter(start.line, end.line + 1, function(line) {
  4493. var text = line.text;
  4494. if (n == end.line) text = text.slice(0, end.ch);
  4495. if (n == start.line) text = text.slice(start.ch);
  4496. out.push(text);
  4497. ++n;
  4498. });
  4499. return out;
  4500. }
  4501. function getLines(doc, from, to) {
  4502. var out = [];
  4503. doc.iter(from, to, function(line) { out.push(line.text); });
  4504. return out;
  4505. }
  4506. function updateLineHeight(line, height) {
  4507. var diff = height - line.height;
  4508. for (var n = line; n; n = n.parent) n.height += diff;
  4509. }
  4510. function lineNo(line) {
  4511. if (line.parent == null) return null;
  4512. var cur = line.parent, no = indexOf(cur.lines, line);
  4513. for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
  4514. for (var i = 0;; ++i) {
  4515. if (chunk.children[i] == cur) break;
  4516. no += chunk.children[i].chunkSize();
  4517. }
  4518. }
  4519. return no + cur.first;
  4520. }
  4521. function lineAtHeight(chunk, h) {
  4522. var n = chunk.first;
  4523. outer: do {
  4524. for (var i = 0, e = chunk.children.length; i < e; ++i) {
  4525. var child = chunk.children[i], ch = child.height;
  4526. if (h < ch) { chunk = child; continue outer; }
  4527. h -= ch;
  4528. n += child.chunkSize();
  4529. }
  4530. return n;
  4531. } while (!chunk.lines);
  4532. for (var i = 0, e = chunk.lines.length; i < e; ++i) {
  4533. var line = chunk.lines[i], lh = line.height;
  4534. if (h < lh) break;
  4535. h -= lh;
  4536. }
  4537. return n + i;
  4538. }
  4539. function heightAtLine(cm, lineObj) {
  4540. lineObj = visualLine(cm.doc, lineObj);
  4541. var h = 0, chunk = lineObj.parent;
  4542. for (var i = 0; i < chunk.lines.length; ++i) {
  4543. var line = chunk.lines[i];
  4544. if (line == lineObj) break;
  4545. else h += line.height;
  4546. }
  4547. for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {
  4548. for (var i = 0; i < p.children.length; ++i) {
  4549. var cur = p.children[i];
  4550. if (cur == chunk) break;
  4551. else h += cur.height;
  4552. }
  4553. }
  4554. return h;
  4555. }
  4556. function getOrder(line) {
  4557. var order = line.order;
  4558. if (order == null) order = line.order = bidiOrdering(line.text);
  4559. return order;
  4560. }
  4561. // HISTORY
  4562. function makeHistory(startGen) {
  4563. return {
  4564. // Arrays of history events. Doing something adds an event to
  4565. // done and clears undo. Undoing moves events from done to
  4566. // undone, redoing moves them in the other direction.
  4567. done: [], undone: [], undoDepth: Infinity,
  4568. // Used to track when changes can be merged into a single undo
  4569. // event
  4570. lastTime: 0, lastOp: null, lastOrigin: null,
  4571. // Used by the isClean() method
  4572. generation: startGen || 1, maxGeneration: startGen || 1
  4573. };
  4574. }
  4575. function attachLocalSpans(doc, change, from, to) {
  4576. var existing = change["spans_" + doc.id], n = 0;
  4577. doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) {
  4578. if (line.markedSpans)
  4579. (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans;
  4580. ++n;
  4581. });
  4582. }
  4583. function historyChangeFromChange(doc, change) {
  4584. var from = { line: change.from.line, ch: change.from.ch };
  4585. var histChange = {from: from, to: changeEnd(change), text: getBetween(doc, change.from, change.to)};
  4586. attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);
  4587. linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true);
  4588. return histChange;
  4589. }
  4590. function addToHistory(doc, change, selAfter, opId) {
  4591. var hist = doc.history;
  4592. hist.undone.length = 0;
  4593. var time = +new Date, cur = lst(hist.done);
  4594. if (cur &&
  4595. (hist.lastOp == opId ||
  4596. hist.lastOrigin == change.origin && change.origin &&
  4597. ((change.origin.charAt(0) == "+" && doc.cm && hist.lastTime > time - doc.cm.options.historyEventDelay) ||
  4598. change.origin.charAt(0) == "*"))) {
  4599. // Merge this change into the last event
  4600. var last = lst(cur.changes);
  4601. if (posEq(change.from, change.to) && posEq(change.from, last.to)) {
  4602. // Optimized case for simple insertion -- don't want to add
  4603. // new changesets for every character typed
  4604. last.to = changeEnd(change);
  4605. } else {
  4606. // Add new sub-event
  4607. cur.changes.push(historyChangeFromChange(doc, change));
  4608. }
  4609. cur.anchorAfter = selAfter.anchor; cur.headAfter = selAfter.head;
  4610. } else {
  4611. // Can not be merged, start a new event.
  4612. cur = {changes: [historyChangeFromChange(doc, change)],
  4613. generation: hist.generation,
  4614. anchorBefore: doc.sel.anchor, headBefore: doc.sel.head,
  4615. anchorAfter: selAfter.anchor, headAfter: selAfter.head};
  4616. hist.done.push(cur);
  4617. hist.generation = ++hist.maxGeneration;
  4618. while (hist.done.length > hist.undoDepth)
  4619. hist.done.shift();
  4620. }
  4621. hist.lastTime = time;
  4622. hist.lastOp = opId;
  4623. hist.lastOrigin = change.origin;
  4624. }
  4625. function removeClearedSpans(spans) {
  4626. if (!spans) return null;
  4627. for (var i = 0, out; i < spans.length; ++i) {
  4628. if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); }
  4629. else if (out) out.push(spans[i]);
  4630. }
  4631. return !out ? spans : out.length ? out : null;
  4632. }
  4633. function getOldSpans(doc, change) {
  4634. var found = change["spans_" + doc.id];
  4635. if (!found) return null;
  4636. for (var i = 0, nw = []; i < change.text.length; ++i)
  4637. nw.push(removeClearedSpans(found[i]));
  4638. return nw;
  4639. }
  4640. // Used both to provide a JSON-safe object in .getHistory, and, when
  4641. // detaching a document, to split the history in two
  4642. function copyHistoryArray(events, newGroup) {
  4643. for (var i = 0, copy = []; i < events.length; ++i) {
  4644. var event = events[i], changes = event.changes, newChanges = [];
  4645. copy.push({changes: newChanges, anchorBefore: event.anchorBefore, headBefore: event.headBefore,
  4646. anchorAfter: event.anchorAfter, headAfter: event.headAfter});
  4647. for (var j = 0; j < changes.length; ++j) {
  4648. var change = changes[j], m;
  4649. newChanges.push({from: change.from, to: change.to, text: change.text});
  4650. if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\d+)$/)) {
  4651. if (indexOf(newGroup, Number(m[1])) > -1) {
  4652. lst(newChanges)[prop] = change[prop];
  4653. delete change[prop];
  4654. }
  4655. }
  4656. }
  4657. }
  4658. return copy;
  4659. }
  4660. // Rebasing/resetting history to deal with externally-sourced changes
  4661. function rebaseHistSel(pos, from, to, diff) {
  4662. if (to < pos.line) {
  4663. pos.line += diff;
  4664. } else if (from < pos.line) {
  4665. pos.line = from;
  4666. pos.ch = 0;
  4667. }
  4668. }
  4669. // Tries to rebase an array of history events given a change in the
  4670. // document. If the change touches the same lines as the event, the
  4671. // event, and everything 'behind' it, is discarded. If the change is
  4672. // before the event, the event's positions are updated. Uses a
  4673. // copy-on-write scheme for the positions, to avoid having to
  4674. // reallocate them all on every rebase, but also avoid problems with
  4675. // shared position objects being unsafely updated.
  4676. function rebaseHistArray(array, from, to, diff) {
  4677. for (var i = 0; i < array.length; ++i) {
  4678. var sub = array[i], ok = true;
  4679. for (var j = 0; j < sub.changes.length; ++j) {
  4680. var cur = sub.changes[j];
  4681. if (!sub.copied) { cur.from = copyPos(cur.from); cur.to = copyPos(cur.to); }
  4682. if (to < cur.from.line) {
  4683. cur.from.line += diff;
  4684. cur.to.line += diff;
  4685. } else if (from <= cur.to.line) {
  4686. ok = false;
  4687. break;
  4688. }
  4689. }
  4690. if (!sub.copied) {
  4691. sub.anchorBefore = copyPos(sub.anchorBefore); sub.headBefore = copyPos(sub.headBefore);
  4692. sub.anchorAfter = copyPos(sub.anchorAfter); sub.readAfter = copyPos(sub.headAfter);
  4693. sub.copied = true;
  4694. }
  4695. if (!ok) {
  4696. array.splice(0, i + 1);
  4697. i = 0;
  4698. } else {
  4699. rebaseHistSel(sub.anchorBefore); rebaseHistSel(sub.headBefore);
  4700. rebaseHistSel(sub.anchorAfter); rebaseHistSel(sub.headAfter);
  4701. }
  4702. }
  4703. }
  4704. function rebaseHist(hist, change) {
  4705. var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;
  4706. rebaseHistArray(hist.done, from, to, diff);
  4707. rebaseHistArray(hist.undone, from, to, diff);
  4708. }
  4709. // EVENT OPERATORS
  4710. function stopMethod() {e_stop(this);}
  4711. // Ensure an event has a stop method.
  4712. function addStop(event) {
  4713. if (!event.stop) event.stop = stopMethod;
  4714. return event;
  4715. }
  4716. function e_preventDefault(e) {
  4717. if (e.preventDefault) e.preventDefault();
  4718. else e.returnValue = false;
  4719. }
  4720. function e_stopPropagation(e) {
  4721. if (e.stopPropagation) e.stopPropagation();
  4722. else e.cancelBubble = true;
  4723. }
  4724. function e_defaultPrevented(e) {
  4725. return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false;
  4726. }
  4727. function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
  4728. CodeMirror.e_stop = e_stop;
  4729. CodeMirror.e_preventDefault = e_preventDefault;
  4730. CodeMirror.e_stopPropagation = e_stopPropagation;
  4731. function e_target(e) {return e.target || e.srcElement;}
  4732. function e_button(e) {
  4733. var b = e.which;
  4734. if (b == null) {
  4735. if (e.button & 1) b = 1;
  4736. else if (e.button & 2) b = 3;
  4737. else if (e.button & 4) b = 2;
  4738. }
  4739. if (mac && e.ctrlKey && b == 1) b = 3;
  4740. return b;
  4741. }
  4742. // EVENT HANDLING
  4743. function on(emitter, type, f) {
  4744. if (emitter.addEventListener)
  4745. emitter.addEventListener(type, f, false);
  4746. else if (emitter.attachEvent)
  4747. emitter.attachEvent("on" + type, f);
  4748. else {
  4749. var map = emitter._handlers || (emitter._handlers = {});
  4750. var arr = map[type] || (map[type] = []);
  4751. arr.push(f);
  4752. }
  4753. }
  4754. function off(emitter, type, f) {
  4755. if (emitter.removeEventListener)
  4756. emitter.removeEventListener(type, f, false);
  4757. else if (emitter.detachEvent)
  4758. emitter.detachEvent("on" + type, f);
  4759. else {
  4760. var arr = emitter._handlers && emitter._handlers[type];
  4761. if (!arr) return;
  4762. for (var i = 0; i < arr.length; ++i)
  4763. if (arr[i] == f) { arr.splice(i, 1); break; }
  4764. }
  4765. }
  4766. function signal(emitter, type /*, values...*/) {
  4767. var arr = emitter._handlers && emitter._handlers[type];
  4768. if (!arr) return;
  4769. var args = Array.prototype.slice.call(arguments, 2);
  4770. for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args);
  4771. }
  4772. var delayedCallbacks, delayedCallbackDepth = 0;
  4773. function signalLater(emitter, type /*, values...*/) {
  4774. var arr = emitter._handlers && emitter._handlers[type];
  4775. if (!arr) return;
  4776. var args = Array.prototype.slice.call(arguments, 2);
  4777. if (!delayedCallbacks) {
  4778. ++delayedCallbackDepth;
  4779. delayedCallbacks = [];
  4780. setTimeout(fireDelayed, 0);
  4781. }
  4782. function bnd(f) {return function(){f.apply(null, args);};};
  4783. for (var i = 0; i < arr.length; ++i)
  4784. delayedCallbacks.push(bnd(arr[i]));
  4785. }
  4786. function signalDOMEvent(cm, e, override) {
  4787. signal(cm, override || e.type, cm, e);
  4788. return e_defaultPrevented(e) || e.codemirrorIgnore;
  4789. }
  4790. function fireDelayed() {
  4791. --delayedCallbackDepth;
  4792. var delayed = delayedCallbacks;
  4793. delayedCallbacks = null;
  4794. for (var i = 0; i < delayed.length; ++i) delayed[i]();
  4795. }
  4796. function hasHandler(emitter, type) {
  4797. var arr = emitter._handlers && emitter._handlers[type];
  4798. return arr && arr.length > 0;
  4799. }
  4800. CodeMirror.on = on; CodeMirror.off = off; CodeMirror.signal = signal;
  4801. function eventMixin(ctor) {
  4802. ctor.prototype.on = function(type, f) {on(this, type, f);};
  4803. ctor.prototype.off = function(type, f) {off(this, type, f);};
  4804. }
  4805. // MISC UTILITIES
  4806. // Number of pixels added to scroller and sizer to hide scrollbar
  4807. var scrollerCutOff = 30;
  4808. // Returned or thrown by various protocols to signal 'I'm not
  4809. // handling this'.
  4810. var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}};
  4811. function Delayed() {this.id = null;}
  4812. Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}};
  4813. // Counts the column offset in a string, taking tabs into account.
  4814. // Used mostly to find indentation.
  4815. function countColumn(string, end, tabSize, startIndex, startValue) {
  4816. if (end == null) {
  4817. end = string.search(/[^\s\u00a0]/);
  4818. if (end == -1) end = string.length;
  4819. }
  4820. for (var i = startIndex || 0, n = startValue || 0; i < end; ++i) {
  4821. if (string.charAt(i) == "\t") n += tabSize - (n % tabSize);
  4822. else ++n;
  4823. }
  4824. return n;
  4825. }
  4826. CodeMirror.countColumn = countColumn;
  4827. var spaceStrs = [""];
  4828. function spaceStr(n) {
  4829. while (spaceStrs.length <= n)
  4830. spaceStrs.push(lst(spaceStrs) + " ");
  4831. return spaceStrs[n];
  4832. }
  4833. function lst(arr) { return arr[arr.length-1]; }
  4834. function selectInput(node) {
  4835. if (ios) { // Mobile Safari apparently has a bug where select() is broken.
  4836. node.selectionStart = 0;
  4837. node.selectionEnd = node.value.length;
  4838. } else {
  4839. // Suppress mysterious IE10 errors
  4840. try { node.select(); }
  4841. catch(_e) {}
  4842. }
  4843. }
  4844. function indexOf(collection, elt) {
  4845. if (collection.indexOf) return collection.indexOf(elt);
  4846. for (var i = 0, e = collection.length; i < e; ++i)
  4847. if (collection[i] == elt) return i;
  4848. return -1;
  4849. }
  4850. function createObj(base, props) {
  4851. function Obj() {}
  4852. Obj.prototype = base;
  4853. var inst = new Obj();
  4854. if (props) copyObj(props, inst);
  4855. return inst;
  4856. }
  4857. function copyObj(obj, target) {
  4858. if (!target) target = {};
  4859. for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop];
  4860. return target;
  4861. }
  4862. function emptyArray(size) {
  4863. for (var a = [], i = 0; i < size; ++i) a.push(undefined);
  4864. return a;
  4865. }
  4866. function bind(f) {
  4867. var args = Array.prototype.slice.call(arguments, 1);
  4868. return function(){return f.apply(null, args);};
  4869. }
  4870. var nonASCIISingleCaseWordChar = /[\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;
  4871. function isWordChar(ch) {
  4872. return /\w/.test(ch) || ch > "\x80" &&
  4873. (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch));
  4874. }
  4875. function isEmpty(obj) {
  4876. for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false;
  4877. return true;
  4878. }
  4879. var isExtendingChar = /[\u0300-\u036F\u0483-\u0487\u0488-\u0489\u0591-\u05BD\u05BF\u05C1-\u05C2\u05C4-\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7-\u06E8\u06EA-\u06ED\uA66F\uA670-\uA672\uA674-\uA67D\uA69F\udc00-\udfff]/;
  4880. // DOM UTILITIES
  4881. function elt(tag, content, className, style) {
  4882. var e = document.createElement(tag);
  4883. if (className) e.className = className;
  4884. if (style) e.style.cssText = style;
  4885. if (typeof content == "string") setTextContent(e, content);
  4886. else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]);
  4887. return e;
  4888. }
  4889. function removeChildren(e) {
  4890. for (var count = e.childNodes.length; count > 0; --count)
  4891. e.removeChild(e.firstChild);
  4892. return e;
  4893. }
  4894. function removeChildrenAndAdd(parent, e) {
  4895. return removeChildren(parent).appendChild(e);
  4896. }
  4897. function setTextContent(e, str) {
  4898. if (ie_lt9) {
  4899. e.innerHTML = "";
  4900. e.appendChild(document.createTextNode(str));
  4901. } else e.textContent = str;
  4902. }
  4903. function getRect(node) {
  4904. return node.getBoundingClientRect();
  4905. }
  4906. CodeMirror.replaceGetRect = function(f) { getRect = f; };
  4907. // FEATURE DETECTION
  4908. // Detect drag-and-drop
  4909. var dragAndDrop = function() {
  4910. // There is *some* kind of drag-and-drop support in IE6-8, but I
  4911. // couldn't get it to work yet.
  4912. if (ie_lt9) return false;
  4913. var div = elt('div');
  4914. return "draggable" in div || "dragDrop" in div;
  4915. }();
  4916. // For a reason I have yet to figure out, some browsers disallow
  4917. // word wrapping between certain characters *only* if a new inline
  4918. // element is started between them. This makes it hard to reliably
  4919. // measure the position of things, since that requires inserting an
  4920. // extra span. This terribly fragile set of tests matches the
  4921. // character combinations that suffer from this phenomenon on the
  4922. // various browsers.
  4923. function spanAffectsWrapping() { return false; }
  4924. if (gecko) // Only for "$'"
  4925. spanAffectsWrapping = function(str, i) {
  4926. return str.charCodeAt(i - 1) == 36 && str.charCodeAt(i) == 39;
  4927. };
  4928. else if (safari && !/Version\/([6-9]|\d\d)\b/.test(navigator.userAgent))
  4929. spanAffectsWrapping = function(str, i) {
  4930. return /\-[^ \-?]|\?[^ !\'\"\),.\-\/:;\?\]\}]/.test(str.slice(i - 1, i + 1));
  4931. };
  4932. else if (webkit && !/Chrome\/(?:29|[3-9]\d|\d\d\d)\./.test(navigator.userAgent))
  4933. spanAffectsWrapping = function(str, i) {
  4934. if (i > 1 && str.charCodeAt(i - 1) == 45) {
  4935. if (/\w/.test(str.charAt(i - 2)) && /[^\-?\.]/.test(str.charAt(i))) return true;
  4936. if (i > 2 && /[\d\.,]/.test(str.charAt(i - 2)) && /[\d\.,]/.test(str.charAt(i))) return false;
  4937. }
  4938. return /[~!#%&*)=+}\]|\"\.>,:;][({[<]|-[^\-?\.\u2010-\u201f\u2026]|\?[\w~`@#$%\^&*(_=+{[|><]|…[\w~`@#$%\^&*(_=+{[><]/.test(str.slice(i - 1, i + 1));
  4939. };
  4940. var knownScrollbarWidth;
  4941. function scrollbarWidth(measure) {
  4942. if (knownScrollbarWidth != null) return knownScrollbarWidth;
  4943. var test = elt("div", null, null, "width: 50px; height: 50px; overflow-x: scroll");
  4944. removeChildrenAndAdd(measure, test);
  4945. if (test.offsetWidth)
  4946. knownScrollbarWidth = test.offsetHeight - test.clientHeight;
  4947. return knownScrollbarWidth || 0;
  4948. }
  4949. var zwspSupported;
  4950. function zeroWidthElement(measure) {
  4951. if (zwspSupported == null) {
  4952. var test = elt("span", "\u200b");
  4953. removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")]));
  4954. if (measure.firstChild.offsetHeight != 0)
  4955. zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !ie_lt8;
  4956. }
  4957. if (zwspSupported) return elt("span", "\u200b");
  4958. else return elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px");
  4959. }
  4960. // See if "".split is the broken IE version, if so, provide an
  4961. // alternative way to split lines.
  4962. var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) {
  4963. var pos = 0, result = [], l = string.length;
  4964. while (pos <= l) {
  4965. var nl = string.indexOf("\n", pos);
  4966. if (nl == -1) nl = string.length;
  4967. var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl);
  4968. var rt = line.indexOf("\r");
  4969. if (rt != -1) {
  4970. result.push(line.slice(0, rt));
  4971. pos += rt + 1;
  4972. } else {
  4973. result.push(line);
  4974. pos = nl + 1;
  4975. }
  4976. }
  4977. return result;
  4978. } : function(string){return string.split(/\r\n?|\n/);};
  4979. CodeMirror.splitLines = splitLines;
  4980. var hasSelection = window.getSelection ? function(te) {
  4981. try { return te.selectionStart != te.selectionEnd; }
  4982. catch(e) { return false; }
  4983. } : function(te) {
  4984. try {var range = te.ownerDocument.selection.createRange();}
  4985. catch(e) {}
  4986. if (!range || range.parentElement() != te) return false;
  4987. return range.compareEndPoints("StartToEnd", range) != 0;
  4988. };
  4989. var hasCopyEvent = (function() {
  4990. var e = elt("div");
  4991. if ("oncopy" in e) return true;
  4992. e.setAttribute("oncopy", "return;");
  4993. return typeof e.oncopy == 'function';
  4994. })();
  4995. // KEY NAMING
  4996. var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
  4997. 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
  4998. 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
  4999. 46: "Delete", 59: ";", 91: "Mod", 92: "Mod", 93: "Mod", 109: "-", 107: "=", 127: "Delete",
  5000. 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
  5001. 221: "]", 222: "'", 63276: "PageUp", 63277: "PageDown", 63275: "End", 63273: "Home",
  5002. 63234: "Left", 63232: "Up", 63235: "Right", 63233: "Down", 63302: "Insert", 63272: "Delete"};
  5003. CodeMirror.keyNames = keyNames;
  5004. (function() {
  5005. // Number keys
  5006. for (var i = 0; i < 10; i++) keyNames[i + 48] = String(i);
  5007. // Alphabetic keys
  5008. for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);
  5009. // Function keys
  5010. for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
  5011. })();
  5012. // BIDI HELPERS
  5013. function iterateBidiSections(order, from, to, f) {
  5014. if (!order) return f(from, to, "ltr");
  5015. var found = false;
  5016. for (var i = 0; i < order.length; ++i) {
  5017. var part = order[i];
  5018. if (part.from < to && part.to > from || from == to && part.to == from) {
  5019. f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr");
  5020. found = true;
  5021. }
  5022. }
  5023. if (!found) f(from, to, "ltr");
  5024. }
  5025. function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }
  5026. function bidiRight(part) { return part.level % 2 ? part.from : part.to; }
  5027. function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; }
  5028. function lineRight(line) {
  5029. var order = getOrder(line);
  5030. if (!order) return line.text.length;
  5031. return bidiRight(lst(order));
  5032. }
  5033. function lineStart(cm, lineN) {
  5034. var line = getLine(cm.doc, lineN);
  5035. var visual = visualLine(cm.doc, line);
  5036. if (visual != line) lineN = lineNo(visual);
  5037. var order = getOrder(visual);
  5038. var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual);
  5039. return Pos(lineN, ch);
  5040. }
  5041. function lineEnd(cm, lineN) {
  5042. var merged, line;
  5043. while (merged = collapsedSpanAtEnd(line = getLine(cm.doc, lineN)))
  5044. lineN = merged.find().to.line;
  5045. var order = getOrder(line);
  5046. var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line);
  5047. return Pos(lineN, ch);
  5048. }
  5049. function compareBidiLevel(order, a, b) {
  5050. var linedir = order[0].level;
  5051. if (a == linedir) return true;
  5052. if (b == linedir) return false;
  5053. return a < b;
  5054. }
  5055. var bidiOther;
  5056. function getBidiPartAt(order, pos) {
  5057. for (var i = 0, found; i < order.length; ++i) {
  5058. var cur = order[i];
  5059. if (cur.from < pos && cur.to > pos) { bidiOther = null; return i; }
  5060. if (cur.from == pos || cur.to == pos) {
  5061. if (found == null) {
  5062. found = i;
  5063. } else if (compareBidiLevel(order, cur.level, order[found].level)) {
  5064. bidiOther = found;
  5065. return i;
  5066. } else {
  5067. bidiOther = i;
  5068. return found;
  5069. }
  5070. }
  5071. }
  5072. bidiOther = null;
  5073. return found;
  5074. }
  5075. function moveInLine(line, pos, dir, byUnit) {
  5076. if (!byUnit) return pos + dir;
  5077. do pos += dir;
  5078. while (pos > 0 && isExtendingChar.test(line.text.charAt(pos)));
  5079. return pos;
  5080. }
  5081. // This is somewhat involved. It is needed in order to move
  5082. // 'visually' through bi-directional text -- i.e., pressing left
  5083. // should make the cursor go left, even when in RTL text. The
  5084. // tricky part is the 'jumps', where RTL and LTR text touch each
  5085. // other. This often requires the cursor offset to move more than
  5086. // one unit, in order to visually move one unit.
  5087. function moveVisually(line, start, dir, byUnit) {
  5088. var bidi = getOrder(line);
  5089. if (!bidi) return moveLogically(line, start, dir, byUnit);
  5090. var pos = getBidiPartAt(bidi, start), part = bidi[pos];
  5091. var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit);
  5092. for (;;) {
  5093. if (target > part.from && target < part.to) return target;
  5094. if (target == part.from || target == part.to) {
  5095. if (getBidiPartAt(bidi, target) == pos) return target;
  5096. part = bidi[pos += dir];
  5097. return (dir > 0) == part.level % 2 ? part.to : part.from;
  5098. } else {
  5099. part = bidi[pos += dir];
  5100. if (!part) return null;
  5101. if ((dir > 0) == part.level % 2)
  5102. target = moveInLine(line, part.to, -1, byUnit);
  5103. else
  5104. target = moveInLine(line, part.from, 1, byUnit);
  5105. }
  5106. }
  5107. }
  5108. function moveLogically(line, start, dir, byUnit) {
  5109. var target = start + dir;
  5110. if (byUnit) while (target > 0 && isExtendingChar.test(line.text.charAt(target))) target += dir;
  5111. return target < 0 || target > line.text.length ? null : target;
  5112. }
  5113. // Bidirectional ordering algorithm
  5114. // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm
  5115. // that this (partially) implements.
  5116. // One-char codes used for character types:
  5117. // L (L): Left-to-Right
  5118. // R (R): Right-to-Left
  5119. // r (AL): Right-to-Left Arabic
  5120. // 1 (EN): European Number
  5121. // + (ES): European Number Separator
  5122. // % (ET): European Number Terminator
  5123. // n (AN): Arabic Number
  5124. // , (CS): Common Number Separator
  5125. // m (NSM): Non-Spacing Mark
  5126. // b (BN): Boundary Neutral
  5127. // s (B): Paragraph Separator
  5128. // t (S): Segment Separator
  5129. // w (WS): Whitespace
  5130. // N (ON): Other Neutrals
  5131. // Returns null if characters are ordered as they appear
  5132. // (left-to-right), or an array of sections ({from, to, level}
  5133. // objects) in the order in which they occur visually.
  5134. var bidiOrdering = (function() {
  5135. // Character types for codepoints 0 to 0xff
  5136. var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLL";
  5137. // Character types for codepoints 0x600 to 0x6ff
  5138. var arabicTypes = "rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmmrrrrrrrrrrrrrrrrrr";
  5139. function charType(code) {
  5140. if (code <= 0xff) return lowTypes.charAt(code);
  5141. else if (0x590 <= code && code <= 0x5f4) return "R";
  5142. else if (0x600 <= code && code <= 0x6ff) return arabicTypes.charAt(code - 0x600);
  5143. else if (0x700 <= code && code <= 0x8ac) return "r";
  5144. else return "L";
  5145. }
  5146. var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;
  5147. var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;
  5148. // Browsers seem to always treat the boundaries of block elements as being L.
  5149. var outerType = "L";
  5150. return function(str) {
  5151. if (!bidiRE.test(str)) return false;
  5152. var len = str.length, types = [];
  5153. for (var i = 0, type; i < len; ++i)
  5154. types.push(type = charType(str.charCodeAt(i)));
  5155. // W1. Examine each non-spacing mark (NSM) in the level run, and
  5156. // change the type of the NSM to the type of the previous
  5157. // character. If the NSM is at the start of the level run, it will
  5158. // get the type of sor.
  5159. for (var i = 0, prev = outerType; i < len; ++i) {
  5160. var type = types[i];
  5161. if (type == "m") types[i] = prev;
  5162. else prev = type;
  5163. }
  5164. // W2. Search backwards from each instance of a European number
  5165. // until the first strong type (R, L, AL, or sor) is found. If an
  5166. // AL is found, change the type of the European number to Arabic
  5167. // number.
  5168. // W3. Change all ALs to R.
  5169. for (var i = 0, cur = outerType; i < len; ++i) {
  5170. var type = types[i];
  5171. if (type == "1" && cur == "r") types[i] = "n";
  5172. else if (isStrong.test(type)) { cur = type; if (type == "r") types[i] = "R"; }
  5173. }
  5174. // W4. A single European separator between two European numbers
  5175. // changes to a European number. A single common separator between
  5176. // two numbers of the same type changes to that type.
  5177. for (var i = 1, prev = types[0]; i < len - 1; ++i) {
  5178. var type = types[i];
  5179. if (type == "+" && prev == "1" && types[i+1] == "1") types[i] = "1";
  5180. else if (type == "," && prev == types[i+1] &&
  5181. (prev == "1" || prev == "n")) types[i] = prev;
  5182. prev = type;
  5183. }
  5184. // W5. A sequence of European terminators adjacent to European
  5185. // numbers changes to all European numbers.
  5186. // W6. Otherwise, separators and terminators change to Other
  5187. // Neutral.
  5188. for (var i = 0; i < len; ++i) {
  5189. var type = types[i];
  5190. if (type == ",") types[i] = "N";
  5191. else if (type == "%") {
  5192. for (var end = i + 1; end < len && types[end] == "%"; ++end) {}
  5193. var replace = (i && types[i-1] == "!") || (end < len - 1 && types[end] == "1") ? "1" : "N";
  5194. for (var j = i; j < end; ++j) types[j] = replace;
  5195. i = end - 1;
  5196. }
  5197. }
  5198. // W7. Search backwards from each instance of a European number
  5199. // until the first strong type (R, L, or sor) is found. If an L is
  5200. // found, then change the type of the European number to L.
  5201. for (var i = 0, cur = outerType; i < len; ++i) {
  5202. var type = types[i];
  5203. if (cur == "L" && type == "1") types[i] = "L";
  5204. else if (isStrong.test(type)) cur = type;
  5205. }
  5206. // N1. A sequence of neutrals takes the direction of the
  5207. // surrounding strong text if the text on both sides has the same
  5208. // direction. European and Arabic numbers act as if they were R in
  5209. // terms of their influence on neutrals. Start-of-level-run (sor)
  5210. // and end-of-level-run (eor) are used at level run boundaries.
  5211. // N2. Any remaining neutrals take the embedding direction.
  5212. for (var i = 0; i < len; ++i) {
  5213. if (isNeutral.test(types[i])) {
  5214. for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {}
  5215. var before = (i ? types[i-1] : outerType) == "L";
  5216. var after = (end < len - 1 ? types[end] : outerType) == "L";
  5217. var replace = before || after ? "L" : "R";
  5218. for (var j = i; j < end; ++j) types[j] = replace;
  5219. i = end - 1;
  5220. }
  5221. }
  5222. // Here we depart from the documented algorithm, in order to avoid
  5223. // building up an actual levels array. Since there are only three
  5224. // levels (0, 1, 2) in an implementation that doesn't take
  5225. // explicit embedding into account, we can build up the order on
  5226. // the fly, without following the level-based algorithm.
  5227. var order = [], m;
  5228. for (var i = 0; i < len;) {
  5229. if (countsAsLeft.test(types[i])) {
  5230. var start = i;
  5231. for (++i; i < len && countsAsLeft.test(types[i]); ++i) {}
  5232. order.push({from: start, to: i, level: 0});
  5233. } else {
  5234. var pos = i, at = order.length;
  5235. for (++i; i < len && types[i] != "L"; ++i) {}
  5236. for (var j = pos; j < i;) {
  5237. if (countsAsNum.test(types[j])) {
  5238. if (pos < j) order.splice(at, 0, {from: pos, to: j, level: 1});
  5239. var nstart = j;
  5240. for (++j; j < i && countsAsNum.test(types[j]); ++j) {}
  5241. order.splice(at, 0, {from: nstart, to: j, level: 2});
  5242. pos = j;
  5243. } else ++j;
  5244. }
  5245. if (pos < i) order.splice(at, 0, {from: pos, to: i, level: 1});
  5246. }
  5247. }
  5248. if (order[0].level == 1 && (m = str.match(/^\s+/))) {
  5249. order[0].from = m[0].length;
  5250. order.unshift({from: 0, to: m[0].length, level: 0});
  5251. }
  5252. if (lst(order).level == 1 && (m = str.match(/\s+$/))) {
  5253. lst(order).to -= m[0].length;
  5254. order.push({from: len - m[0].length, to: len, level: 0});
  5255. }
  5256. if (order[0].level != lst(order).level)
  5257. order.push({from: len, to: len, level: order[0].level});
  5258. return order;
  5259. };
  5260. })();
  5261. // THE END
  5262. CodeMirror.version = "3.16.0";
  5263. return CodeMirror;
  5264. })();