Skip to content

Commit

Permalink
Merge pull request #10 from xvw/hotfix/remove-focus-when-changedir
Browse files Browse the repository at this point in the history
Hotfix/remove focus when changedir
  • Loading branch information
xvw committed Dec 14, 2017
2 parents 82524a6 + d4490a2 commit 145b2eb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ elm-stuff
node_modules
dist/bundle.js
qian-darwin-x64
qian-darwin-x64.zip
.tool-versions
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ install:
npm install

app: install build
rm -rf qian-darwin-x64.zip
./node_modules/.bin/electron-packager . qian --overwrite --icon=icon.icns
zip -r qian-darwin-x64.zip qian-darwin-x64

clean:
rm -rf qian-darwin-x64.zip
rm -rf node_modules
rm -rf elm-stuff
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,9 @@ In addition, if a feature seems interesting to implement, let's talk about it in
- `Tab` : toggle the focus on the searchbar
- `Cmd + Alt + Enter` : Open the current folder in finder
- `Cmd + Enter` : Open the current folder in a terminal

> those shortcuts works only if the search bar does not have the focus
- `Cmd + Left` : Go on the pred view (if it exists)
- `Cmd + Right` : Go on the next view (if it exists)
- `Cmd + Up` : Go to the parent (if it exists)
- `Cmd + <` : Go on the pred view (if it exists)
- `Cmd + >` : Go on the next view (if it exists)
- `Cmd + Shift + Space` : Go to the parent (if it exists)

## About the search bar

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qian",
"version": "1.2.0",
"version": "1.2.1",
"description": "A small experience",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions static/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const template =
submenu: [
{
label: 'Pred',
accelerator: 'CmdOrCtrl+Left',
accelerator: 'CmdOrCtrl+<',
click: function(item, focusedWindow) {
if (focusedWindow) {
elmApp.ports.historyNavigation.send(true)
Expand All @@ -93,7 +93,7 @@ const template =
},
{
label: 'Next',
accelerator: 'CmdOrCtrl+Right',
accelerator: 'CmdOrCtrl+>',
click: function(item, focusedWindow) {
if (focusedWindow) {
elmApp.ports.historyNavigation.send(false)
Expand All @@ -102,7 +102,7 @@ const template =
},
{
label: 'Parent',
accelerator: 'CmdOrCtrl+Up',
accelerator: 'CmdOrCtrl+Shift+Space',
click: function(item, focusedWindow) {
if (focusedWindow) {
elmApp.ports.jumpToParent.send(true)
Expand Down

0 comments on commit 145b2eb

Please sign in to comment.