Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'g C-a' like incremental increment functionality, support block selections, and more #11

Open
wants to merge 127 commits into
base: master
Choose a base branch
from

Commits on May 4, 2016

  1. Configuration menu
    Copy the full SHA
    84bb03c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ff37f83 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2016

  1. Configuration menu
    Copy the full SHA
    b754f53 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2018

  1. Remove extra &optional

    Jan Path authored Nov 5, 2018
    Configuration menu
    Copy the full SHA
    cfa8650 View commit details
    Browse the repository at this point in the history
  2. Fix wrong handling of region if number of characters changes

    For example suppose we have the following where | is point and $ is mark and
    execute evil-numbers/inc-at-point.
    
    ```
    |9 9$
    ```
    
    Expected:
    
    ```
    10 10
    ```
    
    Actual:
    
    ```
    10 9
    ```
    
    This is because we would save the beginning and end of the region before we do
    any changes, so the second 9 is pushed out of the saved region bounds by the
    first 9 turning into a 10.
    Jan Path committed Nov 5, 2018
    Configuration menu
    Copy the full SHA
    31c7f1a View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2018

  1. Support block selections

    Jan Path committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    7ff262f View commit details
    Browse the repository at this point in the history
  2. Fix changing the number directly behind us

    E.g. in the following position (where ^ shows where point is) we want to
    increase 2, not 1 when calling inc-at-pt.
    
    1 2
     ^
    Jan Path committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    e5dd1e2 View commit details
    Browse the repository at this point in the history
  3. Merge https://github.com/unhammer/evil-numbers

    Jan Path committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    cbbfd83 View commit details
    Browse the repository at this point in the history
  4. Support negative superscripts and fix padding of negative numbers

    Previously negative numbers were not padded at all. Specifically calling
    inc-at-pt on -1 yields +1.
    Jan Path committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    9e2d6f7 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2018

  1. Support subscript numbers

    Jan Path committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    f033965 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2018

  1. Configuration menu
    Copy the full SHA
    8da2221 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    154703d View commit details
    Browse the repository at this point in the history
  3. Update documentation

    Jan Path committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a2ce896 View commit details
    Browse the repository at this point in the history
  4. Add CHANGELOG

    Jan Path committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    4fd2d40 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2019

  1. Fix documentation markup. Closes #2

    Jan Path committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    9478e05 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2019

  1. Explicitly require evil.

    This can help people who defer a lot of package-loading.
    leungbk committed Mar 12, 2019
    Configuration menu
    Copy the full SHA
    ac4101f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5 from leungbk/require

    Explicitly require evil.
    Jan Path authored Mar 12, 2019
    Configuration menu
    Copy the full SHA
    4a17780 View commit details
    Browse the repository at this point in the history
  3. Fix autoloading

    The magic autoload comment only works automatically for defun and the like. For
    macros such as evil-define-operator it will copy over the whole definition
    resulting in errors due to other parts of the file not being loaded.
    Jan Path committed Mar 12, 2019
    Configuration menu
    Copy the full SHA
    fb16206 View commit details
    Browse the repository at this point in the history
  4. Create evil-numbers customisation group

    Jan Path committed Mar 12, 2019
    Configuration menu
    Copy the full SHA
    ebfb368 View commit details
    Browse the repository at this point in the history
  5. List myself as maintainer

    Jan Path committed Mar 12, 2019
    Configuration menu
    Copy the full SHA
    d988041 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2020

  1. Autoload operators as interactive commands

    Henrik Lissner authored Apr 13, 2020
    Configuration menu
    Copy the full SHA
    d1b1f50 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2020

  1. Merge pull request #6 from hlissner/patch-1

    Autoload operators as interactive commands
    Jan Path authored Apr 14, 2020
    Configuration menu
    Copy the full SHA
    c2cfdd1 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2020

  1. fix: handle hyphen-separated numbers correctly

    Imagine we're editing hyphen-separated numbers like the following:
    
        cursor:          v
        text:   2020-01-02
    
    When we invoke 'inc-at-pt', we want the last number to change:
    
        cursor:          v
        text:   2020-01-01
    
    (Note that the number is decremented instead of being incremented due to
    the leading '-'. This also matches Vim behavior)
    
    However, evil-numbers currently change the first number instead:
    
        cursor:    v
        text:   2021-01-02
    
    This patch fixes evil-numbers to match the expected behavior.
    midchildan committed Jul 12, 2020
    Configuration menu
    Copy the full SHA
    8b59acf View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2020

  1. Merge pull request #7 from midchildan/fix/hyphens

    fix: handle hyphen-separated numbers correctly
    Jan Path authored Jul 19, 2020
    Configuration menu
    Copy the full SHA
    006da40 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2021

  1. Resolve looking-back warnings

    Resolve Warning: looking-back called with 1 argument, but requires 2-3.
    ideasman42 authored May 6, 2021
    Configuration menu
    Copy the full SHA
    4308935 View commit details
    Browse the repository at this point in the history
  2. Quiet checkdoc warnings

    ideasman42 authored May 6, 2021
    Configuration menu
    Copy the full SHA
    02de70f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11 from ideasman42/patch-1

    Resolve looking-back warnings
    juliapath authored May 6, 2021
    Configuration menu
    Copy the full SHA
    aa94cd1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    37d148f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #13 from ideasman42/patch-2

    Quiet checkdoc warnings
    juliapath authored May 6, 2021
    Configuration menu
    Copy the full SHA
    c6ba8e3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26ec2d4 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2021

  1. Merge pull request #14 from ideasman42/patch-3

    Enable lexical binding, remove unused function 'pad'
    juliapath authored May 10, 2021
    Configuration menu
    Copy the full SHA
    74cd618 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2021

  1. Change repo URLs

    juliapath authored May 11, 2021
    Configuration menu
    Copy the full SHA
    ff3bcf4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    963e78c View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

  1. Configuration menu
    Copy the full SHA
    5622da3 View commit details
    Browse the repository at this point in the history
  2. Cleanup: replace tabs with spaces

    Tabs were used inconsistently in a few places.
    ideasman42 committed May 12, 2021
    Configuration menu
    Copy the full SHA
    a75c4b0 View commit details
    Browse the repository at this point in the history
  3. Cleanup: quiet package-lint warnings

    - Start summery with upper-case.
    - Only use keywords in finder-known-keywords.
    - Depend on emacs 24.1 (since lexical binding was added).
    ideasman42 committed May 12, 2021
    Configuration menu
    Copy the full SHA
    f33d013 View commit details
    Browse the repository at this point in the history
  4. Cleanup: avoid right shift

    Move the 't' condition onto the next line to avoid right shift.
    ideasman42 committed May 12, 2021
    Configuration menu
    Copy the full SHA
    6fa8e02 View commit details
    Browse the repository at this point in the history
  5. Cleanup: use '--' separator for private functions

    Currently package-lint-current-buffer warns about breaking
    the convention of using dashes for separators.
    
    While this can't be changed with the public functions,
    the convention can be used for private functions.
    
    This also has the advantage of abbreviating function display
    with nameless-mode.
    ideasman42 committed May 12, 2021
    Configuration menu
    Copy the full SHA
    ab6d436 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #16 from juliapath/temp-priv-vars

    Cleanup: use '--' separator for private functions
    juliapath authored May 12, 2021
    Configuration menu
    Copy the full SHA
    3a0c5a8 View commit details
    Browse the repository at this point in the history
  7. Fix spelling

    juliapath authored May 12, 2021
    Configuration menu
    Copy the full SHA
    b54cc5b View commit details
    Browse the repository at this point in the history

Commits on May 13, 2021

  1. Cleanup: avoid let binding to set default values for arguments

    Avoids right-shift.
    ideasman42 committed May 13, 2021
    Configuration menu
    Copy the full SHA
    5356111 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b1ba250 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2021

  1. Configuration menu
    Copy the full SHA
    cc930fb View commit details
    Browse the repository at this point in the history
  2. Fix #18 operating on bin/hex/octal failed w/ the cursor at the start

    Replace logic for scanning the number that works in both directions.
    ideasman42 committed May 14, 2021
    Configuration menu
    Copy the full SHA
    027f8d5 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2021

  1. Cleanup: split skip characters matching out into a function

    Prepare for fixing #17
    ideasman42 committed May 15, 2021
    Configuration menu
    Copy the full SHA
    e8dfba5 View commit details
    Browse the repository at this point in the history
  2. Fix #17 bin/octal/hex numbers don't support becoming negative

    When decrementing 0x0 for eg. it became 0x-1 instead of -0x1.
    ideasman42 committed May 15, 2021
    Configuration menu
    Copy the full SHA
    445943f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    adda2cc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    626ea72 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2021

  1. Configuration menu
    Copy the full SHA
    6093a5e View commit details
    Browse the repository at this point in the history
  2. Cleanup: move subscript encode/decode into utility functions

    Making the code easier to follow.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    11fc45c View commit details
    Browse the repository at this point in the history
  3. Fix #20 The cursor moves when increment/decrement fails

    Only apply the cursor motion on success.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    15dcea1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bea0c10 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1520c24 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a6cf01f View commit details
    Browse the repository at this point in the history
  7. Cleanup: docstring

    Quiet checkdoc warning
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    3fe5621 View commit details
    Browse the repository at this point in the history
  8. Fix padding being ignored with block selection

    Forward padding as an argument.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    c37a4cf View commit details
    Browse the repository at this point in the history
  9. Cleanup: remove duplicate number search logic

    Instead of searching for a number when handling selection,
    make evil-numbers/inc-at-pt responsible for finding the next number.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    299e041 View commit details
    Browse the repository at this point in the history
  10. Cleanup: move forward character check in evil-numbers--search-number

    This check relates to an implementation detail of how looking-back works,
    the caller should not have to be aware of this.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    b2397f2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    819530c View commit details
    Browse the repository at this point in the history
  12. Correct invalid limit argument to `looking-back'

    This argument is an absolute position,
    not relative to the point.
    
    Also apply limit to skip-chars-forward.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    83e98f9 View commit details
    Browse the repository at this point in the history
  13. Correct oversight in 299e041

    Can't use `end' as this value changes while looping.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    8403eeb View commit details
    Browse the repository at this point in the history
  14. Use ORG mode for the CHANGELOG

    Gives nicer preview, already used for the readme.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    b87c8b7 View commit details
    Browse the repository at this point in the history
  15. README: various minor updates

    - Add myself as a contributor.
    - Use capitals, full-stops.
    - Capitalize VIM.
    - Clarify that this works with the cursor before the numeric literal.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    0934e38 View commit details
    Browse the repository at this point in the history
  16. CHANGELOG: use fullstops

    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    7ca411f View commit details
    Browse the repository at this point in the history
  17. Cleanup: split number incrementing into it's own function

    This simplifies evil-numbers/dec-at-pt point placement and error
    handling, as this logic is called direction and in a loop.
    ideasman42 committed May 16, 2021
    Configuration menu
    Copy the full SHA
    7602f3b View commit details
    Browse the repository at this point in the history

Commits on May 17, 2021

  1. Cleanup: share code-paths for decimal and bin/hex/octal encoding

    `evil-numbers--search-and-replace` now takes decode/encode functions
    so it can be used with subscript and superscript characters.
    
    This avoids an entirely separate code-path for decimal operations.
    
    Resolves #19
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    ad15824 View commit details
    Browse the repository at this point in the history
  2. Cleanup: use '?' instead of '*' for matching sign

    While the difference isn't significant in this case,
    matching a single character as whats intended.
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    6483ab6 View commit details
    Browse the repository at this point in the history
  3. Cleanup: forward limits to evil-numbers--search-and-replace

    Since the caller takes limits, it makes sense to forward them
    to evil-numbers--search-and-replace instead of using the line bounds.
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    b98a3dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4303612 View commit details
    Browse the repository at this point in the history
  5. Rename evil-numbers/padDefault to evil-numbers-pad-default

    Use more conventional naming for settings.
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    a01fa6b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    af088b7 View commit details
    Browse the repository at this point in the history
  7. Cleanup: remove strict number searching logic

    Instead, use simple search, rely on `evil-numbers--search-and-replace'
    to perform more detailed checks.
    
    This allows us to have a single place where parsing and searching
    is performed.
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    8d84bd3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0bbf3a8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    79daec8 View commit details
    Browse the repository at this point in the history
  10. Update README.org

    - Split key bindings into their own section.
    - Add use-package example.
    - Add myself as a contributor.
    ideasman42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    a427fda View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b88595d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9841266 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    01c6892 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. Configuration menu
    Copy the full SHA
    43ae060 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d66b63 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70b9862 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d5c40d2 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. Configuration menu
    Copy the full SHA
    9cf802c View commit details
    Browse the repository at this point in the history
  2. Cleanup: remove autoload on defcustom

    This isn't needed.
    ideasman42 committed May 19, 2021
    Configuration menu
    Copy the full SHA
    6ff686b View commit details
    Browse the repository at this point in the history
  3. Add evil-numbers-case option

    Allow setting the default case for hexadecimal values.
    ideasman42 committed May 19, 2021
    Configuration menu
    Copy the full SHA
    f485043 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c39f8f1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a65dbc5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    11883bc View commit details
    Browse the repository at this point in the history

Commits on May 20, 2021

  1. Configuration menu
    Copy the full SHA
    d09a0e6 View commit details
    Browse the repository at this point in the history
  2. Add separator character support (issue #23)

    Optionally support numbers with single separators such as:
    
    - `16_777_216`
    - `0x10_000`
    - `4,294,967,296`
    ideasman42 committed May 20, 2021
    Configuration menu
    Copy the full SHA
    407d622 View commit details
    Browse the repository at this point in the history
  3. README.org use definition lists for options

    Reads a little nicer.
    ideasman42 authored May 20, 2021
    Configuration menu
    Copy the full SHA
    fd74294 View commit details
    Browse the repository at this point in the history
  4. Bump to 0.6

    ideasman42 committed May 20, 2021
    Configuration menu
    Copy the full SHA
    1acf906 View commit details
    Browse the repository at this point in the history
  5. Add evil to requirements

    ideasman42 committed May 20, 2021
    Configuration menu
    Copy the full SHA
    d7a3e6d View commit details
    Browse the repository at this point in the history

Commits on May 21, 2021

  1. Configuration menu
    Copy the full SHA
    623bcbd View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2021

  1. Refactor: instead of passing an amount, pass in a function

    This opens up possibilities for changing the number in other ways
    besides addition.
    ideasman42 committed Jun 3, 2021
    Configuration menu
    Copy the full SHA
    48b528b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1bf577a View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2021

  1. Fix #27 Number directly before the cursor manipulated in some cases

    When the cursor couldn't move forward numbers directly before it
    were manipulated.
    ideasman42 committed Jun 4, 2021
    Configuration menu
    Copy the full SHA
    e1b60f3 View commit details
    Browse the repository at this point in the history
  2. Cleanup: indentation

    ideasman42 committed Jun 4, 2021
    Configuration menu
    Copy the full SHA
    3bd9472 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2021

  1. Configuration menu
    Copy the full SHA
    ef72a4f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd23a7b View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2021

  1. Configuration menu
    Copy the full SHA
    bce451b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    29859e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2021

  1. Tests: watch evil-numbers.el as well as the tests

    Also add explanation for why initialize in packages is needed.
    ideasman42 committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    061de6f View commit details
    Browse the repository at this point in the history
  2. Tests: run increment operations at different offsets

    This would have prevented bug #18,
    as well as related issues from happening in the future.
    ideasman42 committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    6087ef4 View commit details
    Browse the repository at this point in the history
  3. Tests: add simple-nop-non-number-with-newline-after test

    There have been issues in the past where the newline
    boundary was ignored. Add another test to ensure it's not.
    
    Signed-off-by: Campbell Barton <[email protected]>
    ideasman42 committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    cb9eb99 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9423e4c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8ce0066 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2021

  1. Cleanup: redundant group usage

    Add fill-column local variable.
    ideasman42 committed Oct 11, 2021
    Configuration menu
    Copy the full SHA
    8761f55 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    08f0c1e View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2022

  1. Configuration menu
    Copy the full SHA
    a6c886d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    061f523 View commit details
    Browse the repository at this point in the history
  3. Bump to 0.7

    This contains a few fixes and improvements which are now every well
    tested and justify being in a release.
    ideasman42 committed Jul 11, 2022
    Configuration menu
    Copy the full SHA
    61dde4e View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2022

  1. Configuration menu
    Copy the full SHA
    bfbe8ea View commit details
    Browse the repository at this point in the history
  2. Cleanup: use pcase-dolist

    ideasman42 committed Jul 31, 2022
    Configuration menu
    Copy the full SHA
    7bd9bb0 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2023

  1. Auto format using elisp-autofmt

    Avoids the need for manual formatting.
    ideasman42 committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    434298e View commit details
    Browse the repository at this point in the history
  2. Cleanup: replace 'if' with 'cond'

    Avoids the need for `progn` adding/removing when using multiple
    statements in the first condition.
    ideasman42 committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    dbe39b0 View commit details
    Browse the repository at this point in the history
  3. Cleanup: remove redundant format and quoted lambda

    Both give warnings with melpazoid.
    ideasman42 committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    9bebb3a View commit details
    Browse the repository at this point in the history
  4. Cleanup: replace point-at-bol/eol with pos-bol/eol

    Quiet deprecation warning.
    ideasman42 committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    743e605 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5ddc167 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2023

  1. Configuration menu
    Copy the full SHA
    af8d71b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee2c027 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Configuration menu
    Copy the full SHA
    8724645 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Configuration menu
    Copy the full SHA
    1f78ca1 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. Configuration menu
    Copy the full SHA
    7a1b62a View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    cc58cc7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b6fcd2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c789989 View commit details
    Browse the repository at this point in the history