Compare commits

..

No commits in common. "e87cec15a435b89d825a2394669cf394e0df11f1" and "f6d8dd10aab819577b9e0fa3bb5698348c568fa6" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View File

@ -97,16 +97,5 @@
echo "done."
}
function hb-configs {
curl --silent \
--location "https://hawkbit-smartcan.horsch.com/rest/v1/softwaremodules" \
--header "Content-Type: application/json" \
--header "Authorization: Basic ''$hawkbitToken" \
--data "q=type==configfs-smartcan" \
--data "sort=id:DESC" \
--get \
| jq | bat
}
'';
}

View File

@ -28,7 +28,7 @@ cmp.setup({
["<C-f>"] = cmp.mapping.scroll_docs(4),
["<C-Space>"] = cmp.mapping.complete({}),
["<C-e>"] = cmp.mapping.abort(),
["<CR>"] = cmp.mapping.confirm({ select = false }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
["<CR>"] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()