Update tasks.json - 2025-03-18T00:12:15.864Z
This commit is contained in:
parent
8779abf8c2
commit
0563b41830
71
tasks.json
71
tasks.json
@ -1,4 +1,19 @@
|
||||
[
|
||||
{
|
||||
"id": "8tbu7nelc",
|
||||
"name": "Tethys UI",
|
||||
"completed": false,
|
||||
"subtasks": [
|
||||
{
|
||||
"id": "ytp54kwyc",
|
||||
"name": "release on 19 split UI for shops",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "release on 19 split UI for shops"
|
||||
}
|
||||
],
|
||||
"content": "Tethys UI"
|
||||
},
|
||||
{
|
||||
"name": "Invoicing",
|
||||
"completed": false,
|
||||
@ -323,6 +338,13 @@
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "add keymap for select recent selection"
|
||||
},
|
||||
{
|
||||
"id": "xsfequqpt",
|
||||
"name": "execute lua on keybind ",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "execute lua on keybind \n\ndont V:lua \ncreate an autocommand and mapping"
|
||||
}
|
||||
],
|
||||
"content": "prod++"
|
||||
@ -443,6 +465,13 @@
|
||||
"completed": true,
|
||||
"subtasks": [],
|
||||
"content": "fix wrapping text\n\n[v] text text text text \n\n[v] in one Box \ntext in the other \n\ncenter [v] vertically - profit"
|
||||
},
|
||||
{
|
||||
"id": "gsw7mwx83",
|
||||
"name": "! Run in a single tmux session ",
|
||||
"completed": true,
|
||||
"subtasks": [],
|
||||
"content": "! Run in a single tmux session \n\nconnect from multiple nvim instances\n\notherwise its unsafe to use from multiple places"
|
||||
}
|
||||
],
|
||||
"content": "improvements"
|
||||
@ -542,11 +571,11 @@
|
||||
"content": "bugs"
|
||||
},
|
||||
{
|
||||
"id": "gsw7mwx83",
|
||||
"name": "! Run in a single tmux session ",
|
||||
"completed": true,
|
||||
"id": "y3yu63n5k",
|
||||
"name": "",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "! Run in a single tmux session \n\nconnect from multiple nvim instances\n\notherwise its unsafe to use from multiple places"
|
||||
"content": ""
|
||||
}
|
||||
],
|
||||
"content": "tasks CLI"
|
||||
@ -586,10 +615,10 @@
|
||||
},
|
||||
{
|
||||
"id": "qwjmrexkc",
|
||||
"name": "asd",
|
||||
"name": "asd asdasdasd",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "asd"
|
||||
"content": "asd asdasdasd"
|
||||
},
|
||||
{
|
||||
"id": "vuhi0eo8o",
|
||||
@ -783,5 +812,35 @@
|
||||
}
|
||||
],
|
||||
"content": "test"
|
||||
},
|
||||
{
|
||||
"id": "04gkw8byg",
|
||||
"name": "mercurius",
|
||||
"completed": false,
|
||||
"subtasks": [
|
||||
{
|
||||
"id": "to2ytchbe",
|
||||
"name": "035 on notification 46 needless ? ",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "035 on notification 46 needless ? \n\n\n %{\n id: 46,\n name: \"Consignor - Reminder to hand in parcel (C2C)\",\n channel: :email,\n target: :consignor,\n windows: 600..2300,\n type: \"Unknown\",\n category: [\"Custom\"],\n subcategory: [\"Unknown\"],\n template: C2C.Consignor.Email.ReminderToHandInC2CAtServicepoint,\n triggers: [\n [api_key: \"001\", no_conversion: true, fp_id: [92, 93], action: [schedule: {2, :days}]]\n ],\n fixups: [\n [api_key: \"035\", action: :cancel],\n [api_key: \"002\", action: :cancel],\n [api_key: \"073\", action: :cancel]\n ]\n },"
|
||||
}
|
||||
],
|
||||
"content": "mercurius"
|
||||
},
|
||||
{
|
||||
"id": "mwft3a9n3",
|
||||
"name": "good hooman",
|
||||
"completed": false,
|
||||
"subtasks": [
|
||||
{
|
||||
"id": "jvxsol8h3",
|
||||
"name": "respond to harpoon issue with file:line with a snippet",
|
||||
"completed": false,
|
||||
"subtasks": [],
|
||||
"content": "respond to harpoon issue with file:line with a snippet\n\n\n\nlocal harpoon = require(\"harpoon\")\nvim.keymap.set(\"n\", \"<leader>H\", function()\n harpoon:list(\"file_with_line\"):add()\nend, { desc = \"Harpoon add\" })\nvim.keymap.set(\"n\", \"<leader>h\", function()\n harpoon.ui:toggle_quick_menu(harpoon:list(\"file_with_line\"))\nend, { desc = \"Harpoon list\" })\n\n\n{\n \"ThePrimeagen/harpoon\",\n branch = \"harpoon2\",\n dependencies = { \"nvim-lua/plenary.nvim\" },\n opts = {\n file_with_line = {\n create_list_item = function()\n local file_path = vim.fn.expand(\"%:p\") -- Absolute path of the file\n local line_number = vim.fn.line(\".\") -- Current line number\n\n if file_path == \"\" then\n return nil\n end\n\n return {\n value = file_path .. \":\" .. line_number,\n context = { file_path = file_path, line_number = line_number },\n }\n end,\n\n select = function(list_item, list, option)\n vim.cmd(\"edit \" .. list_item.context.file_path)\n\n -- Jump to the specified line\n vim.api.nvim_win_set_cursor(0, { list_item.context.line_number, 0 })\n end,\n },\n },\n }"
|
||||
}
|
||||
],
|
||||
"content": "good hooman\n\n\n {\n \"ThePrimeagen/harpoon\",\n branch = \"harpoon2\",\n dependencies = { \"nvim-lua/plenary.nvim\" },\n opts = {\n file_with_line = {\n create_list_item = function()\n local file_path = vim.fn.expand(\"%:p\") -- Absolute path of the file\n local line_number = vim.fn.line(\".\") -- Current line number\n\n if file_path == \"\" then\n return nil\n end\n\n return {\n value = file_path .. \":\" .. line_number,\n context = { file_path = file_path, line_number = line_number},\n }\n end,\n\n select = function(list_item, list, option)\n vim.cmd(\"edit \" .. list_item.context.file_path)\n\n -- Jump to the specified line\n vim.api.nvim_win_set_cursor(0, { list_item.context.line_number, 0 })\n end,\n },\n },\n },"
|
||||
}
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user