Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Symbol name in the dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
zrzka committed Oct 1, 2017
1 parent 284cd5e commit 7e4e676
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Find usages contains symbol name in the dialog title
* Jump to definition contains symbol name in the dialog title
* Show documentation contains symbol name in the dialog title


## 1.0.2 (2017-10-01)
Expand Down
4 changes: 2 additions & 2 deletions blackmamba/script/show_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def action(item, shift_enter):
_show_documentation(item.definition)

v = PickerView()
v.name = 'Multiple definitions found'
v.name = '{} definitions'.format(definitions[0].name)
v.datasource = LocationDataSource(definitions)

v.shift_enter_enabled = False
Expand All @@ -84,7 +84,7 @@ def action(item, shift_enter):
'\n'
'Esc - close • Cmd . - close with Apple smart keyboard'
)
v.textfield.placeholder = 'Start typing to filter files...'
v.textfield.placeholder = 'Start typing to filter location...'
v.did_select_item_action = action
v.present('sheet')
v.wait_modal()
Expand Down

0 comments on commit 7e4e676

Please sign in to comment.