Skip to content

Instantly share code, notes, and snippets.

@rajivmehtaflex
Last active August 3, 2024 12:37
Show Gist options
  • Save rajivmehtaflex/e49ab664e77898ac44ae1c51168d729c to your computer and use it in GitHub Desktop.
Save rajivmehtaflex/e49ab664e77898ac44ae1c51168d729c to your computer and use it in GitHub Desktop.
IPython-VSCode-Base-Suggestion
In Visual Studio Code, the keyboard shortcuts to move to the previous (and next) cursor location are:
For Windows and Linux:
Go to previous location: Ctrl + Alt + - (minus)
Go to next location: Ctrl + Shift + - (minus)
For macOS:
Go to previous location: Ctrl + - (minus)
Go to next location: Ctrl + Shift + - (minus)
#%%
i='Gajraj'
print(i)
# Alternate Options
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
print('Gajaraj')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment