SeveTech
SeveTech
  • 63
  • 13 915
Effortless Folder Jumping in Vim
In this video, we demonstrate how to achieve effortless folder navigation in Vim using two powerful Vim9-script plugins. Learn to utilize a fuzzy finder popup for recently accessed folders and a keyboard shortcut to view 10 selectable directories with recently modified files.
Discover the :mksession command to save your editing session's state, preserving your open files and layouts for easy resumption. Plus, see how the plugin automatically loads session configurations when entering a directory, ensuring a seamless workflow.
#Vim #VimPlugins #Productivity #Coding #VimTips
🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-10-13.wiki.html
Affiliate link:
Men's Professional 3mm Neoprene Snorkeling Suit, Warm Anti-Jellyfish Cold-Proof One-Piece Back Zipper Protection Wetsuit For Water Sports Snorkeling Swimming Drifting Surfing
👉 item link: temu.to/k/e9n7od3afbl
For comments and/or feedback use the following link:
tessarinseve.pythonanywhere.com/shared/request-form.html
Credits:
Intro Video by Pavel Danilyuk: www.pexels.com/video/a-person-jumping-into-the-sea-8858440/
TTS: freetts.com
End of the Video by FAHIMG: www.pexels.com/video/green-background-animation-youtube-subscribe-3822752/
Переглядів: 21

Відео

Create a SQLite Database from Vim Using SQLiteBiter
Переглядів 76День тому
SQLiteBiter is a powerful command-line interface tool that simplifies the conversion of SQLite databases into various formats, such as CSV and JSON. This video demonstrates how to efficiently extract and manipulate data from SQLite databases using SQLiteBiter, while also showcasing the integration with Vim. Learn how to capture Vim's key mappings, format them into a CSV table, and upload the SQ...
Exploring Command Line Utility QRENCODE
Переглядів 44Місяць тому
This video explores the command line utility #qrencode, created by Kentaro Fukuchi, which allows users to generate QR codes easily from the terminal. QR codes are widely used for storing URLs but can also be utilized for saving notes in formats like Markdown. qrencode is compatible with both Linux and Windows systems, making it accessible to a broad audience. This utility integrates well with t...
Jedi-Ruff Python LSP for VIM
Переглядів 90Місяць тому
In this video, we introduce the Jedi Language Server, a powerful Python language server that leverages the capabilities of the Jedi library. Jedi is known for its exceptional autocompletion and code navigation features, making it an invaluable tool for developers looking to enhance their coding efficiency. Learn how to easily install the Jedi LSP server in a Python virtual environment and explo...
A Simple Build System
Переглядів 29Місяць тому
Discover the efficiency of the Ninja build system. Watch as we delve into a Vlang source code example, creating a terminal pager for text files. Don't miss out on this informative video! #SoftwareDevelopment #Vlang #PythonScript #TerminalPager #BuildProcess #vim #ninjabuildsystem 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-06-27.wiki.html For comments and/or feedback use ...
Vim LSP in Less Than 70 Lines of Python Code
Переглядів 64Місяць тому
In this video, we demonstrate how to create a simple Language Server Protocol (LSP) for Vim using Python and the pyglas module. Watch as we showcase a Markdown Vim buffer that displays suggestions in a convenient popup message, and check out the compact Python source code for the LSP, which is under 70 lines! #Vim #Python #lsp 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-0...
Fzf and PowerShell: The Ultimate Combo for File Management
Переглядів 762 місяці тому
#fzf #powershell #vim #cprogramming In this video, we demonstrate how to use fzf (Fuzzy Finder) in Windows PowerShell. We’ll show you how to list and filter text files using a pre-compiled C program, and then select and open them with vim. Additionally, we’ll cover how to display and work with the most recently modified files using another C program. This setup simplifies file selection and edi...
Ast Grep: The CLI Treesitter for Efficient Code Pattern Searching
Переглядів 1102 місяці тому
Ast Grep: A powerful CLI tool for developers to search and manage code patterns efficiently. Install via pip, set rules, and integrate with Vim for real-time feedback. #DevTools #Coding #Python #JavaScript #Vim #AST #CodeSearch #treesitter 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-07-18.wiki.html For comments and/or feedback use the following link: tessarinseve.pythonan...
Vim + Logseq Graph Editing Made Easy
Переглядів 2183 місяці тому
Discover the power of Logseq’s desktop app for seamless daily journaling. In this video, we explore how Vim enhances your note-taking experience within Logseq’s graph. Highlights include: 🖊️ Vim Integration: Learn how to edit Logseq graph items using Vim or directly within the app. 📑 MediaWiki References: Easily create references with double squared brackets, guided by the Language Server Proto...
Vim V Language LSP
Переглядів 463 місяці тому
#LSP #CodeEditing The Language Server Protocol (LSP) has transformed code editing! By standardizing communication between editors and language servers, LSP empowers efficient development. Vim now supports LSPs via a Vim9Script plugin. This video demonstrates creating a basic V language executable with assistance from V-Analyzer, the vlang LSP, in VIM. #Vim #Vlang 🔗 Read the full blogpost: tessa...
Supercharge Your Python Code with Ruff
Переглядів 1194 місяці тому
Explore the power of Ruff, a Python linter and formatter, and its integration with Vim. Learn how Ruff enhances code quality and style, fixes issues, and works as a Language Server Protocol. Dive into the world of real-time coding feedback and automated solutions. #Python #Rust #Ruff #Vim #CodeQuality #AutomatedSolutions 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-06-05.w...
Replicating VOX Features in PowerShell: A Python Virtual Environment Management Script
Переглядів 214 місяці тому
#xonsh #python #virtualenv #powershell In this video, we dive into replicating the powerful features of VOX within a Python-powered PowerShell environment. Managing virtual environments is essential for keeping Python projects organized and maintaining a clean development setup 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-05-22.wiki.html For comments and/or feedback use th...
Enhancing Git History with Timeline Comments
Переглядів 1154 місяці тому
In this video, we explore how to leverage Git-SCM’s note attachment feature to enhance commit messages without altering the commits themselves. Additionally, we delve into including comments directly within the commit history using empty commits. We’ll also showcase a VLANG code snippet that compiles into an executable called gittimeline.exe. This tool allows users to add comments and retrieve ...
Libcurl and C: CLI Tool for Data Retrieval
Переглядів 264 місяці тому
#libcurl #csv Are you ready to harness the power of Libcurl in your C applications? In this video, we introduce a simple CLI tool that retrieves CSV files using Libcurl. We’ll walk through creating and compiling the tool using GCC on Windows. Whether you’re an experienced developer or just starting out, this tutorial equips you with the basics to fetch data from remote servers. Read more: tessa...
NuShell Default Text Editor (LiteXL)
Переглядів 2845 місяців тому
Discover how Lite-XL, a powerful and lightweight text editor, can enhance your workflow in a well-designed file system. Learn how to make it your default text editor for Nu-Shell. #LiteXL #NuShell #rust #lua 🔗 Read the full blogpost: tessarinseve.pythonanywhere.com/nws/2024-05-07.wiki.html Affiliate link: Black Glass Desktop Whiteboard with Organizer, Markers & Eraser - Dry Erase Board with Key...
Vim Fuzzy Finder and Search Tool
Переглядів 505 місяців тому
Vim Fuzzy Finder and Search Tool
Pandoc's Markdown
Переглядів 355 місяців тому
Pandoc's Markdown
Mastering Graphs with DOT: A Short Guide to Diagram Creation
Переглядів 426 місяців тому
Mastering Graphs with DOT: A Short Guide to Diagram Creation
Yes, Vim Can Call DLLs
Переглядів 4777 місяців тому
Yes, Vim Can Call DLLs
Supercharge Your Day with These 7 Game-Changing Productivity Tips!
Переглядів 747 місяців тому
Supercharge Your Day with These 7 Game-Changing Productivity Tips!
Xonsh DuckDb
Переглядів 537 місяців тому
Xonsh DuckDb
Creating SVG with Svgbob: From Installation to PowerShell + Vim
Переглядів 697 місяців тому
Creating SVG with Svgbob: From Installation to PowerShell Vim
Xonsh. Python-powered shell language and command prompt
Переглядів 1678 місяців тому
Xonsh. Python-powered shell language and command prompt
Python-Pipx & PowerShell
Переглядів 1019 місяців тому
Python-Pipx & PowerShell
PowerShell & VIM
Переглядів 5999 місяців тому
PowerShell & VIM
LibreOffice Python Macros (VIM - Windows OS)
Переглядів 63210 місяців тому
LibreOffice Python Macros (VIM - Windows OS)
Jupyter Console in Vim
Переглядів 47110 місяців тому
Jupyter Console in Vim
ISO8601 Week Number
Переглядів 8210 місяців тому
ISO8601 Week Number
Remark/Remarkpy Slides Animations
Переглядів 6211 місяців тому
Remark/Remarkpy Slides Animations
Deno Jupyter Notebook
Переглядів 239Рік тому
Deno Jupyter Notebook