codemirror.js 224 KB

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