harikt / php-hyperclick

PHP hyperclick package for atom text editor, open your php files on the go
MIT License
19 stars 6 forks source link

Ctrl+click #6

Open rafa-acioly opened 8 years ago

rafa-acioly commented 8 years ago

Try performing the click just select another area and does not open the file in the elementary OS.

harikt commented 8 years ago

Hi @rafa-acioly ,

Thank you for trying the package.

Can you show me some code that you tried so I could try to replicate the issue or can look if that is still not implemented.

Thank you

rafa-acioly commented 8 years ago

Hello @harikt .

I'm trying to use in a laravel class; i call the use

use App\Status;

$x = Status::find();

variable;

$x = 'hello';
.....
....
....
...
...
$x = 'hi';

and does not work in any, the coding that i'm using is;

public function create()
    {
        // Seleciona todos os clientes que pertencerem ao usuario
        $clients = Client::distinct()
                            ->select('*')
                            ->where('belongs_to_user', '=', Auth::user()->id)
                            ->get();
        $targets = ContentTarget::all();
        $status = Status::all();
        return view('dashboard.conteudo.create', [
          'clients' => $clients,
          'targets' => $targets,
          'status'  => $status
        ]);
    }

if i click in "Status" (Status::all()), they don't work.

harikt commented 8 years ago

Thank you for the code.

harikt commented 8 years ago

Just a wild guess. Can you run composer dumpautoload and try ?

rafa-acioly commented 8 years ago

run: composer dumpautoload nothing has changed atom version: 1.9.7

No error is displayed as well.

harikt commented 8 years ago

Hi @rafa-acioly ,

I tried this today in a laravel application after fixing a patch. It was working as expected.

Let me know if it is still causing any issue at your end. I haven't upgraded my atom (1.5.4) though.

ameenross commented 7 years ago

You can just change the used key combo in the hyperclick package (the dependency of this package). I changed it to alt-click

harikt commented 7 years ago

Hi @ameenross ,

Thank you for the information. Do you mean editing some config file of the atom ? If so can you add more information on how to do the same, so it may help others.

Thank you.

ameenross commented 7 years ago

No need to do that. They made it configurable.

image

harikt commented 7 years ago

Thank you @ameenross .