Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>vscode-search-filesNew to Visual Studio Code? Get it now.
vscode-search-files

vscode-search-files

ykhirao

|
273 installs
| (1) | Free
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

vscode-search-files

Use VSCode's quickOpen to access files immediately.

  • Source Code on GitHub
  • Visual Studio | Marketplace

Common Usage

usage in Mac

  • Select the area you wish to search
  • CMD + SHIFT + P || CMD + P (Open QuickOpen) and Input > Search Ruby Module,
  • Input Search Ruby Module
  • Press Enter key

ezgif-1-398dfba47d

Ruby Usage

API::V1::Users.new

API::V1::Users.new.get_all

Click Users vs using this extension

ezgif-4-8d21eda43c

Search modules

ezgif-4-8d6993d0c7

SAMPLE Code

@see Samples/Ruby

Search Ruby Module

# samples/ruby/API/V1/Users.rb
module API
  module V1
    class Users
      def get_all
        # ...
      end
    end
  end
end

# samples/ruby/API/V2/Users.rb
module API
  module V2
    class Users
      def get_all
        # ...
      end
    end
  end
end

# samples/ruby/API/V1/Customers.rb
module API
  module V1
    class Customers
      def get_all
        # ...
      end
    end
  end
end

# samples/ruby/API/V2/Customers.rb
module API
  module V2
    class Customers
      def get_all
        # ...
      end
    end
  end
end

API::V1::Users.new.get_all
API::V2::Users.new.get_all
API::V1::Customers.new.get_all
API::V2::Customers.new.get_all

Common Usage

Change case and search

ezgif-4-e5bdb8af22

singularForm

Split words and make all words singular

UsersDetails → UserDetail

pluralForm

Split words and make all words plural

UserDetail → UsersDetails

commonPluralSingular

Searches for common word parts in singular and plural forms. It is used when it is not clear whether the file name was created in the singular or plural form.

AgencyDetail → AgencDetail AgenciesDetails → AgencDetail UsersDetails → UserDetail UserDetail → UserDetail

and each case

The following cases are supported.

  • camelCase
  • capitalCase
  • constantCase
  • dotCase
  • headerCase
  • noCase
  • paramCase
  • pascalCase
  • pathCase
  • sentenceCase
  • snakeCase

Count

SearchFiles: Get Word Count

A count of the number of characters in multibyte characters (Japanese like "日本語", pictographs🇯🇵, etc.). Since JavaScript's standard length cannot count them, they are measured by Intl.Segmenter. This is a completely extra function.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft