Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Handle visual line mode
  • Loading branch information
hammerdr authored Jul 15, 2025
commit 33ad151ecd73e49b4f95e1fc9f53746f399b928d
2 changes: 1 addition & 1 deletion src/neovim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class NeovimManager {
pluginInfo
};

if (mode.mode.startsWith('v')) {
if (mode.mode.startsWith('v') || mode.mode.startsWith('V')) {
try {
// Use a more reliable method to get the visual selection
// This Lua code gets the actual selected text
Expand Down