mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 21:28:00 +01:00
Formatting fixes.
This commit is contained in:
@@ -78,12 +78,12 @@ function Editor() //{{{
|
|||||||
let keyword = "[^" + nonkw + "]";
|
let keyword = "[^" + nonkw + "]";
|
||||||
let nonkeyword = "[" + nonkw + "]";
|
let nonkeyword = "[" + nonkw + "]";
|
||||||
|
|
||||||
let full_id = keyword + "+";
|
let fullId = keyword + "+";
|
||||||
let end_id = nonkeyword + "+" + keyword;
|
let endId = nonkeyword + "+" + keyword;
|
||||||
let non_id = "\\S*" + nonkeyword;
|
let nonId = "\\S*" + nonkeyword;
|
||||||
|
|
||||||
// Used in addAbbrevation and expandAbbreviation
|
// Used in addAbbrevation and expandAbbreviation
|
||||||
var abbrevmatch = full_id + "|" + end_id + "|" + non_id;
|
var abbrevmatch = fullId + "|" + endId + "|" + nonId;
|
||||||
|
|
||||||
function getEditor() liberator.focus;
|
function getEditor() liberator.focus;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user