trying another layer on keyboard for debug controls
GK3TF3NHYNTLUQBFBK7VSR4YATDOT2P5LTEUGFLVTQTL4XFXLP3QC local word = vim.fn.expand('<cword>')if word and word ~= "" thenlocal dapui = require('dapui')-- Format options - key maps to suffixlocal formats = {d = ',d', -- (d)ecimalc = ',c', -- (c)haracteru = ',u', -- (u)nsignedb = ',b', -- (b)inaryx = ',x', -- he(x)o = ',o', -- (o)ctalf = ',f', -- (f)loatp = ',p', -- (p)ointers = ',s', -- (s)tringy = ',y', -- b(y)tesY = ',Y', -- b(Y)tes+ASCII}local help_text = '(d)ecimal (c)haracter (u)nsigned (b)inary he(x) (o)ctal (f)loat (p)ointer (s)tring b(y)tes b(Y)tes+ASCII'vim.ui.input({prompt = 'Format for "' .. word .. '" - ' .. help_text .. ': ',default = ""}, function(input)if input and input ~= "" thenlocal char = input:sub(1, 1):lower()local suffix = formats[char]if suffix thendapui.elements.watches.add(word .. suffix)print('Added: ' .. word .. suffix)elseprint('Invalid format: ' .. char)endendend)elseprint('No word under cursor')endend, { desc = 'Add specific single LLDB formatted watch' })vim.keymap.set('n', '<F9>', function()