PiRSquared17 / editra

Automatically exported from code.google.com/p/editra
Other
0 stars 0 forks source link

Add Arguments to function #767

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have two idea to add in Edtira - CodeBrowser:

- replace line number any definition function or class some arguments her.
- add simple search symbols in open file/files (if any checked)

Original issue reported on code.google.com by sylwek3100 on 5 Oct 2012 at 8:23

GoogleCodeExporter commented 9 years ago
Not sure how useful the first one would be as you would still need to go the 
function in the file and update the code to use the new arguments.

By search symbols in the second one do you mean search for references of where 
the object/function is used?

Original comment by CodyPrec...@gmail.com on 6 Oct 2012 at 6:30

GoogleCodeExporter commented 9 years ago
But can optionally add something formula for example:

class Data(Object):

  def __init__(self, name, surname, age):
     ble ble ble
  def setname(self,name):
     ble ble ble
pass

In CodeBrowser

Class Definition
 Data(Object)[1]
  __init__( name, surname, age)[3]
  setname(name)

Reply for you question: Yes

Original comment by sylwek3100 on 6 Oct 2012 at 6:45