Skip to content

Commit

Permalink
fix: rename everything
Browse files Browse the repository at this point in the history
BREAKING CHANGE: rename everything
  • Loading branch information
UziTech committed Feb 15, 2020
1 parent 042d4f0 commit d643a15
Show file tree
Hide file tree
Showing 45 changed files with 1,087 additions and 1,088 deletions.
2 changes: 1 addition & 1 deletion .jsdocrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"source": {
"include": ["lib/atom-xterm.js","lib/atom-xterm-model.js"]
"include": ["lib/x-terminal.js","lib/model.js"]
},
"opts": {
"destination": "./docs/"
Expand Down
4 changes: 2 additions & 2 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"selector-type-no-unknown": [
true, {
ignoreTypes: [
"atom-xterm",
"atom-xterm-profile"
"x-terminal",
"x-terminal-profile"
]
}
]
Expand Down
1 change: 0 additions & 1 deletion dist/lib/atom-xterm.js.map

This file was deleted.

File renamed without changes.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/atom-xterm.js → dist/lib/x-terminal.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/lib/x-terminal.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/preinstallScripts/move-winpty-binaries.js

Large diffs are not rendered by default.

61 changes: 0 additions & 61 deletions keymaps/atom-xterm.json

This file was deleted.

61 changes: 61 additions & 0 deletions keymaps/x-terminal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
".platform-linux atom-workspace": {
"ctrl-`": "x-terminal:open",
"ctrl-~": "x-terminal:open",
"ctrl-shift-t": "x-terminal:open",
"ctrl-alt-shift-t": "x-terminal:open",
"ctrl-alt-shift-up": "x-terminal:open-split-up",
"ctrl-alt-shift-down": "x-terminal:open-split-down",
"ctrl-alt-shift-left": "x-terminal:open-split-left",
"ctrl-alt-shift-right": "x-terminal:open-split-right",
"ctrl-alt-shift-i": "x-terminal:open-split-bottom-dock",
"ctrl-alt-shift-u": "x-terminal:open-split-left-dock",
"ctrl-alt-shift-o": "x-terminal:open-split-right-dock"
},
".platform-win32 atom-workspace": {
"ctrl-`": "x-terminal:open",
"ctrl-~": "x-terminal:open",
"ctrl-shift-t": "x-terminal:open",
"ctrl-alt-shift-t": "x-terminal:open",
"ctrl-alt-shift-up": "x-terminal:open-split-up",
"ctrl-alt-shift-down": "x-terminal:open-split-down",
"ctrl-alt-shift-left": "x-terminal:open-split-left",
"ctrl-alt-shift-right": "x-terminal:open-split-right",
"ctrl-alt-shift-i": "x-terminal:open-split-bottom-dock",
"ctrl-alt-shift-u": "x-terminal:open-split-left-dock",
"ctrl-alt-shift-o": "x-terminal:open-split-right-dock"
},
".platform-darwin atom-workspace": {
"cmd-`": "x-terminal:open",
"cmd-~": "x-terminal:open",
"cmd-t": "x-terminal:open",
"cmd-alt-shift-t": "x-terminal:open",
"cmd-alt-shift-up": "x-terminal:open-split-up",
"cmd-alt-shift-down": "x-terminal:open-split-down",
"cmd-alt-shift-left": "x-terminal:open-split-left",
"cmd-alt-shift-right": "x-terminal:open-split-right",
"cmd-alt-shift-i": "x-terminal:open-split-bottom-dock",
"cmd-alt-shift-u": "x-terminal:open-split-left-dock",
"cmd-alt-shift-o": "x-terminal:open-split-right-dock"
},
".platform-linux x-terminal": {
"ctrl-insert": "x-terminal:copy",
"ctrl-shift-c": "x-terminal:copy",
"shift-insert": "x-terminal:paste",
"ctrl-shift-v": "x-terminal:paste"
},
".platform-win32 x-terminal": {
"ctrl-insert": "x-terminal:copy",
"ctrl-shift-c": "x-terminal:copy",
"shift-insert": "x-terminal:paste",
"ctrl-shift-v": "x-terminal:paste"
},
".platform-darwin x-terminal": {
"ctrl-shift-c": "x-terminal:copy",
"ctrl-insert": "x-terminal:copy",
"ctrl-shift-v": "x-terminal:paste",
"shift-insert": "x-terminal:paste",
"cmd-c": "x-terminal:copy",
"cmd-v": "x-terminal:paste"
}
}
Loading

0 comments on commit d643a15

Please sign in to comment.