Aram Drevekenin
6e5c8dc852
docs(changelog): non-directional resize
2021-11-05 09:30:35 +01:00
Henil Dedania
4ac9344085
feature(resize): Non directional resize ( #520 )
...
* feature(resize): Non directional resize
* Implement special cases
* fix resizing for panes that have `+` cross section
* fix resizing for panes that have `T` cross section
* fix panics
* Add Nondirection resize keys to plugin
* fix formatting
* fix: clippy warnings
* fix the last edge case
* implemented some of the suggested changes
* Remove helper function and elevate comment to top of function
* Use `=` to keep it consistent with Normal mode mapping as its easier to use
* Remove extra reference borrowing
* fix an edge case
* add test for nondirectional resize increase/decrease
* fix(controls): add + to resize
* refactor(resize): simplify methods
* fix(resize): properly resize opposite corner pane
Co-authored-by: Aram Drevekenin <aram@poor.dev>
2021-11-05 09:29:45 +01:00
Aram Drevekenin
3e052519f9
docs(changelog): resize fix
2021-11-04 23:20:51 +01:00
Aram Drevekenin
23c9751346
fix(resize): do not ignore minimums when doing directional resizes ( #838 )
...
* fix(resize): do not ignore minimums when doing directional resizes
* style(fmt): make rustfmt happy
2021-11-04 23:19:38 +01:00
a-kenji
f62ccd2a5c
add: try_from for ConfigFromYaml -> Config ( #835 )
2021-11-03 19:58:40 +01:00
Aram Drevekenin
55c5b640ed
docs(changelog): update cwd fix
2021-11-03 18:02:06 +01:00
Aram Drevekenin
daa70022c9
fix(cwd): open pane in cwd even if default shell is explicit ( #834 )
...
* fix(cwd): open pane in cwd even if default shell is explicit
* style(fmt): make rustfmt happy
2021-11-03 17:59:28 +01:00
a-kenji
a83a8b9a96
chore(warnings): remove unused imports ( #833 )
2021-11-03 14:31:06 +01:00
Brooks Rady
b37b9e81cb
chore(docs): update changelog
2021-11-02 18:52:02 +00:00
Tw
9ea3dc0dbe
feat(ui): add right-click support to plugins
2021-11-02 18:49:10 +00:00
a-kenji
2904c04ab0
docs(changelog): colors_transform to colorsys
2021-11-02 11:47:49 +01:00
a-kenji
070de7a4d1
Fix: move colors_transform to colorsys ( #832 )
...
* `colors_transform` is deprecated and superceded by `colorsys`
ref: https://crates.io/crates/colors-transform
2021-11-02 11:46:06 +01:00
Aram Drevekenin
7e9dc406bc
docs(changelog): forkpty => openpty
2021-11-01 22:03:22 +01:00
Aram Drevekenin
a14a2f6fb0
fix(unix): forkpty => openpty ( #830 )
...
* fix(unix): forkpty => openpty
* style(fmt): make rustfmt happy
2021-11-01 22:01:59 +01:00
a-kenji
043a3cf388
docs(changelog): add rust-version to Cargo.toml
2021-11-01 17:15:48 +01:00
a-kenji
35c566f15c
add: rust-version (msrv) field to Cargo.toml ( #828 )
...
* specifies the minimum version the package can be compiled with,
may be ignored with `--ignore-rust-version` option
ref: https://doc.rust-lang.org/nightly/cargo/reference/manifest.html#the-rust-version-field
2021-11-01 17:14:28 +01:00
a-kenji
c39c27c98c
docs(changelog): fix typo bug_report template
2021-11-01 13:23:35 +01:00
Ken Matsui
5e720b02a9
fix(docs): Fix a typo and some grammatical errors in bug_report.md ( #826 )
2021-11-01 13:20:59 +01:00
a-kenji
c3e361de22
docs(changelog): Add WriteChars action
2021-11-01 08:53:53 +01:00
a-kenji
d2b81293df
add: WriteChars action ( #825 )
...
* Behaves like the `Write` action, but one can specify
strings themselves instead of their bytecodes.
Usage:
WriteChars: "cargo make test",
2021-11-01 08:52:55 +01:00
a-kenji
13f3e747e4
docs(changelog): fix unused import on darwin
2021-10-31 20:47:26 +01:00
Ken Matsui
f04a7a4ee7
fix(warning): Fix an unused import warning of std::fs on macos ( #820 )
2021-10-31 20:45:52 +01:00
a-kenji
0cfc5633d3
docs(changelog): update cargo-make for v0.35.3
2021-10-31 20:44:09 +01:00
Ken Matsui
b61489c218
fix(docs): fix wrong arguments for cargo make run given in CONTRIBUTING.md ( #819 )
2021-10-31 20:41:49 +01:00
a-kenji
954b432711
docs(changelog): fix a typo
2021-10-31 20:40:50 +01:00
Ken Matsui
f902f3ed1d
fix(typo): Correct typo from occured to occurred ( #821 )
2021-10-31 20:39:57 +01:00
Aram Drevekenin
03e62eb91c
docs(changelog): fix link
2021-10-30 10:56:50 +02:00
Aram Drevekenin
bbf88c63d3
docs(changelog): home end key fix
2021-10-29 15:29:44 +02:00
Aram Drevekenin
6d47d360e1
fix(compatibility): home and end key fix ( #815 )
...
* fix(compatibility): handle home/end keys properly from terminfo
* style(fmt): make rustfmt happy
* style(fmt): remove unused import
2021-10-29 15:28:36 +02:00
Aram Drevekenin
2ac1454ec0
docs(changelog): scroll fix
2021-10-29 12:23:49 +02:00
Aram Drevekenin
42b66644ae
fix(performance): do not hang when resizing large line wraps ( #814 )
...
* fix(performance): do not hang when resizing large line wraps
* style(fmt): make rustfmt happy
* style(clippy): make clippy happy
2021-10-29 12:22:30 +02:00
Aram Drevekenin
14df486353
docs(changelog): bracketed paste fix
2021-10-27 19:22:26 +02:00
Aram Drevekenin
21e5ffdfd8
fix(input): properly handle bracketed paste ( #810 )
...
* fix(input): properly handle bracketed paste
* style(fmt): make rustfmt happy
2021-10-27 19:20:43 +02:00
Brooks Rady
3b1dd1253a
chore(docs): update changelog
2021-10-26 18:49:01 +01:00
Brooks Rady
6bb1ec6636
fix(perf): plugins are only compiled once
2021-10-26 18:43:17 +01:00
Aram Drevekenin
70acfe74f2
docs(changelog): wide char midline fix
2021-10-26 16:46:58 +02:00
Aram Drevekenin
685b51efbb
fix(compatibility): improve handling of wide characters inserted in the middle of existing lines ( #806 )
...
* fix(compatibility): handle wide characters inserted in line middle
* fix(compatibility): more wide char handling
* style(fmt): make rustfmt happy
* style(fmt): make clippy happy
* style(fmt): make clippyt happy
* style(fmt): make rustfmt happy... again
2021-10-26 16:43:56 +02:00
Kunal Mohan
829882d556
docs(changelog): Rotate Pane locations ( #802 )
2021-10-26 09:56:37 +05:30
Kunal Mohan
164eb6a5b7
Feature: Rotate Pane locations ( #802 )
...
fix #165
2021-10-26 09:54:05 +05:30
Alex Kenji
90c68fb6a6
docs(changelog): Use hyperlinks for setup --check subcommand
2021-10-25 20:09:50 +02:00
a-kenji
a2a0299ea5
add(setup): change the links to be hyperlinks ( #768 )
...
- change the links in the setup command to be viable hyperlinks
according to:
https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
2021-10-25 20:08:30 +02:00
Aram Drevekenin
e1dab60d4f
docs(changelog): performance fix
2021-10-25 16:52:26 +02:00
Alexandre Courbot
21380c278e
fix(performance): immediately render after a period of inactivity ( #798 )
...
The current code waits for 30ms after reading new data to refresh the
screen in order to batch input together. This reduces the number of
refreshes, but also adds perceptible latency as keystrokes will only get
visual feedback after a 30 ms delay.
Improve this by immediately refreshing if more than 30ms have already
passed since the last refresh. That way punctual events like keystrokes
get immediate feedback, while heavier input still gets batched together.
2021-10-25 16:51:30 +02:00
Thomas Linford
0c96347083
fix(style): fix clippy lints in remote_runner
2021-10-23 22:28:32 +01:00
Brooks J Rady
e0d7212c2a
chore(rust): move to 2021 edition
...
Get with the times, kiddo (and all hail disjoint captures)
2021-10-22 02:21:16 +01:00
Brooks J Rady
a9fdaaa8d1
fix(ci): bring back aarch64 linux builds
2021-10-21 15:41:21 +01:00
Aram Drevekenin
3b2d8f692c
chore(version): bump development version
2021-10-20 15:00:32 +02:00
Aram Drevekenin
ba07856016
chore(release): v0.19.0 - retry for ci
2021-10-20 14:25:19 +02:00
Aram Drevekenin
a9bedc49ba
fix(tests): update snapshots
2021-10-20 12:58:39 +02:00
Aram Drevekenin
aa53a03726
chore(release): v0.19.0
2021-10-20 12:28:23 +02:00