LICENSE
README.md
pyproject.toml
setup.py
peovim/__init__.py
peovim/api.py
peovim/main.py
peovim.egg-info/PKG-INFO
peovim.egg-info/SOURCES.txt
peovim.egg-info/dependency_links.txt
peovim.egg-info/entry_points.txt
peovim.egg-info/requires.txt
peovim.egg-info/top_level.txt
peovim/_native/__init__.py
peovim/_native/cell_grid.c
peovim/_native/window_renderer.c
peovim/api/__init__.py
peovim/api/_metadata.py
peovim/api/buffer_api.py
peovim/api/commands_api.py
peovim/api/completion_api.py
peovim/api/debug_api.py
peovim/api/diagnostics_api.py
peovim/api/diff_api.py
peovim/api/editor.py
peovim/api/events_api.py
peovim/api/git_api.py
peovim/api/health_api.py
peovim/api/jumplist_api.py
peovim/api/keymap_api.py
peovim/api/lsp_api.py
peovim/api/modal_api.py
peovim/api/options_api.py
peovim/api/quickfix_api.py
peovim/api/registers_api.py
peovim/api/repl_api.py
peovim/api/session_api.py
peovim/api/snippets_api.py
peovim/api/store_api.py
peovim/api/syntax_api.py
peovim/api/testing_api.py
peovim/api/ui_api.py
peovim/api/window_api.py
peovim/api/workspace_api.py
peovim/commands/__init__.py
peovim/commands/builtin.py
peovim/commands/parser.py
peovim/commands/registry.py
peovim/config/__init__.py
peovim/config/editorconfig.py
peovim/config/loader.py
peovim/config/project.py
peovim/core/__init__.py
peovim/core/buffer.py
peovim/core/cursor.py
peovim/core/decorations_store.py
peovim/core/diffing.py
peovim/core/document.py
peovim/core/editor_state.py
peovim/core/event_bus.py
peovim/core/filetype.py
peovim/core/fold.py
peovim/core/health.py
peovim/core/health_checks.py
peovim/core/history.py
peovim/core/jumplist.py
peovim/core/log_manager.py
peovim/core/marks.py
peovim/core/options.py
peovim/core/persistence.py
peovim/core/persistence_policy.py
peovim/core/recovery.py
peovim/core/registers.py
peovim/core/search.py
peovim/core/shada.py
peovim/core/sign_registry.py
peovim/core/snapshot.py
peovim/core/store_api.py
peovim/core/style.py
peovim/core/text_edits.py
peovim/core/transaction.py
peovim/core/window.py
peovim/core/workspace.py
peovim/debug/__init__.py
peovim/debug/client.py
peovim/debug/profile_workloads.py
peovim/debug/protocol.py
peovim/debug/session.py
peovim/git/__init__.py
peovim/git/presentation.py
peovim/git/repository.py
peovim/lsp/__init__.py
peovim/lsp/client.py
peovim/lsp/features.py
peovim/lsp/manager.py
peovim/lsp/protocol.py
peovim/modal/__init__.py
peovim/modal/actions.py
peovim/modal/dispatcher.py
peovim/modal/dispatcher_buffers.py
peovim/modal/dispatcher_clipboard.py
peovim/modal/dispatcher_commands.py
peovim/modal/dispatcher_ex_commands.py
peovim/modal/dispatcher_folds.py
peovim/modal/dispatcher_modes.py
peovim/modal/dispatcher_navigation.py
peovim/modal/dispatcher_plugins.py
peovim/modal/dispatcher_repeat.py
peovim/modal/dispatcher_search.py
peovim/modal/dispatcher_text.py
peovim/modal/dispatcher_workspace.py
peovim/modal/engine.py
peovim/modal/keybindings.py
peovim/modal/motions.py
peovim/modal/operators.py
peovim/modal/text_objects.py
peovim/plugins/__init__.py
peovim/plugins/ai.py
peovim/plugins/align.py
peovim/plugins/autopairs.py
peovim/plugins/calltree.py
peovim/plugins/codemap.py
peovim/plugins/commentary.py
peovim/plugins/compare.py
peovim/plugins/copilot.py
peovim/plugins/copilot_client.py
peovim/plugins/dashboard.py
peovim/plugins/debugpy.py
peovim/plugins/diagnostics_panel.py
peovim/plugins/diff.py
peovim/plugins/editor_utils.py
peovim/plugins/editorconfig.py
peovim/plugins/explorer.py
peovim/plugins/filehistory.py
peovim/plugins/flash.py
peovim/plugins/formatter.py
peovim/plugins/fquick.py
peovim/plugins/gitsigns.py
peovim/plugins/guess_indent.py
peovim/plugins/local_history.py
peovim/plugins/lsp.py
peovim/plugins/manager.py
peovim/plugins/markers.py
peovim/plugins/notifications.py
peovim/plugins/outline.py
peovim/plugins/perf_panel.py
peovim/plugins/picker.py
peovim/plugins/proposed_review.py
peovim/plugins/pytest.py
peovim/plugins/python.py
peovim/plugins/references_panel.py
peovim/plugins/remote.py
peovim/plugins/repl.py
peovim/plugins/session.py
peovim/plugins/session_additions.py
peovim/plugins/spell.py
peovim/plugins/surround.py
peovim/plugins/svnsigns.py
peovim/plugins/tabs_to_spaces.py
peovim/plugins/todo.py
peovim/plugins/vcssigns.py
peovim/plugins/which_key.py
peovim/plugins/workspace_symbols.py
peovim/plugins/verilog_lsp/__init__.py
peovim/plugins/verilog_lsp/hierarchy_panel.py
peovim/plugins/verilog_lsp/plugin.py
peovim/plugins/verilog_lsp/signal_trace.py
peovim/syntax/__init__.py
peovim/syntax/engine.py
peovim/syntax/languages.py
peovim/syntax/themes.py
peovim/syntax/queries/c.scm
peovim/syntax/queries/cpp.scm
peovim/syntax/queries/markdown.scm
peovim/syntax/queries/python.scm
peovim/syntax/queries/verilog.scm
peovim/syntax/queries/xdc.scm
peovim/ui/__init__.py
peovim/ui/_cell_grid_pure.py
peovim/ui/_window_renderer_pure.py
peovim/ui/alloc_tracer.py
peovim/ui/backend.py
peovim/ui/backend_factory.py
peovim/ui/bottom_panel.py
peovim/ui/cell_grid.py
peovim/ui/cmdline_controller.py
peovim/ui/command_line.py
peovim/ui/completion.py
peovim/ui/cursor_controller.py
peovim/ui/decorations.py
peovim/ui/event_loop.py
peovim/ui/float_manager.py
peovim/ui/frame_controller.py
peovim/ui/gc_tracer.py
peovim/ui/ghost_text.py
peovim/ui/input_controller.py
peovim/ui/layout.py
peovim/ui/lsp_ui_adapter.py
peovim/ui/markdown.py
peovim/ui/mouse_dispatcher.py
peovim/ui/notify.py
peovim/ui/panel_host.py
peovim/ui/perf_sampler.py
peovim/ui/picker.py
peovim/ui/presentation_controller.py
peovim/ui/render_cycle_controller.py
peovim/ui/render_jobs.py
peovim/ui/runtime_controller.py
peovim/ui/scrollbar.py
peovim/ui/sidebar.py
peovim/ui/status_bar.py
peovim/ui/terminal_buffer.py
peovim/ui/text_layout.py
peovim/ui/tree_view.py
peovim/ui/which_key_panel.py
peovim/ui/window_render_controller.py
peovim/ui/window_renderer.py
peovim/ui/backends/__init__.py
peovim/ui/backends/crossterm.py
peovim/ui/backends/headless.py
peovim/ui/backends/prompt_toolkit.py
tests/test_api.py
tests/test_backend_crossterm.py
tests/test_backend_factory.py
tests/test_backend_prompt_toolkit.py
tests/test_bottom_panel.py
tests/test_buffer.py
tests/test_commands.py
tests/test_config_loader.py
tests/test_core_diffing.py
tests/test_cursor.py
tests/test_decorations_store.py
tests/test_dispatcher_buffers.py
tests/test_dispatcher_commands.py
tests/test_dispatcher_navigation.py
tests/test_dispatcher_plugins.py
tests/test_dispatcher_postprocessing.py
tests/test_docs.py
tests/test_document.py
tests/test_event_bus.py
tests/test_event_loop_cmdline.py
tests/test_external_file_changes.py
tests/test_folding.py
tests/test_git_api.py
tests/test_health.py
tests/test_indent_guides.py
tests/test_integration.py
tests/test_jumplist.py
tests/test_layout.py
tests/test_log_manager.py
tests/test_lsp.py
tests/test_markdown.py
tests/test_marks.py
tests/test_modal.py
tests/test_motions.py
tests/test_mouse.py
tests/test_mutation_safety.py
tests/test_operators.py
tests/test_options.py
tests/test_persistence.py
tests/test_picker.py
tests/test_plugin_align.py
tests/test_plugin_autopairs.py
tests/test_plugin_commentary.py
tests/test_plugin_compare.py
tests/test_plugin_dashboard.py
tests/test_plugin_diagnostics_panel.py
tests/test_plugin_editorconfig.py
tests/test_plugin_explorer.py
tests/test_plugin_flash.py
tests/test_plugin_formatter.py
tests/test_plugin_fquick.py
tests/test_plugin_gitsigns.py
tests/test_plugin_guess_indent.py
tests/test_plugin_local_history.py
tests/test_plugin_lsp.py
tests/test_plugin_manager_lazy.py
tests/test_plugin_markers.py
tests/test_plugin_outline.py
tests/test_plugin_picker.py
tests/test_plugin_proposed_review.py
tests/test_plugin_references_panel.py
tests/test_plugin_session_additions.py
tests/test_plugin_surround.py
tests/test_plugin_svnsigns.py
tests/test_plugin_tabs_to_spaces.py
tests/test_plugin_todo.py
tests/test_plugin_verilog_hierarchy.py
tests/test_plugin_verilog_signal_trace.py
tests/test_plugin_which_key.py
tests/test_plugin_workspace_symbols.py
tests/test_profile_workloads.py
tests/test_recovery.py
tests/test_registers.py
tests/test_render_jobs.py
tests/test_renderer.py
tests/test_search.py
tests/test_session.py
tests/test_shada.py
tests/test_sidebar.py
tests/test_store_api.py
tests/test_syntax.py
tests/test_syntax_contract.py
tests/test_terminal_buffer.py
tests/test_text_objects.py
tests/test_tree_view.py
tests/test_undo.py
tests/test_window.py
tests/test_workspace.py