Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: numEricL/table.vim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: numEricL/table.vim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 0 files changed
  • 1 contributor

Commits on Feb 20, 2026

  1. Auto split cell (#38)

    Adds an “auto-split multiline cell” behavior to the table insert-mode pipe handler, along with documentation and configuration support, so multiline tables keep consistent column structure when inserting |.
    
    Changes:
    
        Introduces auto_split_cell option (default v:true) and exposes it via :TableConfig Option.
        Implements insert-mode logic to insert matching | at the same display column across all lines in a multiline cell.
        Table max_col_count data member removed
    numEricL authored Feb 20, 2026
    Configuration menu
    Copy the full SHA
    e3b445f View commit details
    Browse the repository at this point in the history
  2. disable auto_split_cell by default (#39)

    Changed default value of auto_split_cell from v:true to v:false in the config
    numEricL authored Feb 20, 2026
    Configuration menu
    Copy the full SHA
    f7fe31a View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2026

  1. table inside comment fix (#40)

    Adjust comment-prefix detection to reference an existing table line (end of bounds) when deciding whether to prepend the comment leader.
    Fix off-by-one behavior when appending a new buffer line so the inserted line lands at the intended linenr.
    numEricL authored Feb 21, 2026
    Configuration menu
    Copy the full SHA
    007b579 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2026

  1. Configuration menu
    Copy the full SHA
    8b087eb View commit details
    Browse the repository at this point in the history
  2. insert and delete actions (#42)

        Added four new table manipulation commands: InsertRow, InsertCol, DeleteRow, and DeleteCol
        Created corresponding <Plug> mappings for each action
        Updated drawing logic to handle dynamic table structure changes
    numEricL authored Feb 24, 2026
    Configuration menu
    Copy the full SHA
    a95c960 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    77580cc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    23e3d86 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2026

  1. move rows and columns (#45)

    adds functionality to move table rows and columns. Introduces two new commands, :Table MoveRow and :Table MoveCol
    numEricL authored Feb 26, 2026
    Configuration menu
    Copy the full SHA
    8b73ebc View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2026

  1. improved paragraph wrap (#46)

    Update paragraph_wrap to join lines per-paragraph (blank lines preserved) instead of collapsing the entire cell to one line.
    Add trailing-blank-line handling during alignment and refine wrapping break logic.
    Increase default chunk_size window and update docs/changelog text around the new behavior.
    numEricL authored Feb 27, 2026
    Configuration menu
    Copy the full SHA
    4f12eb0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6093827 View commit details
    Browse the repository at this point in the history
  3. bug fixes (#49)

    Document MoveRow / MoveCol actions and align the suggested/example keybindings for movement actions.
    Fix table#CycleCursor() to request correct chunk when fetching a table.
    Adjust table#DeleteRow() handling for tables that don’t end with a separator line
    update changelog text for auto_split_cell default.
    numEricL authored Feb 27, 2026
    Configuration menu
    Copy the full SHA
    c06f7b0 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2026

  1. V0.3.0 (#51)

    * version uptick
    * readme
    * changelog
    * trailing whitespace
    numEricL authored Feb 28, 2026
    Configuration menu
    Copy the full SHA
    1019502 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    25e517d View commit details
    Browse the repository at this point in the history
Loading