feat: change cmp window border
This commit is contained in:
parent
8fde14e267
commit
934231183d
@ -82,7 +82,7 @@ M.conf = {
|
|||||||
-- yes = '✔️',
|
-- yes = '✔️',
|
||||||
-- no = '❌'
|
-- no = '❌'
|
||||||
},
|
},
|
||||||
|
theme = 'default',
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
||||||
|
|
||||||
-- TODO :
|
-- TODO :
|
||||||
@ -118,7 +118,24 @@ M.setup = function(opts)
|
|||||||
float.width = math.floor(vim.o.columns * float.width)
|
float.width = math.floor(vim.o.columns * float.width)
|
||||||
|
|
||||||
M.translate = require('Trans.translate')
|
M.translate = require('Trans.translate')
|
||||||
require("Trans.setup")
|
|
||||||
|
if vim.fn.executable('sqlite3') ~= 1 then
|
||||||
|
error('Please check out sqlite3')
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_create_user_command('Translate', function()
|
||||||
|
require("Trans").translate()
|
||||||
|
end, { desc = ' 单词翻译', })
|
||||||
|
|
||||||
|
vim.api.nvim_create_user_command('TranslateInput', function()
|
||||||
|
require("Trans").translate('i')
|
||||||
|
end, { desc = ' 搜索翻译' })
|
||||||
|
|
||||||
|
|
||||||
|
local hls = require('Trans.theme')[M.conf.theme]
|
||||||
|
for hl, opt in pairs(hls) do
|
||||||
|
vim.api.nvim_set_hl(0, hl, opt)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
|
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
if vim.fn.executable('sqlite3') ~= 1 then
|
|
||||||
error('Please check out sqlite3')
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
vim.api.nvim_create_user_command('Translate', function()
|
|
||||||
require("Trans").translate()
|
|
||||||
end, { desc = ' 单词翻译', })
|
|
||||||
|
|
||||||
vim.api.nvim_create_user_command('TranslateInput', function()
|
|
||||||
require("Trans").translate('i')
|
|
||||||
end, { desc = ' 搜索翻译' })
|
|
||||||
|
|
||||||
-- vim.api.nvim_create_user_command('TranslateLast', function()
|
|
||||||
-- require("Trans").translate('last')
|
|
||||||
-- end, { desc = ' 显示上一次查询的内容' })
|
|
||||||
|
|
||||||
local hls = {
|
|
||||||
TransWord = {
|
|
||||||
fg = '#7ee787',
|
|
||||||
bold = true,
|
|
||||||
},
|
|
||||||
TransPhonetic = {
|
|
||||||
link = 'Linenr'
|
|
||||||
},
|
|
||||||
TransTitle = {
|
|
||||||
fg = '#0f0f15',
|
|
||||||
bg = '#75beff',
|
|
||||||
bold = true,
|
|
||||||
},
|
|
||||||
TransTitleRound = {
|
|
||||||
fg = '#75beff',
|
|
||||||
},
|
|
||||||
TransTag = {
|
|
||||||
fg = '#e5c07b',
|
|
||||||
},
|
|
||||||
TransExchange = {
|
|
||||||
link = 'TransTag',
|
|
||||||
},
|
|
||||||
TransPos = {
|
|
||||||
link = 'TransTag',
|
|
||||||
},
|
|
||||||
TransTranslation = {
|
|
||||||
link = 'TransWord',
|
|
||||||
},
|
|
||||||
TransDefinition = {
|
|
||||||
link = 'Moremsg',
|
|
||||||
},
|
|
||||||
TransWin = {
|
|
||||||
link = 'Normal',
|
|
||||||
},
|
|
||||||
TransBorder = {
|
|
||||||
link = 'FloatBorder',
|
|
||||||
},
|
|
||||||
TransCollins = {
|
|
||||||
fg = '#faf743',
|
|
||||||
bold = true,
|
|
||||||
},
|
|
||||||
TransFailed = {
|
|
||||||
fg = '#7aa89f',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for hl, opt in pairs(hls) do
|
|
||||||
vim.api.nvim_set_hl(0, hl, opt)
|
|
||||||
end
|
|
95
lua/Trans/theme.lua
Normal file
95
lua/Trans/theme.lua
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
return {
|
||||||
|
default = {
|
||||||
|
TransWord = {
|
||||||
|
fg = '#7ee787',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransPhonetic = {
|
||||||
|
link = 'Linenr'
|
||||||
|
},
|
||||||
|
TransTitle = {
|
||||||
|
fg = '#0f0f15',
|
||||||
|
bg = '#75beff',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransTitleRound = {
|
||||||
|
fg = '#75beff',
|
||||||
|
},
|
||||||
|
TransTag = {
|
||||||
|
-- fg = '#e5c07b',
|
||||||
|
link = '@tag'
|
||||||
|
},
|
||||||
|
TransExchange = {
|
||||||
|
link = 'TransTag',
|
||||||
|
},
|
||||||
|
TransPos = {
|
||||||
|
link = 'TransTag',
|
||||||
|
},
|
||||||
|
TransTranslation = {
|
||||||
|
link = 'TransWord',
|
||||||
|
},
|
||||||
|
TransDefinition = {
|
||||||
|
link = 'Moremsg',
|
||||||
|
},
|
||||||
|
TransWin = {
|
||||||
|
link = 'Normal',
|
||||||
|
},
|
||||||
|
TransBorder = {
|
||||||
|
fg = '#89B4FA',
|
||||||
|
},
|
||||||
|
TransCollins = {
|
||||||
|
fg = '#faf743',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransFailed = {
|
||||||
|
fg = '#7aa89f',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
--- TODO :
|
||||||
|
tokyonight = {
|
||||||
|
TransWord = {
|
||||||
|
fg = '#7ee787',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransPhonetic = {
|
||||||
|
link = 'Comment',
|
||||||
|
},
|
||||||
|
TransTitle = {
|
||||||
|
fg = '#0f0f15',
|
||||||
|
bg = '#75beff',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransTitleRound = {
|
||||||
|
fg = '#75beff',
|
||||||
|
},
|
||||||
|
TransTag = {
|
||||||
|
fg = '#e5c07b',
|
||||||
|
},
|
||||||
|
TransExchange = {
|
||||||
|
link = 'TransTag',
|
||||||
|
},
|
||||||
|
TransPos = {
|
||||||
|
link = 'TransTag',
|
||||||
|
},
|
||||||
|
TransTranslation = {
|
||||||
|
link = 'TransWord',
|
||||||
|
},
|
||||||
|
TransDefinition = {
|
||||||
|
link = 'Moremsg',
|
||||||
|
},
|
||||||
|
TransWin = {
|
||||||
|
link = 'Normal',
|
||||||
|
},
|
||||||
|
TransBorder = {
|
||||||
|
fg = '#8269b5',
|
||||||
|
},
|
||||||
|
TransCollins = {
|
||||||
|
fg = '#faf743',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
|
TransFailed = {
|
||||||
|
fg = '#7aa89f',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
@ -56,11 +56,9 @@ local action = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
local handle = {
|
local function process()
|
||||||
title = function()
|
|
||||||
-- TODO :
|
end
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
return function(word)
|
return function(word)
|
||||||
-- TODO :online query
|
-- TODO :online query
|
||||||
@ -89,9 +87,7 @@ return function(word)
|
|||||||
|
|
||||||
if m_result then
|
if m_result then
|
||||||
set_tag_hl(engine_us, 'success')
|
set_tag_hl(engine_us, 'success')
|
||||||
for _, proc in pairs(handle) do
|
process()
|
||||||
proc()
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
set_tag_hl(engine_us, 'fail')
|
set_tag_hl(engine_us, 'fail')
|
||||||
end
|
end
|
||||||
|
@ -10,7 +10,6 @@ local item
|
|||||||
|
|
||||||
local m_indent = ' '
|
local m_indent = ' '
|
||||||
|
|
||||||
|
|
||||||
local title = function(str)
|
local title = function(str)
|
||||||
m_content:addline(
|
m_content:addline(
|
||||||
text(
|
text(
|
||||||
@ -313,6 +312,7 @@ return function(word)
|
|||||||
m_window:set('wrap', true)
|
m_window:set('wrap', true)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
-- Auto Close
|
-- Auto Close
|
||||||
cmd_id = api.nvim_create_autocmd(
|
cmd_id = api.nvim_create_autocmd(
|
||||||
hover.auto_close_events, {
|
hover.auto_close_events, {
|
||||||
|
@ -179,7 +179,7 @@ local window = {
|
|||||||
self.winid = -1
|
self.winid = -1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
reopen = function(self, entry, opt, callback)
|
reopen = function(self, entry, opt, callback)
|
||||||
check_busy()
|
check_busy()
|
||||||
@ -258,11 +258,13 @@ return function(entry, option)
|
|||||||
}
|
}
|
||||||
|
|
||||||
setmetatable(win, { __index = window })
|
setmetatable(win, { __index = window })
|
||||||
win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder')
|
|
||||||
|
-- FIXME :config this
|
||||||
win:bufset('filetype', 'Trans')
|
win:bufset('filetype', 'Trans')
|
||||||
win:bufset('buftype', 'nofile')
|
win:bufset('buftype', 'nofile')
|
||||||
|
|
||||||
api.nvim_win_set_hl_ns(win.winid, win.hl)
|
api.nvim_win_set_hl_ns(win.winid, win.hl)
|
||||||
|
win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder,NormalFloat:TransBorder')
|
||||||
---@diagnostic disable-next-line: return-type-mismatch
|
---@diagnostic disable-next-line: return-type-mismatch
|
||||||
return win
|
return win
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user