Skip to content

Commit

Permalink
Doc: Keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardroche committed Aug 27, 2017
1 parent 0ef9bd1 commit dc06597
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* Added: Switch Project command
* Added: Remove Folder command
* Doc: Setup guide
* Doc: Setup key bindings

### Deprecated

Expand Down
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,26 @@ Open Sesame: Switch Project | `open_sesame_switch_project` | Add a project to th

## Key bindings

OS X | Windows / Linux | Description
-----|-----------------|------------
`Super+Alt+o` | `Ctrl+Alt+o` | Open Sesame: Open Project
Windows / Linux | OSX | Description
--------------- | --- | -----------
`Ctrl+Alt+O` | `Super+Alt+O` | Open Sesame: Open Project

Add your preferred key bindings:

`Menu > Preferences > Key Bindings`

```json
[
{ "keys": ["ctrl+alt+a"], "command": "open_sesame_add_project" },
{ "keys": ["ctrl+alt+o"], "command": "open_sesame_open_project" },
{ "keys": ["ctrl+alt+r"], "command": "open_sesame_remove_folder" },
{ "keys": ["ctrl+alt+s"], "command": "open_sesame_switch_project" },
]
```

On Ubuntu you may have conflict issues with key bindings such as `ctrl+alt+s` that may be mapped to something like the system `toggle-shaded` window command. You can clear the system keybinding with a command at terminal. If you have issues with key bindings on Ubuntu, ping me on twitter and I'll do my best to help you resolve it.

$ gsettings set org.gnome.desktop.wm.keybindings toggle-shaded "[]"

## Configuration

Expand Down

0 comments on commit dc06597

Please sign in to comment.