From 693fdacb3895887913f03e7ccc8f03b5c5ad234e Mon Sep 17 00:00:00 2001 From: Zeioth Date: Mon, 13 Nov 2023 23:54:26 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 3a401d2..35860ea 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,6 @@ If you want to help me, please star this repository to increase the visibility o ## Roadmap * `Improvement`: We currently display Flutter compiling options when using Dart. We also show Android studio compiling options when using Kotlin, but we are not doing the same thing for java. → In fact we should add all of this as building system system (gradle), instead of adding it as part of the language compiler options. That would allow us to display these options only when present in the Android build.gradle. -* `Building systems → gradle` is planned. Auto discovery of options defined by the user is planned. * `Building systems → maven` is planned. Auto discovery of options defined by the user is planned. * `Building systems → package.json` is planned. Auto discovery of options defined by the user is planned. * Consider adding rake support. From 41f637216a7ef12b9d9b5b74b40942723b753e81 Mon Sep 17 00:00:00 2001 From: Zeioth Date: Tue, 14 Nov 2023 17:21:47 +0100 Subject: [PATCH 2/3] =?UTF-8?q?Update=20README.md=20=E2=86=92=20Fixed=20ex?= =?UTF-8?q?ample=20keymappings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 35860ea..4a48cd2 100644 --- a/README.md +++ b/README.md @@ -84,16 +84,16 @@ lazy.nvim package manager ```lua -- Open compiler -vim.api.nvim_buf_set_keymap(0, 'n', '', "CompilerOpen", { noremap = true, silent = true }) +vim.api.nvim_set_keymap('n', '', "CompilerOpen", { noremap = true, silent = true }) -- Redo last selected option -vim.api.nvim_buf_set_keymap(0, 'n', '', function() - vim.cmd("CompilerStop") -- (Optional, to dispose all tasks before redo) - vim.cmd("CompilerRedo") -end, { noremap = true, silent = true }) +vim.api.nvim_set_keymap('n', '', + "CompilerStop" -- (Optional, to dispose all tasks before redo) + .. "CompilerRedo", + { noremap = true, silent = true }) -- Toggle compiler results -vim.api.nvim_buf_set_keymap(0, 'n', '', "CompilerToggleResults", { noremap = true, silent = true }) +vim.api.nvim_set_keymap('n', '', "CompilerToggleResults", { noremap = true, silent = true }) ``` ## Commands From 187b86e00183ae863ca2073cfc858ee71f0a6e6a Mon Sep 17 00:00:00 2001 From: Zeioth Date: Tue, 14 Nov 2023 17:27:35 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a48cd2..5d95e44 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,7 @@ If you want to help me, please star this repository to increase the visibility o ## Roadmap +* `minor bugfix`: Build automation utilities are not repeated when using `:CompilerRedo`. * `Improvement`: We currently display Flutter compiling options when using Dart. We also show Android studio compiling options when using Kotlin, but we are not doing the same thing for java. → In fact we should add all of this as building system system (gradle), instead of adding it as part of the language compiler options. That would allow us to display these options only when present in the Android build.gradle. * `Building systems → maven` is planned. Auto discovery of options defined by the user is planned. * `Building systems → package.json` is planned. Auto discovery of options defined by the user is planned.