Compare commits
No commits in common. "e87cec15a435b89d825a2394669cf394e0df11f1" and "f6d8dd10aab819577b9e0fa3bb5698348c568fa6" have entirely different histories.
e87cec15a4
...
f6d8dd10aa
@ -97,16 +97,5 @@
|
|||||||
|
|
||||||
echo "done."
|
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
|
|
||||||
}
|
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ cmp.setup({
|
|||||||
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
||||||
["<C-Space>"] = cmp.mapping.complete({}),
|
["<C-Space>"] = cmp.mapping.complete({}),
|
||||||
["<C-e>"] = cmp.mapping.abort(),
|
["<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)
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_next_item()
|
cmp.select_next_item()
|
||||||
|
Reference in New Issue
Block a user