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

f strings have never worked #98

Open
bgenchel opened this issue Feb 8, 2024 · 1 comment
Open

f strings have never worked #98

bgenchel opened this issue Feb 8, 2024 · 1 comment

Comments

@bgenchel
Copy link

bgenchel commented Feb 8, 2024

Hi,

currently have an M3 Macbook Pro Max on Sonoma 14.1
VIM 9.1 on iterm2

I've been using this plugin for a long, long time at this point though, across many macbooks and MacOS versions, and i've never had f-string formatting work ever. I have it installed as a separate plugin with vim plug, and have let g:python_highlight_all = 1.
I have also at other times have had exclusively vim-polyglot installed, which should also use this plugin. Why is this happening?

This is my full vimrc - here i'm using vim-polyglot which claims to use this repo under the hood:

" to `filetype on`, and unless we toggle it, our custom filetype detections
" won't be run.
filetype off

set encoding=utf-8
set nocompatible

" Setup FZF
set rtp+=~/.fzf

" Vim-Plug
call plug#begin('~/.vim/plugged')
Plug 'bling/vim-airline'
Plug 'Valloric/YouCompleteMe'
Plug 'rdnetto/YCM-Generator', {'branch': 'stable'}
Plug 'vim-scripts/a.vim'
Plug 'Yggdroot/indentLine'
Plug 'preservim/nerdtree'
Plug 'dense-analysis/ale'
Plug 'preservim/nerdcommenter'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'xolox/vim-notes'
Plug 'xolox/vim-misc'
Plug 'airblade/vim-gitgutter'
Plug 'octol/vim-cpp-enhanced-highlight'
Plug 'wincent/terminus'
Plug 'majutsushi/tagbar'
Plug 'kien/ctrlp.vim'
Plug 'ivalkeen/vim-ctrlp-tjump'
Plug 'jeffkreeftmeijer/vim-numbertoggle'
Plug 'tpope/vim-commentary'
Plug 'highwaynoise/chuck.vim'
Plug 'sheerun/vim-polyglot'
Plug 'phanviet/vim-monokai-pro'
Plug 'quramy/tsuquyomi' " this is a completion plugin for typescript
Plug 'quramy/vim-js-pretty-template'
Plug 'vim-latex/vim-latex'
" Plug 'leafgarland/typescript-vim'
" Plug 'vim-python/python-syntax'
" Plug 'munshkr/vim-tidal'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
call plug#end()

filetype indent plugin on
syntax enable
let g:python_highlight_all = 1

set background=dark
set t_Co=256  " 256 term coloring

set termguicolors
colorscheme monokai_pro

" Display.
set ruler           " show cursor position
set showcmd         " show normal mode commands as they are entered
set showmode        " show editing mode in status (-- INSERT --)
set showmatch       " flash matching delimiters

" Scrolling.
"set scrolljump=5    " scroll five lines at a time vertically
set sidescroll=10   " minumum columns to scroll horizontally
set scrolloff=8    " start scrolling 15 from bott

" Indent.
set autoindent      " carry indent over to new lines

" Other.
set noerrorbells      " no bells in terminal

set backspace=indent,eol,start  " backspace over everything

set undolevels=1000   " number of undos stored
set viminfo='50,"50   " '=marks for x files, "=registers for x files

" Return to last edit position when opening files (You want this!)
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\   exe "normal! g`\"" |
\ endif

" modelines allow you to set variables specific to a file. By default, the first 
" and last five lines are read by vim for variable settings. For example, 
" if you put the following in the last line of a C program, you would get a 
" textwidth of 60 chars when editing that file:
" /* vim: tw=60 ts=2: */
" The modelines variable sets the number of lines (at the beginning and 
" end of each file) vim checks for initializations.
set modelines=0 "modelines are bad for your health

" Prevent the cursor from changing the current column when 
" jumping to other lines within the window
set nosol

" recursively search parent directories until tag file found
set tags=tags;/
" the iskeyword option specifies which characters can appear in a word.
" '@' stands for all alphabetic letters. '48-57' stands for ASCII characters
" 48 through 57, which are the numbers 0 to 9. '192-255' are the printable
" latin characters
set iskeyword=@,45,48-57,58,_,192-255,#

" Set Line numbers on
set number
"Set line numbers relative to current line
set relativenumber

" Move to next displayed line instead of actual line
nnoremap j gj
nnoremap k gk

" Sets how many lines of history VIM has to remember
set history=700

" Enable filetype plugins
" enable filetype detection
filetype on
" enable loading the plugin files for specific file types
filetype plugin on
" enable loading the indent file for specific file types
filetype indent on

" When a file has been detected to have been changed outside of Vim and 
" it has not been changed inside of Vim, automatically read it again.
set autoread
" Automatically checktime when cursor has not moved in a while
au CursorHold * checktime 

" Turn off swap files
set noswapfile
set nobackup
set nowb

" Keep undo history across sessions, by storing in file.
" set undofile

" With a map leader it's possible to do extra key combinations
" like <leader>w saves the current file
let mapleader = ","
" global mapleader
let g:mapleader = ","

" cf opens editable command history
map <C-f> q:i

" highlight current line curosr is on
set cursorline

" ignore case when searching
set ignorecase

" When searching try to be smart about cases 
set smartcase

" Highlight search results
set hlsearch

" Makes search act like search in modern browsers
set incsearch 

" Map <C-L> (redraw screen) to also turn off search highlighting until the
" next search
nnoremap <C-L> :nohl<CR><C-L>

" let copy and paste work with yy, D, P, etc
set clipboard=unnamed
"
nnoremap :b :Bclose<Cr>

""""""""""""""""""""""""""""""
" splits
""""""""""""""""""""""""""""""
map <leader>v :vsp<CR>
map <leader>h :sp<CR>

""""""""""""""""""""""""""""""
" => Status line
""""""""""""""""""""""""""""""
" Always show the status line
set laststatus=2

" Line text past 80 char
set textwidth=120
"set colorcolumn=+1 " relative (to textwidth) columns to highlight "

set colorcolumn=120 " absolute columns to highlight "

" Tabs Settings
set shiftwidth=4    " two spaces per indent
set tabstop=4       " number of spaces per tab in display
set softtabstop=4   " number of spaces per tab when inserting
set expandtab       " substitute spaces for tabs

" In many terminal emulators the mouse works just fine, thus enable it.
" Use mouse normally in all ('a') cases.
if has('mouse')
  set mouse=a
endif

" Don't redraw while executing macros (good performance config)
set lazyredraw 
set ttyfast

" Don't get rid of buffers when changing files, used with minibufexpl.
" With :set hidden, opening a new file when the current buffer has unsaved 
" changes causes files to be hidden instead of closed. The unsaved changes 
" can still be accessed by typing :ls and then :b[N], where [N] is the 
" number of a buffer 
set hidden

" Prompt before closing a buffer if unsaved work
set confirm

" Autocompletion for buffer using tab
set wildmenu
set wildmode=longest:full,full
"set wildignorecase

" Buffer settings, use gb to jump to buffer list
noremap gb :ls<CR>:b<Space>

" buffer settings, next previous delete
map gn :bn<cr>
map gp :bp<cr>
map gd :bd<cr> 

" ******************** PLUGINS ********************

" ========== YouCompleteMe ==========
let g:ycm_global_ycm_extra_conf = '~/.vim/plugged/.ycm_extra_conf.py'
let g:ycm_clangd_binary_path = trim(system('brew --prefix llvm')).'/bin/clangd'
let g:ycm_python_binary_path = 'python'
" let g:loaded_youcompleteme = 1
" ===================================

" ========== NERD Tree ==========
nmap <silent> <F3> :NERDTreeTabsToggle<CR>
" map <C-n> :NERDTreeTabsToggle<CR>
" noremap <leader>n :NERDTreeToggle<CR>
map tt :NERDTreeToggle<CR>
noremap tt :NERDTreeToggle<CR>
let NERDTreeShowHidden=1
" ===============================

" ========== Indent Line ==========
let g:indentLine_color_term = 239
let g:indentLine_char = '┆'
" =================================

" command-t settings for FB
let g:CommandTMaxHeight = 30
let g:CommandTMaxFiles = 500000
let g:CommandTInputDebounce = 200
let g:CommandTFileScanner = 'watchman'
let g:CommandTMaxCachedDirectories = 10
let g:CommandTSmartCase = 1

" ========== VIM - Airline ==========
" Enable the list of buffers
let g:airline#extensions#tabline#enabled = 1

" Show just the filename
let g:airline#extensions#tabline#fnamemod = ':t'

" Show buffer numbers in airline
let g:airline#extensions#tabline#buffer_nr_show = 1

" Powerline fonts on
let g:airline_powerline_fonts = 1

" Airline theme
let g:airline_theme='dark'
" disable fileencoding, fileformat
let g:airline_section_y=''
" disable syntastic, whitespace
let g:airline_section_warning=''
" disable bufferline/filename
let g:airline_section_c=''
" ==================================

" ========== Jedi-Vim ==========
let g:jedi#use_splits_not_buffers="left"
let g:jedi#popup_select_first=0
" let jedi#force_py_version=3.9
" ==============================

" vim - notes directory
" ========== VIM Notes ==========
let g:notes_directories = ['~/notes']
let g:notes_conceal_url = 0
let g:notes_conceal_bold = 0
let g:notes_conceal_italic = 0
let g:notes_smart_quotes = 0
let g:notes_unicode_enabled = 0
let g:notes_conceal_code = 0
" ===============================

" ========== Terminus ==========
" disable insert cursor change 
let g:TerminusCursorShape = 0
" ==============================

" ========= Tag Bar ===========
nmap <leader>g :TagbarToggle<CR>
let g:tagbar_left = 1
let g:tagbar_width = 50
let g:tagbar_foldlevel = 1
" =============================

" ========== FZF ===========
"let $FZF_DEFAULT_COMMAND= "ag -g ''"
nmap <leader>t :FZF<CR>
nmap <leader>a :Tags<CR>
nmap <leader>w :w<CR>
" ==========================

" ========== Ctrl-P ==========
nmap <leader>b :CtrlPBuffer<CR>
" this is the command to open the search buffer 
nmap <leader>r :CtrlPMRU<CR>
nmap cpr :CtrlPClearCache<CR>
let g:ctrlp_max_files = 300000
let g:ctrlp_match_window = 'bottom,order:ttb,min:1,max:25,results:25'
let g:ctrlp_cmd='CtrlP :pwd'
let g:ctrlp_lazy_update = 210

" Use The Silver Searcher https://github.com/ggreer/the_silver_searcher
if executable('ag')
  " Use Ag over Grep
  set grepprg=ag\ --nogroup\ --nocolor

  " Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
  let g:ctrlp_user_command = 'ag -l --nocolor -g "" %s'

  " ag is fast enough that CtrlP doesn't need to cache
  let g:ctrlp_use_caching = 0
endif
" ===========================

" ========== Vim Commentary ==========
nmap cm gcc<CR>
map mm gc <CR>
nmap mm gc<CR>
nnoremap mm gc<CR>
nmap cp gcap<CR>
" ====================================
" **************************************************

" Configuration for ~/.vimrc:
" Bind <leader>y to forward last-yanked text to Clipper
nnoremap <leader>y :call system('nc localhost 8377', @0)<CR>

" Returns true if paste mode is enabled
function! HasPaste()
  if &paste
    return 'PASTE MODE  '
  en
  return ''
endfunction

augroup reload_vimrc
  autocmd!
  autocmd BufWritePost $MYVIMRC source $MYVIMRC
augroup END

" NerdCommenter alternate syntax for .test files - currently not working!
let g:NERDCustomDelimiters = {
    \ 'test': { 'left': '#', 'leftAlt': '#'},
\ }
let NERD_test_alt_style=1

" Require tpope/vim-repeat to enable dot repeat support
" Jump to anywhere with only `s{char}{target}`
" `s<CR>` repeat last find motion.
nmap s <Plug>(easymotion-s2)
let g:EasyMotion_smartcase = 1

" Ctrlp fuzzy find for tags - overrides default tag jump
nnoremap <c-]> :CtrlPtjump<cr>
vnoremap <c-]> :CtrlPtjumpVisual<cr>
" if only one result, jump silently and immediately
let g:ctrlp_tjump_only_silent = 1
" don't show tag name in results as it wastes space
let g:ctrlp_tjump_skip_tag_name = 1

" LaTEX Stuff " 
let g:Tex_MultipleCompileFormats='pdf,bib,bibtex,pdf'

I also switched my vimrc to a super minimal one using this repo directly and it still didn't work:

set encoding=utf-8
set nocompatible

" Vim-Plug
call plug#begin('~/.vim/plugged')
Plug 'vim-python/python-syntax'
call plug#end()

filetype indent plugin on
syntax enable
let g:python_highlight_all = 1

and it still doesn't work.

@adigitoleo
Copy link

Related: #95

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants