Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Günther Wagner
gnome-builder
Commits
829c8e0b
Commit
829c8e0b
authored
Jan 15, 2019
by
Christian Hergert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keybindings: fix action name for open
parent
64b6624c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/plugins/emacs/keybindings/emacs.css
src/plugins/emacs/keybindings/emacs.css
+1
-1
src/plugins/sublime/keybindings/sublime.css
src/plugins/sublime/keybindings/sublime.css
+1
-1
src/plugins/vim/gb-vim.c
src/plugins/vim/gb-vim.c
+1
-1
No files found.
src/plugins/emacs/keybindings/emacs.css
View file @
829c8e0b
...
...
@@ -131,7 +131,7 @@
bind
"<ctrl>c"
{
"action"
("app",
"quit",
"")
}
;
bind
"0"
{
"action"
("frame",
"close-page",
"")
}
;
bind
"k"
{
"action"
("frame",
"close-page",
"")
}
;
bind
"<ctrl>f"
{
"action"
("w
in",
"open-with-dialog
",
"")
}
;
bind
"<ctrl>f"
{
"action"
("w
orkbench",
"open
",
"")
}
;
bind
"<ctrl>s"
{
"action"
("editor-page",
"save",
"")
}
;
bind
"s"
{
"action"
("win",
"save-all",
"")
}
;
bind
"<ctrl>b"
{
"action"
("frame",
"show-list",
"")
}
;
...
...
src/plugins/sublime/keybindings/sublime.css
View file @
829c8e0b
...
...
@@ -3,7 +3,7 @@
@binding-set
sublime-ide-source-view
{
bind
"<ctrl>n"
{
"action"
("editor",
"new-file",
"")
}
;
bind
"<ctrl>o"
{
"action"
("w
in",
"open-with-dialog
",
"")
}
;
bind
"<ctrl>o"
{
"action"
("w
orkbench",
"open
",
"")
}
;
bind
"<ctrl>s"
{
"action"
("editor-page",
"save",
"")
}
;
bind
"<ctrl><shift>s"
{
"action"
("editor-page",
"save-as",
"")
}
;
bind
"<ctrl>w"
{
"action"
("frame",
"close-page",
"")
}
;
...
...
src/plugins/vim/gb-vim.c
View file @
829c8e0b
...
...
@@ -465,7 +465,7 @@ gb_vim_command_edit (GtkWidget *active_widget,
if
(
ide_str_empty0
(
options
))
{
dzl_gtk_widget_action
(
GTK_WIDGET
(
active_widget
),
"w
in"
,
"open-with-dialog
"
,
NULL
);
dzl_gtk_widget_action
(
GTK_WIDGET
(
active_widget
),
"w
orkbench"
,
"open
"
,
NULL
);
return
TRUE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment