skip to Main Content

I am trying to use robotframework with vscode and installed robotframework language server , i am not able to jump to function definition .

expected response :- should jump to function definition when i click the cntrl+left mouse click .
response got : – No response

in my .vscode i only have launch.json .
Any dependency i am missing?
dependencies installed :- python3 , robotframework , pip , sshlibrary , requestslibrary

2

Answers


  1. It should be Alt + left mouse click. In addition, the shortcut key should be F12.

    enter image description here

    https://code.visualstudio.com/docs/python/editing#_navigation

    https://code.visualstudio.com/docs/editor/codebasics

    Login or Signup to reply.
  2. Try to install these extensions:

    Robot Framework Language Server

    Robocorp Code

    Robotframework debugger

    Then, reload the VScode window and try again.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search