mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Port widecharwidth
This commit is contained in:
parent
8bbf663dee
commit
1426d1bcb0
4 changed files with 1665 additions and 0 deletions
|
@ -53,6 +53,7 @@ mod wchar_ext;
|
|||
mod wchar_ffi;
|
||||
mod wcstringutil;
|
||||
mod wgetopt;
|
||||
mod widecharwidth;
|
||||
mod wildcard;
|
||||
mod wutil;
|
||||
|
||||
|
|
4
fish-rust/src/widecharwidth/LICENSE
Normal file
4
fish-rust/src/widecharwidth/LICENSE
Normal file
|
@ -0,0 +1,4 @@
|
|||
widecharwidth - wcwidth implementation
|
||||
Written in 2018 by ridiculous_fish
|
||||
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
|
||||
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
6
fish-rust/src/widecharwidth/mod.rs
Normal file
6
fish-rust/src/widecharwidth/mod.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
#![allow(warnings, clippy::all)]
|
||||
|
||||
#[rustfmt::skip]
|
||||
mod widechar_width;
|
||||
|
||||
pub use widechar_width::*;
|
1654
fish-rust/src/widecharwidth/widechar_width.rs
Normal file
1654
fish-rust/src/widecharwidth/widechar_width.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue