mirror of https://github.com/buggins/dlangide.git
update dlangui depenedncy; find in files action; close #132
This commit is contained in:
parent
f58f869c04
commit
7ef43a31a7
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "~>0.7.66",
|
||||
"dlangui": "~>0.7.67",
|
||||
"dcd": "~>0.7.5"
|
||||
},
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ enum IDEActions : int {
|
|||
GetParenCompletion,
|
||||
|
||||
InsertCompletion,
|
||||
FindText,
|
||||
FindInFiles,
|
||||
CloseWorkspace,
|
||||
}
|
||||
|
||||
|
@ -138,4 +138,4 @@ const Action ACTION_GO_TO_DEFINITION = (new Action(IDEActions.GoToDefinition, "
|
|||
const Action ACTION_GET_COMPLETIONS = (new Action(IDEActions.GetCompletionSuggestions, "SHOW_COMPLETIONS"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift)).addAccelerator(KeyCode.SPACE, KeyFlag.Control).disableByDefault();
|
||||
const Action ACTION_GET_PAREN_COMPLETION = (new Action(IDEActions.GetParenCompletion, "SHOW_PAREN_COMPLETION"c, ""c, KeyCode.SPACE, KeyFlag.Control|KeyFlag.Shift)).disableByDefault();
|
||||
|
||||
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindText, "FIND_TEXT"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control));
|
||||
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindInFiles, "FIND_IN_FILES"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control | KeyFlag.Shift));
|
||||
|
|
|
@ -928,7 +928,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
|||
case IDEActions.SetStartupProject:
|
||||
setStartupProject(cast(Project)a.objectParam);
|
||||
return true;
|
||||
case IDEActions.FindText:
|
||||
case IDEActions.FindInFiles:
|
||||
Log.d("Opening Search Field");
|
||||
import dlangide.ui.searchPanel;
|
||||
int searchPanelIndex = _logPanel.getTabs.tabIndex("search");
|
||||
|
|
|
@ -39,7 +39,7 @@ SHOW_COMPLETIONS=Get autocompletions
|
|||
SHOW_DOC_COMMENTS=Show documentation
|
||||
SHOW_PAREN_COMPLETION=Call hints
|
||||
|
||||
FIND_TEXT=Find...
|
||||
FIND_IN_FILES=Find in files...
|
||||
|
||||
MENU_BUILD_CONFIGURATIONS=Build configurations
|
||||
MENU_BUILD=&Build
|
||||
|
|
|
@ -61,7 +61,8 @@ MENU_NAVIGATE=Navegar
|
|||
|
||||
GO_TO_DEFINITION=Ir a Definición
|
||||
SHOW_COMPLETIONS=Obtener Autocompletados
|
||||
FIND_TEXT=Encontrar texto
|
||||
|
||||
FIND_IN_FILES=Encontrar texto
|
||||
|
||||
|
||||
TAB_LONG_LIST=Larga lista
|
||||
|
|
|
@ -36,7 +36,7 @@ GO_TO_DEFINITION=Перейти к определению
|
|||
SHOW_DOC_COMMENTS=Показать документацию
|
||||
SHOW_PAREN_COMPLETION=Показать параметры вызова
|
||||
|
||||
FIND_TEXT=Найти...
|
||||
FIND_IN_FILES=Найти в файлах...
|
||||
|
||||
MENU_BUILD=&Сборка
|
||||
MENU_BUILD_WORKSPACE_BUILD=Собрать workspace
|
||||
|
|
Loading…
Reference in New Issue