Mercurial > ec-dotfiles
view bin/basicopt @ 734:02d746e77fab
[vimrc] Remove forcing 256 colors for screen term
It was for tmux but it now sets tmux-256color by default.
author | nanaya <me@nanaya.net> |
---|---|
date | Thu, 09 Jan 2025 00:50:00 +0900 |
parents | 7f5234a312f7 |
children |
line wrap: on
line source
#!/bin/sh get_filename() { printf '%s\n' "$*" | sed -e 's/^\(.*\)\.[^.]*$/\1/' } get_extension() { if [ -n "$(printf '%s\n' "$*" | sed -e 's/^[^.]*//')" ]; then printf '%s\n' "$*" | sed -e 's/^.*\(\.[^.]*$\)/\1/' else printf '%s\n' "" fi }