commit 6fd81dd7a81452246a9b276c904512604adb8094 parent 59c92deed201b0f8bbfec5d0fb76f5a83b12ed40 Author: Chris Bracken <chris@bracken.jp> Date: Mon, 13 May 2024 18:18:57 -0700 Add project-specific settings for Flutter Sets the path for find-based completion to the darwin/{ios,common,graphics} directories. Diffstat:
A | .vim/plugin/flutter.vim | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/.vim/plugin/flutter.vim b/.vim/plugin/flutter.vim @@ -0,0 +1,6 @@ +" Project-specific settings when working in the Flutter engine codebase. +if expand('%:p:h') ==# expand('~/Developer/flutter/engine/src/flutter') + set path+=shell/platform/darwin/ios/** + set path+=shell/platform/darwin/common/** + set path+=shell/platform/darwin/graphics/** +endif