Compare commits
No commits in common. "87f2ed4aa24146fffe8c310c10af186689f0d18d" and "1fbc307badcad1454d65694b673cc986c94cf697" have entirely different histories.
87f2ed4aa2
...
1fbc307bad
3 changed files with 0 additions and 130 deletions
|
|
@ -81,8 +81,3 @@ vim.g.preview = {
|
||||||
typst = { open = { 'sioyek', '--new-instance' } },
|
typst = { open = { 'sioyek', '--new-instance' } },
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
**Q: How do I set up SyncTeX (forward/inverse search)?**
|
|
||||||
|
|
||||||
See `:help preview-synctex` for full recipes covering Zathura, Sioyek, and
|
|
||||||
Okular.
|
|
||||||
|
|
|
||||||
112
doc/preview.txt
112
doc/preview.txt
|
|
@ -26,7 +26,6 @@ CONTENTS *preview-contents*
|
||||||
7. Lua API ................................................... |preview-api|
|
7. Lua API ................................................... |preview-api|
|
||||||
8. Events ............................................... |preview-events|
|
8. Events ............................................... |preview-events|
|
||||||
9. Health ............................................... |preview-health|
|
9. Health ............................................... |preview-health|
|
||||||
10. SyncTeX ............................................. |preview-synctex|
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
REQUIREMENTS *preview-requirements*
|
REQUIREMENTS *preview-requirements*
|
||||||
|
|
@ -273,116 +272,5 @@ Checks: ~
|
||||||
- Each configured provider's binary is executable
|
- Each configured provider's binary is executable
|
||||||
- Each configured provider's opener binary (if any) is executable
|
- Each configured provider's opener binary (if any) is executable
|
||||||
|
|
||||||
==============================================================================
|
|
||||||
SYNCTEX *preview-synctex*
|
|
||||||
|
|
||||||
SyncTeX enables bidirectional navigation between LaTeX source and the
|
|
||||||
compiled PDF. The `latex` preset compiles with `-synctex=1` by default.
|
|
||||||
|
|
||||||
Forward search (editor -> viewer) requires caching the output path.
|
|
||||||
Inverse search (viewer -> editor) requires a fixed Neovim server socket.
|
|
||||||
|
|
||||||
The following configs leverage the below basic setup: ~
|
|
||||||
|
|
||||||
>lua
|
|
||||||
vim.fn.serverstart('/tmp/nvim-preview.sock')
|
|
||||||
|
|
||||||
local synctex_pdf = {}
|
|
||||||
vim.api.nvim_create_autocmd('User', {
|
|
||||||
pattern = 'PreviewCompileSuccess',
|
|
||||||
callback = function(args)
|
|
||||||
synctex_pdf[args.data.bufnr] = args.data.output
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
<
|
|
||||||
|
|
||||||
The recipes below bind `<leader>s` for forward search. To scroll the PDF
|
|
||||||
automatically on cursor movement, call the forward search function from a
|
|
||||||
|CursorMoved| or |CursorHold| autocmd instead.
|
|
||||||
|
|
||||||
Viewer-specific recipes: ~
|
|
||||||
|
|
||||||
*preview-synctex-zathura*
|
|
||||||
Zathura ~
|
|
||||||
|
|
||||||
Inverse search: Ctrl+click.
|
|
||||||
|
|
||||||
>lua
|
|
||||||
vim.keymap.set('n', '<leader>s', function()
|
|
||||||
local pdf = synctex_pdf[vim.api.nvim_get_current_buf()]
|
|
||||||
if pdf then
|
|
||||||
vim.fn.jobstart({
|
|
||||||
'zathura', '--synctex-forward',
|
|
||||||
vim.fn.line('.') .. ':0:' .. vim.fn.expand('%:p'), pdf,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
vim.g.preview = {
|
|
||||||
latex = {
|
|
||||||
open = {
|
|
||||||
'zathura',
|
|
||||||
'--synctex-editor-command',
|
|
||||||
'nvim --server /tmp/nvim-preview.sock'
|
|
||||||
.. [[ --remote-expr "execute('b +%{line} %{input}')"]],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
<
|
|
||||||
|
|
||||||
*preview-synctex-sioyek*
|
|
||||||
Sioyek ~
|
|
||||||
|
|
||||||
Inverse search: right-click with synctex mode active.
|
|
||||||
|
|
||||||
Add to `~/.config/sioyek/prefs_user.config`: >
|
|
||||||
inverse_search_command nvim --server /tmp/nvim-preview.sock --remote-expr "execute('b +%2 %1')"
|
|
||||||
<
|
|
||||||
|
|
||||||
>lua
|
|
||||||
vim.keymap.set('n', '<leader>s', function()
|
|
||||||
local pdf = synctex_pdf[vim.api.nvim_get_current_buf()]
|
|
||||||
if pdf then
|
|
||||||
vim.fn.jobstart({
|
|
||||||
'sioyek',
|
|
||||||
'--instance-name', 'preview',
|
|
||||||
'--forward-search-file', vim.fn.expand('%:p'),
|
|
||||||
'--forward-search-line', tostring(vim.fn.line('.')),
|
|
||||||
pdf,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
vim.g.preview = {
|
|
||||||
latex = {
|
|
||||||
open = { 'sioyek', '--instance-name', 'preview' },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
<
|
|
||||||
|
|
||||||
*preview-synctex-okular*
|
|
||||||
Okular ~
|
|
||||||
|
|
||||||
Inverse search (Shift+click): one-time GUI setup via
|
|
||||||
Settings -> Configure Okular -> Editor -> Custom Text Editor: >
|
|
||||||
nvim --server /tmp/nvim-preview.sock --remote-expr "execute('b +%l %f')"
|
|
||||||
<
|
|
||||||
|
|
||||||
>lua
|
|
||||||
vim.keymap.set('n', '<leader>s', function()
|
|
||||||
local pdf = synctex_pdf[vim.api.nvim_get_current_buf()]
|
|
||||||
if pdf then
|
|
||||||
vim.fn.jobstart({
|
|
||||||
'okular', '--unique',
|
|
||||||
('%s#src:%d:%s'):format(pdf, vim.fn.line('.'), vim.fn.expand('%:p')),
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
vim.g.preview = {
|
|
||||||
latex = { open = { 'okular', '--unique' } },
|
|
||||||
}
|
|
||||||
<
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
vim:tw=78:ts=8:ft=help:norl:
|
vim:tw=78:ts=8:ft=help:norl:
|
||||||
|
|
|
||||||
13
flake.nix
13
flake.nix
|
|
@ -34,16 +34,6 @@
|
||||||
pkgs.selene
|
pkgs.selene
|
||||||
pkgs.lua-language-server
|
pkgs.lua-language-server
|
||||||
];
|
];
|
||||||
okular-wrapped = pkgs.symlinkJoin {
|
|
||||||
name = "okular";
|
|
||||||
paths = [ pkgs.kdePackages.okular ];
|
|
||||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
||||||
postBuild = ''
|
|
||||||
wrapProgram $out/bin/okular \
|
|
||||||
--prefix XDG_DATA_DIRS : "${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}" \
|
|
||||||
--prefix XDG_DATA_DIRS : "${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
|
|
@ -59,9 +49,6 @@
|
||||||
pkgs.quarto
|
pkgs.quarto
|
||||||
pkgs.plantuml
|
pkgs.plantuml
|
||||||
pkgs.mermaid-cli
|
pkgs.mermaid-cli
|
||||||
pkgs.zathura
|
|
||||||
pkgs.sioyek
|
|
||||||
okular-wrapped
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue