diff options
author | portix <none@none> | 2013-02-19 13:26:56 +0100 |
---|---|---|
committer | portix <none@none> | 2013-02-19 13:26:56 +0100 |
commit | a4ff0b6bb050cfc6533a0f2f0bed9102009ad176 (patch) | |
tree | 7b4fb36339633d785fafb175b07bc6e3e10c2764 /scripts | |
parent | 375532127bde7b905e1e4022b17d9714cc6b157d (diff) | |
download | dwb-a4ff0b6bb050cfc6533a0f2f0bed9102009ad176.zip |
Implementing clipboard functions
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/enums.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/enums.js b/scripts/lib/enums.js index 1bf464c1..e599544f 100644 --- a/scripts/lib/enums.js +++ b/scripts/lib/enums.js @@ -70,3 +70,7 @@ const Modes = { InsertMode : 1<<1, CommandMode : 1<<2 }; +const Selection = { + primary : 1, + clipboard : 2 +}; |