How can I use visual studio code features on android studio while coding in flutter? - flutter

I want to use some features that I can use with VS Code on Android Studio as well. Are these possible?
1- I want it to recognize the word written without distinguishing upper or lower case letters. For example, like the string example in the image below. Even if the letter s is written in lower case, vs code detects it, but android studio does not.
2- Refactor features are a lot through visual studio and it works. But I could not see these features in android studio. You can see it in the picture below.
3- Android studio warns on words other than English. How can we remove this problem.

Yes you can I am currently codding in flutter and also kotlin I installed tabnine plugin, tabnine is really usefull and save your time for example as u said when u type string, it automaticly show words that are related to that sitution and place where u code.
and for third problem u can ignore those words

Related

How do I restore the Visual Studio Code editor to accept Flutter again?

I’m using https://flutter.dev/learn to learn Flutter and Visual Studio Code (VS Code) editor. After successfully completing the exercise, “Your first Flutter app” (https://codelabs.developers.google.com/codelabs/flutter-codelab-first#0), I had started experimenting with the code to better understand both Flutter and VS Code in which I somehow made VS Code to no longer recognize Flutter.
Is there a way to restore VS Code to recognize Flutter once again? See screenshots for context, which is just some basic Flutter code to show what errors I'm getting.
VS Code full window screenshot
Flutter Code with red underlines indicating errors
Flutter error messages in VS Code
I tried,
the little yellow lightbulb icons that allows to create various classes, such as "StatelessWidget."
uninstalling and reinstalling the VS Code editor and the extensions Dart and Flutter.
deleting the folders with my "student" apps.
I expected clicking on the help yellow lightbulb icons would resolve my issue, and when that didn't happen, I tried reinstalling VS Code hoping that would allow me to start over again like the first time around where VS Code had no problem recognizing Flutter. Except after the reinstallation, it was like VS Code was stuck in the state before I uninstalled it and not revert to its original state when I first installed VS Code. To say the least I'm a bit flustered with Flutter and more than vexed with VS Code.

How to show line numbers of a python notebook in Visual Studio Code

I think it should be quite straightforward, however, I cannot seem to find this option in visual studio code.
Could you tell me if it is possible and how to enable line numbers in visual studio code when coding in a python notebook?
FYI: it is possible to use visual studio code with a python notebook (you can check more info here)
You have to press L after clicking on the left side of the code block.
as mention in the link provided you just need to press the L key
https://code.visualstudio.com/docs/python/jupyter-support#_enabledisable-line-numbers

Visual Studio Code Bracket Matching

I'm using Visual Studio Code for web development. It's very useful tool but when i select a tag, element etc. Visual Studio Code show all the same tag, element or etc. I only know where tag is closed. How can i do that?
Unfortunately, this is not supported yet, as you can see in this open issue.
Go there and add a :thumbs_up:, so they could priorize in the next releases, or someone else would create an extension for that.

How to assimilate into visual studio code from visual studio ( the difference of hotkeys )?

I have been using VS for years. I'm trying to use vscode to develop frontend project.
This is my first time touching visual studio code. I feel the hotkeys are so different when compared with visual studio 2015. For example, format code in VS is ctrl+k+f and format code in visual studio 2015 is shift+alf+f. If I even want to perform a simple copy/paste folder operation I also cannot.
As I know, visual studio code supports customized hotkeys. So, I think that someone may have already config the hotkeys in a form like visual studio 2015.
However, I'm not sure this is even possible.
Please give me some suggestion or direction.
There are a few ways to solve this:
manually recreating all the keys you love from Visual Studio in your keybindings.json
Hoping somebody else has made one that you can copy and paste into your keybindings.json -- I can't find any
Find one in the marketplace. There are a few keybinding extensions, but I don't see any for Visual Studio, though there is a Resharper one if you're used to that.
If you do end up doing number 1, you could benefit the community by bundling it as an extension to share on the marketplace.
Edit: typo. exceptions -> extensions

Moving from Eclipse to Android Studio

I just moved form the Android Eclipse plugin to Android studio for my new app, and I feel like Android Studio is missing a few Eclipse features that I frequently used, or at least I can't find them.
So where is the auto-import feature (ctrl-shift-o) and the code format feature (ctrl-shift-f) in Android Studio? I use these features a lot and I feel lost in Android Studio.
It took me very little time to get used to Android Studio. A few more crashes than I am used to, but everything is so much more geared towards development for Android.
Auto-import: File -> Settings (or Ctrl+Alt+S) -> Editor -> Auto Import and select the options you need. (I have Insert Imports on Paste = All; Optimize imports on the fly = Yes; Add unambigious imports on the fly = Yes).
To format code, it's CTRL + ALT + L (it's different on a Mac, but you can look for this in the Keymap section of the settings).