reklama - zainteresowany?

Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor - Helion

Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor
ebook
Autor: Kim Schulz, Bram Moolenar
Tytuł oryginału: Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor
ISBN: 9781849510516
stron: 244, Format: ebook
Data wydania: 2010-04-29
Księgarnia: Helion

Cena książki: 119,00 zł

Dodaj do koszyka Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor

Vim is one of the most powerful open-source editors used by programmers and system administrators around the world. While Vim itself is inherently a powerful editor, personalizing it to suit your needs can be a daunting task. However, it is possible to do so with the help of this book.This book contains examples that cover everything from personalizing Vim according to the your work cycle to optimizations that will boost the your productivity. The main focus of this book is to make your life, as a Vim user, easier.Each chapter deals with a different aspect, and provides recipes for easy-to-use hacks to customize and simplify your Vim experience. After an introduction covering the derivation of Vim and its relatives from the vi editor, the author explains basic changes that you can make to the appearance of the Vim editor. Further chapters cover improved navigation through files and buffers in Vim; speeding up your work with templates, auto-completion, folding, sessions, and registers; and formatting text and code, including using external formatting scripts. The final comprehensive chapter covers everything about using Vim scripts and scripting to extend functionality.This book is written for Vim 7.2, the latest stable version. This latest version of Vim includes many new features like spell-checking, code completion, document tabs, current line and column highlighting, undo branches, and much more.

Dodaj do koszyka Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor

 

Osoby które kupowały "Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor", wybierały także:

  • Windows Media Center. Domowe centrum rozrywki
  • Ruby on Rails. Ćwiczenia
  • Przywództwo w Å›wiecie VUCA. Jak być skutecznym liderem w niepewnym Å›rodowisku
  • Scrum. O zwinnym zarzÄ…dzaniu projektami. Wydanie II rozszerzone
  • Od hierarchii do turkusu, czyli jak zarzÄ…dzać w XXI wieku

Dodaj do koszyka Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor

Spis treści

Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor eBook -- spis treści

  • Hacking Vim 7.2
    • Table of Contents
    • Hacking Vim 7.2
    • Credits
    • About the Author
    • About the Reviewers
    • Preface
      • What this book covers
      • What you need for this book
      • Who this book is for
      • New to Vim?
      • Conventions
      • Reader feedback
      • Customer support
        • Errata
        • Piracy
        • Questions
    • 1. Getting Started with Vim
      • Getting Vim
      • vi, Vim, and friends
        • vi
        • STEVIE
        • Elvis
        • nvi
        • Vim
        • Vile
        • Compatibility
      • Vim is charityware
      • Common terminology
      • Summary
    • 2. Personalizing Vim
      • Where are the configuration files?
      • Changing the fonts
      • Changing color scheme
        • Personal highlighting
          • Example 1: Mark color characters after a certain column
          • Example 2: Mark tabs not used for indentation in code
          • Example 3: Preventing errors caused by IP addresses
      • A more informative status line
      • Toggle menu and toolbar
      • Adding your own menu and toolbar buttons
        • Adding a menu
        • Adding toolbar icons
      • Modifying tabs
      • Work area personalization
        • Adding a more visual cursor
        • Adding line numbers
        • Spell checking your language
        • Adding helpful tool tips
        • Using abbreviations
          • Example 1: Using abbreviations for quick address insertion
        • Modifying key bindings
      • Summary
    • 3. Better Navigation
      • Faster navigation in a file
        • Context-aware navigation
          • Moving around within a code file
          • Moving in a code file
        • Navigating long lines
      • Faster navigation in Vim help
        • Faster navigation in multiple buffers
        • Open referenced files faster
      • Search and you will find
        • Search the current file
          • Example 1: Find the next occurrence of a word
          • Example 2: Search for a word under the cursor
        • Search in multiple files
        • Search the help system
      • X marks the spot
        • Visible markersusing signs
        • Hidden markersusing marks
      • Summary
    • 4. Production Boosters
      • Using templates
        • Using template files
        • Abbreviations as templates
        • Snippets with the snipMate script
      • Using tag lists
        • Easier taglist navigation
        • Other usages of taglists
      • Using autocompletion
        • Autocompletion with known words
        • Autocompletion using dictionary lookup
        • Omnicompletion
        • All-in-one completion
      • Using macro recording
      • Using sessions
        • Simple session usage
          • Satisfy your own session needs
        • Sessions as a project manager
      • Registers and undo branching
        • Using registers
          • The unnamed register
          • The small delete register
          • The numbered registers
          • The named registers
          • The read-only registers
          • The selection and drop registers
          • The black hole register
          • Search pattern register
          • The expression register
      • Using undo branching
      • Folding
        • Simple text file outlining
        • Using vimdiff to track the changes
        • Navigation in vimdiff
        • Using diff to track changes
      • Open files anywhere
        • Faster remote file editing
      • Summary
    • 5. Advanced Formatting
      • Formatting text
        • Putting text into paragraphs
        • Aligning text
        • Marking headlines
        • Creating lists
      • Formatting code
        • Autoindent
        • Smartindent
        • Cindent
        • Indentexpr
        • Fast code-block formatting
        • Auto format pasted code
      • Using external formatting tools
        • Indent
        • Berkeley Par
        • Tidy
      • Summary
    • 6. Basic Vim Scripting
      • Syntax-color schemes
        • Your first syntax-color file
      • Syntax regions
        • Color scheme and syntax coloring
      • Using scripts
        • Script types
        • Installing scripts
          • Uninstalling scripts
      • Script development
        • Script writing basics
          • Types
          • Variables
          • Conditions
          • Working with lists and dictionaries
          • Loops
            • For loops
            • While loops
          • Creating functions
            • Variable argument list
      • Summary
    • 7. Extended Vim Scripting
      • Script structure
        • Script header
        • Script-loaded check
        • Script configuration
        • Key mappings
        • Functions
        • Putting it all together
      • Scripting tips
        • Gvim or Vim?
        • Which operating system?
        • Which version of Vim?
        • Printing longer lines
      • Debugging Vim scripts
      • Distributing Vim scripts
        • Making Vimballs
      • Remember the documentation
      • Using external interpreters
        • Vim scripting in Perl
        • Vim scripting in Python
        • Vim scripting in Ruby
      • Summary
    • A. Vim Can Do Everything
      • Vim games
        • Game of Life
        • Nibbles
        • Rubiks cube
        • Tic-Tac-Toe
        • Mines
        • Sokoban
        • Tetris
      • Programmers IDE
      • Mail program
      • Chat with Vim
      • Using Vim as a Twitter client
    • B. Vim Configuration Alternatives
      • Tips for keeping your vimrc file clean
      • A vimrc setup system
      • Storing vimrc online
    • Index

Dodaj do koszyka Hacking Vim 7.2. Ready-to-use hacks with solutions for common situations encountered by users of the Vim editor

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2025 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.