1. 22 Mar, 2017 1 commit
  2. 06 Mar, 2017 3 commits
  3. 24 Feb, 2017 1 commit
  4. 12 Feb, 2017 1 commit
  5. 26 Jan, 2017 1 commit
  6. 19 Jan, 2017 1 commit
  7. 17 Jan, 2017 1 commit
    • Benno Schulenberg's avatar
      search: begin from where we are, to be able to find the first \B · c88d7ce5
      Benno Schulenberg authored
      A search should start at the place of the cursor, not one step beyond,
      so that the non-word boundary between the current character and the next
      will be found.  Starting one step beyond the current character, as was
      done until now, would find the non-word boundary between the next and
      the overnext character as the first one.
      c88d7ce5
  8. 11 Jan, 2017 1 commit
  9. 26 Dec, 2016 3 commits
  10. 18 Dec, 2016 1 commit
  11. 15 Dec, 2016 3 commits
  12. 13 Dec, 2016 2 commits
  13. 09 Dec, 2016 1 commit
  14. 20 Oct, 2016 1 commit
  15. 13 Sep, 2016 1 commit
  16. 29 Aug, 2016 2 commits
  17. 03 Aug, 2016 1 commit
  18. 13 Jul, 2016 2 commits
  19. 11 Jul, 2016 2 commits
  20. 04 Jul, 2016 3 commits
  21. 20 Jun, 2016 1 commit
  22. 28 May, 2016 1 commit
  23. 16 May, 2016 1 commit
    • Benno Schulenberg's avatar
      statusbar: prevent error messages from overwriting each other · 2535f51e
      Benno Schulenberg authored
      If during startup there are multiple error messages, currently only the
      last one remains and can be read.  To improve on that, introduce a short
      pause between error messages -- even if it's not enough to read them all,
      at least the user will be aware that there are multiple ones.
      
      This also causes a few error messages to beep that currently don't beep,
      such as when a file is unwritable.
      2535f51e
  24. 12 May, 2016 2 commits
  25. 03 May, 2016 1 commit
  26. 24 Apr, 2016 1 commit
  27. 10 Apr, 2016 1 commit
    • Benno Schulenberg's avatar
      utils: snip a superfluous check for NULL · dbe39901
      Benno Schulenberg authored
      Nano doesn't start doing anything with the edit window or the keyboard
      until all files have been read in or a blank buffer has been opened, so
      the case of openfile->current == NULL will never occur.
      
      Also correct the comment -- because with multibyte characters, it is
      very well possible that the screen column corresponding to current_x
      is smaller than current_x itself.
      dbe39901