Autocmd fix for :Py

This commit is contained in:
Imbus 2024-08-06 03:39:50 +02:00
parent efd628cde1
commit ae98c4e34d

View file

@ -4,7 +4,7 @@
-- These should be self-explanatory -- These should be self-explanatory
vim.api.nvim_create_user_command('Cd', 'cd %:h', { desc = 'Change directory to the current file' }) vim.api.nvim_create_user_command('Cd', 'cd %:h', { desc = 'Change directory to the current file' })
vim.api.nvim_create_user_command('Py', 'python %', { desc = 'Execute python file' }) vim.api.nvim_create_user_command('Py', '!python %', { desc = 'Execute python file' })
-- Instantly move help window to the right -- Instantly move help window to the right
-- This is almost certainly a hacky way to do this) -- This is almost certainly a hacky way to do this)